@import url('style.css');

/* ---------------------- LANDING PAGE ---------------------- */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.btn-contact {
    text-decoration: none;
}

.landing-hero {
    height: 75vh;
    background: url("../img/desbloqueio.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    padding: 20px 20px;

}

.landing-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 31, 31, 0.82);
    z-index: 0;
}

.landing-hero h1 {
    position: relative;
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    z-index: 1;
}

.landing-hero p {
    font-family: "Sora", sans-serif;
    position: relative;
    max-width: 750px;
    font-size: 1.2rem;
    color: #e1e1e1;
    margin-top: 20px;
    line-height: 1.7;
    z-index: 1;
}

.btn-landing {
    font-family: "Sora", sans-serif;
    display: inline-block;
    background-color: #4a5f57;
    color: #f0f0f0;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
    overflow: hidden;
}

/* Brilho suave passando pelo botão */
.btn-landing::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

/* Efeito de brilho em movimento */
.btn-landing:hover::before {
    left: 125%;
}

/* Leve aumento e sombra ao passar o mouse */
.btn-landing:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(74, 95, 87, 0.4);
    background-color: #566d64;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(74, 95, 87, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 20px rgba(74, 95, 87, 0.25);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(74, 95, 87, 0.4);
    }
}

.btn-landing {
    animation: pulse 3s infinite ease-in-out;
}

/* SEÇÃO EXPLICATIVA */
.info-section {
    font-family: "Sora", sans-serif;
    background-color: #fff;
    padding: 100px 40px;
    text-align: center;
}

.info-section h2 {
    color: #162b2b;
    font-size: 2rem;
    margin-bottom: 20px;
}

.info-section p {
    max-width: 850px;
    margin: 0 auto 30px auto;
    color: #405858;
    font-size: 1.1rem;
    line-height: 1.7;
}

.info-section strong {
    color: #0f1f1f;
    font-weight: 600;
}

@media (max-width: 1024px) {
    nav {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #0f1f1f;
        width: 100%;
        padding-bottom: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
    }

    nav.ativo {
        display: flex;
    }

    .btn-contact {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    header {
        position: relative;
        z-index: 1000;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}


/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .landing-hero h1 {
        font-size: 2rem;
    }

    .landing-hero p {
        font-size: 1rem;
    }

    .info-section {
        padding: 60px 15px;
    }

    .info-section h2 {
        font-size: 1.6rem;
    }

    .info-section p {
        font-size: 1rem;
    }
}

.footer {
    background-color: #e8e8e8;
    color: #0f1f1f;
    padding: 50px 0;
    /* padding lateral será controlado pelo container */
    font-family: 'Sora', sans-serif;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);

    /* força ocupar toda a largura e remover offsets herdados */
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    left: 0;
}

.footer-container {
    max-width: 1100px;
    /* largura máxima do conteúdo do footer */
    margin: 0 auto;
    /* centraliza horizontalmente */
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}

.footer h1 {
    font-size: 1.6rem;
    margin: 0 0 18px 0;
    font-weight: 600;
    color: #0f1f1f;
}

.footer-left h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f1f1f;
    margin: 0 0 6px 0;
}

.footer-left h3 {
    font-size: 0.95rem;
    font-weight: 400;
    color: #333333;
    margin: 2px 0;
}

.footer-right {
    font-size: 0.85rem;
    color: #444444;
    margin-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 15px;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer {
        padding: 40px 15px;
    }

    .footer h1 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .footer-left h2 {
        font-size: 1.1rem;
    }

    .footer-left h3 {
        font-size: 0.9rem;
    }
}

.more-info {
    background-color: #0f1f1f;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

.more-info h2 {
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.more-info p {
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 750px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Reutiliza o botão principal da landing */
.more-info .btn-landing {
    background-color: #000000;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s;
}

.more-info .btn-landing:hover {
    transform: scale(1.1);
    background-color: #52645c;
}

/* Responsivo */
@media (max-width: 768px) {
    .more-info {
        padding: 60px 20px;
    }

    .more-info h2 {
        font-size: 1.6rem;
    }

    .more-info p {
        font-size: 1rem;
    }
}