:root {
    --verde: #3DBD8A;
    --verde-escuro: #2A9E6F;
    --branco: #FFFFFF;
    --cinza-texto: #555555;
    --cinza-claro: #F5F5F5;
    --preto: #1A1A1A;
    --fonte: 'Segoe UI', sans-serif;
    --degrade: linear-gradient(270deg, #80C783 0%, #00995C 100%);
    --titulos: #096;
    --titulos2: #00995C;
    --paragrafos: #6E6F6F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte);
    color: var(--preto);
    background-color: #F2FFF3;
    overflow-x: hidden;
}

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}   

/* ===== HEADER ===== */

.header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 140px;
    transition: height 0.3s ease;
}

.header.scrolled {
    background: var(--degrade);
    backdrop-filter: blur(12px);
    position: fixed;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header.scrolled .container {
    height: 100px;
}

.header.scrolled .logoassist img {
    width: 110px;
    height: auto;
}

.logoassist img {
    width: 164.725px;
    height: 78.463px;
    flex-shrink: 0;
    transition: width 0.3s ease;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 60px;
}

.menu ul li a {
    color: var(--branco);
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.menu ul li a:hover { color: var(--verde); }

.btn-agendar {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--branco);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    padding: 13px 22px;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-agendar:hover { background-color: rgba(255,255,255,0.25); }

/* Menu toggle — oculto no desktop */
.menu-toggle { display: none; }
.menu-close  { display: none; }
.menu-logo   { display: none; }

/* HERO */

.hero {
    position: relative;
    background-image: url('../assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 70px 0;
    color: var(--branco);
    overflow: visible;
    border-bottom-left-radius: 55px;
    border-bottom-right-radius: 55px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 553px;
    flex-shrink: 0;
}

.hero-text-content h1 {
    font-family: "Urbanist", sans-serif;
    font-style: normal;
    font-size: 62px;
    font-weight: 900;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 20px;
    letter-spacing: -0.967px;
    align-items: center;
}

.hero-descrip p {
    font-family: "Urbanist", sans-serif;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.botoes {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.btn-voltar a {
    display: inline-flex;
    align-items: center;
    background-color: var(--branco);
    color: var(--verde-escuro);
    padding: 16px 32px;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 4px 0 rgba(0, 0, 0, 0.10);
    transition: transform 0.2s, background-color 0.2s;
    gap: 2px;
}

.btn-voltar a:hover {
    background-color: var(--cinza-claro);
    transform: translateY(-1px);
}

.btn-fale-conosco a {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 0.5px solid rgba(255, 255, 255, 0.153);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 6px 4px 0 rgba(0, 0, 0, 0.10);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
    gap: 2px;

}

.btn-fale-conosco a:hover {
    background-color: #00995c5a;
    transform: translateY(-1px);
}

/* RESPONSIVO */

/* ===== 1024px ===== */
@media (max-width: 1024px) {
    .hero-text-content h1 { font-size: 48px; }
    .hero-descrip p { font-size: 20px; }
}

/* ===== 768px — MOBILE ===== */
@media (max-width: 768px) {

    /* --- HEADER --- */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 4px;
    }

    .menu-toggle span {
        display: block;
        width: 26px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .header { padding: 0; width: 100%; }

    .header .container {
        height: auto;
        border-left: none;
        border-right: none;
        border-top: none;
        border-bottom: 1px solid rgba(73, 73, 73, 0.25);
        box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10);
        border-radius: 0;
        padding: 30px 40px;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header.scrolled .container {
        height: auto;
        padding: 10px 20px;
    }

    .header .logoassist img {
        width: 125px;
        height: 58.129px;
        margin-left: 10px;
    }

    .header.scrolled .logoassist img {
        width: 100px;
        height: auto;
    }

    /* --- MENU MOBILE --- */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 178px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #80c783c5;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 150;
    }

    .menu-overlay.open { display: block; }

    .menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-radius: 14px !important;
        max-width: 100%;
        padding: 0 0 32px 0;
        z-index: 200;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.359);
    }

    .menu.open { display: block; }

    .menu-logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px 40px;
        background: linear-gradient(270deg, #80C783 0%, #00995C 100%);
        box-sizing: border-box;
    }

    .menu-logo img {
        width: 118px;
        height: 58.129px;
        margin-left: 10px;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 4px;
        position: static !important;
        margin-right: 30px;
    }

    .menu-close {
        display: flex;
        position: absolute;
        top: 30px;
        right: 70px;
        background: transparent;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        font-weight: bold;
        cursor: pointer;
        z-index: 1;
    }

    .menu ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 0;
        margin: 0 40px;
    }

    .menu ul li {
        width: 100%;
        border-bottom: 1px solid #E5E7EB;
        padding: 16px 0;
    }

    .menu ul li:last-child { border-bottom: none; padding-bottom: 0; }

    .menu ul li a {
        color: #6E6F6F;
        font-size: 16px;
        font-weight: 500;
    }

    .menu ul li button.btn-agendar {
        background: linear-gradient(270deg, #80C783 0%, #00995C 100%);
        color: #fff;
        border: none;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        backdrop-filter: none;
        box-shadow: none;
    }

    /* --- HERO / PÁGINA EM CONSTRUÇÃO --- */
    .hero {
        min-height: 100vh;
        padding: 130px 24px 60px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        display: flex;
        align-items: center;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .hero-text-content h1 {
        font-family: "Urbanist", sans-serif;
        font-size: 48px;
        font-weight: 900;
        line-height: 1.15;
        letter-spacing: -0.5px;
        margin-bottom: 30px;
        margin-top: 28px;
    }

    .hero-descrip p {
        text-align: left;
        font-size: 20px;
        font-weight: 300;
        line-height: 31.437px;
        margin-top: 18px;
        margin-bottom: 32px;
    }

    .hero-descrip p br { display: none; }

    .botoes {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        gap: 12px;
    }

    .btn-voltar,
    .btn-fale-conosco { width: auto; }

    .btn-voltar a,
    .btn-fale-conosco a {
        width: 275.556px;
        padding: 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }
}

/* ===== 480px ===== */
@media (max-width: 480px) {
    .hero-text-content h1 { font-size: 48px; }
    .hero-descrip p { font-size: 20px; line-height: 31.437px; }
}