body {
    background: linear-gradient(120deg, #f5fbff 0%, #e4f5fa 100%);
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* Fondo animado */
.abc-bg-anim {
    position: fixed;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
}

.abc-bg-anim .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.17;
    filter: blur(0.5px);
    animation: moveY 18s ease-in-out infinite alternate;
}

.abc-bg-anim .circle.orange {
    background: #ffe55c;
    /* Amarillo */
    width: 310px;
    height: 310px;
    left: -90px;
    top: 60vh;
    animation-delay: 0s;
}

.abc-bg-anim .circle.green {
    background: #39c0f1;
    /* Azul celeste */
    width: 210px;
    height: 210px;
    left: 80vw;
    top: 24vh;
    animation-delay: 5s;
}

.abc-bg-anim .circle.yellow {
    background: #27374a;
    /* Azul oscuro */
    width: 160px;
    height: 160px;
    left: 30vw;
    top: 84vh;
    animation-delay: 2.5s;
}

@keyframes moveY {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(-60px) scale(1.08);
    }
}

.abc-bg-anim .truck {
    position: absolute;
    width: 145px;
    left: 60vw;
    top: 80vh;
    opacity: 0.10;
    filter: blur(0.5px);
    animation: truckmove 24s linear infinite alternate;
}

@keyframes truckmove {
    0% {
        left: 60vw;
        top: 80vh;
    }

    100% {
        left: 10vw;
        top: 75vh;
    }
}

/* Main container */
.container {
    max-width: 640px;
    margin: 32px auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(39, 55, 74, 0.13);
    padding: 34px 22px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

h1 {
    color: #27374a;
    /* Azul oscuro */
    margin-bottom: 22px;
    font-size: 2rem;
}

form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

input[type="text"] {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #39c0f1;
    border-radius: 9px;
    font-size: 1.1rem;
    outline: none;
    transition: border 0.2s;
}

input[type="text"]:focus {
    border-color: #ffe55c;
}

button {
    background: linear-gradient(90deg, #39c0f1 60%, #ffe55c 100%);
    color: #27374a;
    border: none;
    padding: 0 26px;
    border-radius: 9px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(39, 192, 241, 0.11);
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

button:hover {
    background: linear-gradient(90deg, #ffe55c 80%, #39c0f1 100%);
    color: #27374a;
}

.card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(39, 55, 74, 0.09);
    margin-bottom: 22px;
    padding: 20px 16px 16px 14px;
    text-align: left;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    border-left: 8px solid #39c0f1;
    position: relative;
    transition: box-shadow 0.17s;
}

.card:hover {
    box-shadow: 0 8px 32px rgba(39, 55, 74, 0.13);
}

.card-content {
    flex: 1;
    font-size: 1.04em;
}

.card-content h2 {
    color: #27374a;
    margin: 0 0 7px 0;
    font-size: 1.15rem;
    font-weight: 700;
}

.arrival {
    color: #39c0f1;
    font-weight: bold;
}

.img-list {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 8px;
    align-items: flex-start;
}

.img-list img {
    width: 94px;
    height: 94px;
    border-radius: 12px;
    object-fit: cover;
    background: #f6fbfe;
    border: 1.7px solid #e4f5fa;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.img-list img:hover {
    transform: scale(1.09);
    box-shadow: 0 8px 18px rgba(39, 55, 74, 0.14);
}

.card-actions {
    margin-top: 8px;
    display: flex;
    gap: 16px;
}

.action-btn {
    border: none;
    background: #e4f5fa;
    color: #27374a;
    border-radius: 6px;
    padding: 5px 13px;
    font-size: 1.07em;
    cursor: pointer;
    transition: background 0.15s, color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.action-btn:hover {
    background: #39c0f1;
    color: #fff;
}

@media (max-width: 700px) {
    .container {
        max-width: 98vw;
        padding: 10px 4px;
    }

    .card {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .img-list img {
        width: 90vw;
        height: auto;
        max-width: 220px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(39, 55, 74, 0.84);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 540px;
    width: 90vw;
    border-radius: 20px;
}

.close {
    color: #fff;
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 46px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1100;
    transition: color 0.2s;
}

.close:hover,
.close:focus {
    color: #ffe55c;
}