/* VARIÁVEIS E RESET GERAL */

:root {
    --green: #009400;
    --white: #FEFEFE;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --light-green: #e8f5e9;
    /* Nova cor para fundo de acessibilidade */
    --transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 15px 30px rgba(0, 148, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    
    
}
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* NAVBAR */

.navbar {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logo img {
    height: 70px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
}

.btn-contact-nav {
    background: var(--green);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    text-align: center;
}

.btn-contact-nav:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}


/* SLIDER */

.slider-wrapper {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: #eee;
}

.slider-container {
    display: flex;
    height: 100%;
    transition: var(--transition);
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-nav button {
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav button:hover {
    background: var(--green);
}


/* INTRO */

.hero-intro {
    text-align: center;
    padding: 60px 0;
}

.hero-intro h1 {
    font-size: 38px;
    color: var(--green);
    margin-bottom: 20px;
    padding: 0 10px;
}

.hero-intro p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}


/* DIFERENCIAIS E GRIDS */

.section-padding {
    padding: 80px 0;
}

.light-bg {
    background: var(--light);
}

.light-green-bg {
    background: var(--light-green);
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--green);
    margin-bottom: 50px;
}

.section-title.left {
    text-align: left;
}

.accessibility-intro {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 40px;
    color: #666;
    font-size: 18px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.diff-item {
    text-align: center;
}

.diff-item i {
    font-size: 40px;
    color: var(--green);
    margin-bottom: 15px;
}

.card-segment {
    border-bottom: 5px solid var(--green);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.age-badge {
    display: inline-block;
    background: rgba(0, 148, 0, 0.1);
    color: var(--green);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin: 15px 0;
}


/* SOBRE */

.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text,
.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 15px 15px 0 var(--green);
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    font-weight: 600;
}

.check-list i {
    color: var(--green);
    margin-right: 10px;
}


/* DEPOIMENTOS */

.testimonial-card {
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote-icon {
    color: var(--green);
    opacity: 0.2;
    font-size: 30px;
}

.author {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author strong {
    display: block;
    color: var(--green);
}

.author span {
    font-size: 13px;
    color: #999;
}


/* FAQ */

.faq-list details {
    background: white;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
}

.faq-list summary {
    font-weight: 600;
    outline: none;
}

.faq-list p {
    margin-top: 10px;
    color: #666;
}


/* FOOTER */

.footer {
    background: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--green);
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 14px;
    opacity: 0.6;
}


/* =========================================== */


/* RESPONSIVIDADE (MOBILE E TABLET) */


/* =========================================== */


/* Telas Grandes (Ajuste para monitores muito largos) */

@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}


/* Tablets e Celulares Grandes */

@media (max-width: 992px) {
    .hero-intro h1 {
        font-size: 32px;
    }
    .about-flex {
        gap: 30px;
        flex-direction: column;
        /* Empilha o conteúdo sobre nós */
        text-align: center;
    }
    .section-title.left {
        text-align: center;
    }
    .section-padding {
        padding: 60px 0;
    }
    .about-img {
        max-width: 80%;
        margin: 0 auto;
    }
}


/* Celulares Médios (iPhone, Android Padrão) */

@media (max-width: 768px) {
    .navbar-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .logo-text {
        font-size: 20px;
    }
    .slider-wrapper {
        height: 300px;
    }
    .hero-intro h1 {
        font-size: 26px;
    }
    .hero-intro p,
    .accessibility-intro {
        font-size: 16px;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .about-img img {
        box-shadow: 10px 10px 0 var(--green);
        max-width: 90%;
        margin: 0 auto;
    }
    .footer-grid {
        text-align: center;
    }
    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
        /* Força uma coluna única no mobile */
    }
}


/* Celulares Pequenos e Ajustes de Margem */

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero-intro h1 {
        font-size: 22px;
    }
    .slider-wrapper {
        height: 220px;
    }
    .btn-contact-nav {
        width: 100%;
        font-size: 12px;
    }
    .hover-card {
        padding: 20px;
    }
}