/* ==========================================
   HERO
========================================== */

.container {
    min-height: 100svh;
    padding: 0 1.25rem;
    background: url('drone02.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.689);
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 90rem;
    padding: 1.5rem;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.5s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 3.5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ff1493;
}

.content h4 {
    /* max-width: 44rem; */
    margin: 0 auto;
    font-size: clamp(0.85rem, 1.3vw, 1.05rem);
    font-weight: 400;
    line-height: 1.7;
}

p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.highlight {
    color: #ff1493;
}

.navbar {
    position: absolute;
    top: 1.5rem;
    padding: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    z-index: 100;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    list-style: none;
    margin: 0;
    padding: .9rem 2rem;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.2);
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    transition: .3s;
}

.menu a:hover {
    color: #f8d8e6;
}

/* ==========================================
   COUNTDOWN
========================================== */

.countdown {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.time-box {
    width: 6rem;
    min-width: 6rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 20, 147, .15);
    border: 1px solid rgba(255, 20, 147, .4);
    backdrop-filter: blur(8px);
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.time-box small {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px) {

    .container {
        padding-top: 6rem;
    }

    .navbar {
        padding: 1.5rem 2rem;
    }

    .menu {
        gap: 1.5rem;
    }

    .content h1 {
        font-size: 2.6rem;
        margin-top:4rem;
    }

    .content h4 {
        font-size: 1.1rem;
        margin-top: 3rem;
    }

    .story-content p{
        font-size: 0.9rem;
    }
}

/* ==========================================
   CELULAR
========================================== */

@media (max-width: 768px) {


      .btn-gift {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .container {
        padding: 7rem 1rem 2rem;
    }

    .navbar {
        top: 1rem;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 2rem);
        display: flex;
        justify-content: center;
    }

    .menu {
        width: 100%;
        max-width: 380px;

        justify-content: center;
        align-items: center;
        flex-wrap: wrap;

        gap: .8rem;

        padding: .9rem 1rem;

        background: rgba(0, 0, 0, .45);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 16px;
    }

    .menu li {
        flex: 1 1 auto;
        text-align: center;
    }

    .menu a {
        display: block;
        font-size: .85rem;
        padding: .45rem;
    }
}

/* ==========================================
   CELULARES PEQUENOS
========================================== */

@media (max-width: 480px) {

    .gift-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
        padding: 0 .75rem;
    }

     .btn-gift {
        width: 100%;
        padding: .7rem;
        font-size: .8rem;
        border-radius: 6px;
    }

    .gift-card img {
        aspect-ratio: 1 / 1;
    }

    .gift-card-content {
        padding: .75rem;
    }

    .gift-card h3 {
        font-size: .85rem;
        line-height: 1.3;
        margin-bottom: .4rem;
    }

    .gift-card span {
        font-size: .75rem;
    }

    .gifted::before {
        font-size: .65rem;
        padding: .3rem .6rem;
    }

    .container {
        padding: 7rem 1rem 2rem;
    }

    .menu {
        flex-direction: column;
        gap: .75rem;
    }

    .menu a {
        font-size: .9rem;
    }

    .content h1 {
        font-size: 1.7rem;
    }

    .content h4 {
        font-size: .95rem;
        line-height: 1.6;
    }

    .countdown {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .8rem;
        max-width: 14rem;
        margin: 2rem auto 0;
    }

    .time-box {
        width: 100%;
        min-width: auto;
        padding: .9rem;
    }

    .time-box span {
        font-size: 1.35rem;
    }

    .time-box small {
        font-size: .65rem;
    }
}