* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #037864;
    --green-light: #0b4f4a;
    --orange: #EA5D1D;
    --cream: #f7f3ef;
    --text: #3D3D3D;
    --border: #e9e2da;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: white;
}




.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', sans-serif;
}

.topbar {
    background: linear-gradient(90deg, #021f1d 0%, #063937 100%);
    padding: 25px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 52px;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
}

.active a {
    color: #ffb03a;
}

.btn-primary,
.btn-orange,
.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 16px 28px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s ease;
}

.btn-primary {
    background: #f4b544;
    color: #03211f;
}

.btn-orange {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    background: #037864;
}

.btn-green {
    background: var(--green);
    color: white;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 75vh;
    background-color: rgba(9, 9, 9, 0.8);
    overflow: hidden;
    position: relative;
}

    #hero .carousel,
    #hero .carousel-inner,
    #hero .carousel-item,
    #hero .carousel-item::before {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }

        #hero .carousel-item::before {
            content: "";
        }

    #hero .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 50px;
        right: 50px;
    }

    #hero .container {
        text-align: left;
    }

    #hero h2 {
        color: #037864;
        margin-bottom: 20px;
        font-size: 70px;
        font-weight: 700;
        -webkit-text-stroke: 0.5px;
    }

    #hero p {
        animation-delay: 0.4s;
        margin: 0 auto 30px auto;
        font-size: 18px;
        color: #3D3D3D;
    }

    #hero a {
        text-decoration: none !important;
    }

    #hero .carousel-inner .carousel-item {
        transition-property: opacity;
        background-position: center top;
    }

    #hero .carousel-inner .carousel-item,
    #hero .carousel-inner .active.carousel-item-start,
    #hero .carousel-inner .active.carousel-item-end {
        opacity: 0;
    }

    #hero .carousel-inner .active,
    #hero .carousel-inner .carousel-item-next.carousel-item-start,
    #hero .carousel-inner .carousel-item-prev.carousel-item-end {
        opacity: 1;
        transition: 0.5s;
    }

    a.carousel-control-prev {
        text-decoration: none !important;
    }

    a.carousel-control-next {
        text-decoration: none !important;
    }


    #hero .carousel-control-next-icon,
    #hero .carousel-control-prev-icon {
        background: none;
        font-size: 30px;
        line-height: 0;
        width: auto;
        height: auto;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        transition: 0.3s;
        color: rgba(255, 255, 255, 0.5);
        width: 54px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #hero .carousel-control-next-icon:hover,
        #hero .carousel-control-prev-icon:hover {
            background: rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

    #hero .carousel-indicators li {
        list-style-type: none;
        cursor: pointer;
        background: #fff;
        overflow: hidden;
        border: 0;
        width: 12px;
        height: 12px;
        border-radius: 50px;
        opacity: 0.6;
        transition: 0.3s;
    }

        #hero .carousel-indicators li.active {
            opacity: 1;
            background: #5cb874;
        }

    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        color: #fff;
        animation-delay: 0.8s;
        background: #037864;
    }

        #hero .btn-get-started:hover {
            background: #6ec083;
        }

@media (max-width: 992px) {
    #hero {
        height: 100vh;
    }

        #hero .carousel-container {
            top: 66px;
        }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}



@media (min-width: 1024px) {

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}






.services-shortcuts {
    padding: 30px 0;
    background: #FAF7F4;
}

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
    .shortcuts-grid a:hover {
        color: #3D3D3D;
        background: #E9E2DA;
    }

.shortcut-box {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text);
}

    .shortcut-box img {
        width: 48px;
    }

.tv-section {
    padding: 30px 0 30px;
    background: #faf7f4;
}

.tv-box {
    background: white;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
}

.stats-section {
    padding: 30px 0 30px;
    background: #e9e2da;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    background: #faf7f4;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
}

    .stat-box h3 {
        font-size: 36px;
    }

.section-title {
    margin-bottom: 50px;
}



    .section-title span {
        color: rgba(234,93,29,1);
        letter-spacing: 2px;
        font-size: 20px;
        font-weight: bold;
    }

    .section-title h2 {
        font-size: 62px;
        margin-top: 10px;
        font-style: italic;
    }

    .section-title p {
        margin-top: 15px;
        color: #555;
    }

.center {
    text-align: center;
}

.services-section {
    padding: 30px 0 30px;
    background: #faf7f4;
}


.about-section,
.testimonials-section,
.benefits-section,
.process-section,
.faq-section {
    padding: 100px 0;
    background: #e9e2da;
}

.about-content span {
    color: rgba(234,93,29,1);
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.service-card {
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 35px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .service-card img {
        width: 72px;
        margin: 0 auto 25px;
        display: block;
    }

    .service-card h3 {
        font-size: 24px;
        line-height: 1;
        margin-bottom: 15px;
        font-weight: bold;
        font-family: 'Inter', sans-serif;
    }

    .service-card p {
        line-height: 1.8;
        margin-bottom: 25px;
        font-size: 13px;
        flex-grow: 1;
    }

    .service-card a {
        color: white;
        background: rgba(234,93,29,1);
        padding: 12px 20px;
        border-radius: 10px;
        text-decoration: none;
    }

.about-section {
    padding: 30px 0 30px;
    background: #faf7f4;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 28px;
}

.about-content h2 {
    font-size: 62px;
    line-height: 1;
    margin: 20px 0;
    font-style: italic;
}

.about-content span {
    color: rgba(234,93,29,1);
}

.about-content p {
    line-height: 1.9;    
}

.about-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.about-features div {
        background: #faf7f4;
        padding: 14px 20px;
        border-radius: 14px;
    }

.differentials-section {
    
    background: #001615;
    color: white;
}
.differentials-imagem {
    padding: 40px 0;
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.differentials-title h2 {
    font-size: 38px;
    font-style: italic;
}

.differentials-title span {
    color: rgba(234,93,29,1);
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: bold;
}


.contato-section {
    padding: 80px 0;
    background: rgba(3,120,100,1);
    color: white;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 0.5fr 1.8fr;
    gap: 30px;
}

.contato-title h2 {
    font-size: 38px;
}

.contato-title a {
    text-decoration: none;
}

.contato-title span {
    color: white;
    font-size: 13px;
}

.contato-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: white;
    font-weight: bold;
}

.contato-item a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: white;
    text-decoration: none;
    font-weight: normal;
}

    .contato-item a:hover {
        color: rgba(234,93,29,1);
    }




/* =========================================
   TESTEMUNHOS
========================================= */

.testimonial-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 60px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.testimonial-card {
    min-width: 320px;
    max-width: 320px;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

    .testimonial-card img {
        width: 85px;
        height: 85px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 18px;
    }

.stars {
    color: #f5b301;
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card p {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 130px;
}

.read-more {
    margin-top: 18px;
    border: none;
    background: rgba(234,93,29,1);
    color: white;
    padding: 12px 22px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

    .read-more:hover {
        opacity: 0.9;
    }


/* BOTÕES DO CARROSSEL */

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 22px;
    cursor: pointer;
    z-index: 20;
    transition: 0.3s;
}

    .testimonial-nav:hover {
        background: var(--green-light);
    }

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}


/* =========================================
   MODAL
========================================= */

.testimonial-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white !important;
    width: 100%;
    max-width: 750px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 24px !important;
    padding: 45px;
    position: relative;
}

#modalText {
    line-height: 1.9;
    color: #444;
    white-space: pre-line;
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 34px;
    cursor: pointer;
}


/* =========================================
   RESPONSIVO
========================================= */

@media(max-width:768px) {

    .testimonial-wrapper {
        padding: 20px 10px;
    }

    .testimonial-card {
        min-width: 85%;
        max-width: 85%;
    }

    .testimonial-nav {
        display: none;
    }
}









.footer-cta {
    padding: 80px 0;

}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 40px;
    color: #037864;
}

    .footer-grid h1 {
        color: #EA5D1D;
    }

.footer-grid img {
        width: 100%;
    }

.internal-hero {
    padding: 70px 0;
    background: #faf7f4;
}

.internal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.internal-content h1 {
    font-size: 76px;
    line-height: 1;
    margin: 25px 0;
    
}

    .internal-content h1 span {
        color: rgba(234,93,29,1);
    }

.internal-content p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.internal-image img {
    width: 100%;
    border-radius: 32px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
}

    .benefit-card h3 {
        font-size: 36px;
        margin-bottom: 15px;
    }

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
}

.number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item button {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: white;
    padding: 22px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
}

@media(max-width: 1024px) {

    .hero-grid,
    .about-grid,
    .internal-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .benefits-grid,
    .process-grid,
    .testimonials-grid,
    .stats-grid,
    .shortcuts-grid,
    .differentials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1,
    .internal-content h1,
    .section-title h2,
    .about-content h2 {
        font-size: 52px;
    }
}

@media(max-width: 768px) {

    nav {
        display: none;
    }

    .services-grid,
    .benefits-grid,
    .process-grid,
    .testimonials-grid,
    .stats-grid,
    .shortcuts-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1,
    .internal-content h1,
    .section-title h2,
    .about-content h2 {
        font-size: 42px;
    }

    .hero-slider {
        flex-direction: column;
    }

    .active-card,
    .small-card {
        width: 100%;
        height: auto;
    }
}












.galeria-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: sans-serif;
}

.galeria-titulo {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.galeria-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .galeria-item:hover {
        transform: scale(1.03);
    }

    .galeria-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }


/* FOTOS OCULTAS */

.foto-extra {
    display: none;
}


/* BOTÃO EXPANDIR */

.galeria-expandir {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

#btnGaleria {
    border: none;
    background: var(--green);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

    #btnGaleria:hover {
        background: var(--green-light);
        transform: translateY(-2px);
    }

#iconeGaleria {
    font-size: 22px;
    line-height: 1;
    transition: transform 0.3s ease;
}


/* Quando a galeria estiver aberta */

.galeria-aberta .foto-extra {
    display: block;
}

.galeria-aberta #iconeGaleria {
    transform: rotate(180deg);
}



/* Estilos do Lightbox */
.lightbox {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Fundo escuro transparente */
    text-align: center;
}

.foto-grande {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    padding: 20px;
    margin-top: 10%;
}

.fechar-lightbox {
    color: white;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}

/* RESPONSIVO */

@media (max-width: 992px) {

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .galeria-item img {
        height: 250px;
    }
}