* {
    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: #FAF7F4;
}


.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-home {
    padding: 0px 0;
    height: 75vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 4fr 2fr;
    gap: 60px;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 50px;
    right: 50px;
}

.hero-content h1 {
    color: #037864;
    margin-bottom: 20px;
    font-size: 70px;
    font-weight: 700;
    -webkit-text-stroke: 0.5px;
}

    .hero-content h1 span {
        color: rgba(234,93,29,1);
        font-size: 42px;
    }

.hero-content p {
    margin: 0 auto 30px auto;
    font-size: 18px;
    color: #3D3D3D;
}



.hero-benefits {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}




/* =========================================
   HERO CAROUSEL PREMIUM
========================================= */

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 720px;
    margin: 0 auto;
    overflow: hidden;
}


/* TRACK */

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}


/* ITEMS */

.item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    transition: transform 0.8s ease, opacity 0.8s ease, filter 0.8s ease;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
    filter: blur(0px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.22);
}


    /* IMAGEM */

    .item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    /* CARD CENTRAL */

    .item.active {
        width: 390px;
        height: 680px;
        opacity: 1;
        z-index: 20;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
    }


    /* ESQUERDA */

    .item.left {
        opacity: 0.45;
        z-index: 10;
        transform: translate(-145%, -50%) scale(0.82);
    }


    /* DIREITA */

    .item.right {
        opacity: 0.45;
        z-index: 10;
        transform: translate(45%, -50%) scale(0.82);
    }


    /* ESCONDIDOS */

    .item.hidden {
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -50%) scale(0.5);
    }


/* OVERLAY SUAVE */

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 220px;
    height: 100%;
    z-index: 15;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient( to right, #faf7f4 0%, rgba(250,247,244,0) 100% );
}

.carousel-container::after {
    right: 0;
    background: linear-gradient( to left, #faf7f4 0%, rgba(250,247,244,0) 100% );
}


/* BOTÕES */

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 40;
    transition: 0.3s;
}

    .hero-nav:hover {
        background: rgba(255,255,255,0.35);
    }


.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}


/* RESPONSIVO */

@media(max-width: 768px) {

    .carousel-container {
        height: 520px;
    }

    .item.active {
        width: 240px;
        height: 420px;
    }

    .item.left {
        transform: translate(-120%, -50%) scale(0.72);
    }

    .item.right {
        transform: translate(20%, -50%) scale(0.72);
    }

    .hero-nav {
        width: 48px;
        height: 48px;
    }
}






.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: 13px;
        font-weight: bold;
    }

    .section-title h2 {
        font-size: 62px;
        margin-top: 10px;
        font-style: italic;
    }

    .section-title p {
        margin-top: 15px;
        color: #555;
        font-family: 'Inter', sans-serif;
    }

.center {
    text-align: center;
}

.services-section {
    padding: 30px 0 30px;
    background: #faf7f4;
}

.services-section2 {
    padding: 30px 0 30px;
    background: white;
}

.about-section,
.testimonials-section,
.benefits-section,
.process-section,
.faq-section {
    padding: 100px 0;
    background: #faf7f4;
}

.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(4, 1fr);
    gap: 24px;
}

.services-grid2 {
    display: grid;
    grid-template-columns: repeat(6, 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 h2 {
        font-size: 20px;
        font-weight: bold;
        line-height: 1;
        margin-bottom: 15px;
        font-family: 'Inter', sans-serif;
    }

    .service-card p {
        line-height: 1.8;
        margin-bottom: 25px;
        font-family: 'Inter', sans-serif;
    }

    .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;
}

.about-content span {
    color: rgba(234,93,29,1);
}

.about-content p {
    line-height: 1.9;
    font-family: 'Inter', sans-serif;
}

.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 a {
    text-decoration: none;
}

.contato-title h2 {
    font-size: 38px;
}

.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: 13px;
    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;
}

.testimonial-modal-content {
    background: white;
    width: 100%;
    max-width: 750px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 24px;
    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;
    font-family: 'Inter', sans-serif;
}

.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: 13px;
    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;
    }
}








/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/

.faq,
.faq * {
    font-family: 'Inter', sans-serif !important;
}
.faq .content h3 {
    font-weight: bold;
    font-size: 34px;
}

.faq .content h4 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
}

    .faq .content p {
        font-size: 13px;
        color: #6c757d;
        font-family: 'Inter', sans-serif;
    }


.faq .accordion-item {
    border: 0;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

    .faq .accordion-item:last-child {
        margin-bottom: 0;
    }

.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-button {
    padding: 20px 50px 20px 20px;
    font-weight: bold;
    border: 0;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-default);
    text-align: left;
    background: #fff;
    box-shadow: none;
    border-radius: 10px;
}

    .faq .accordion-button .num {
        padding-right: 10px;
        font-size: 20px;
        line-height: 0;
        color: rgba(234,93,29,1);
    }

    .faq .accordion-button:not(.collapsed) {
        color: var(--color-primary);
        border-bottom: 0;
        box-shadow: none;
    }

    .faq .accordion-button:after {
        position: absolute;
        right: 20px;
        top: 20px;
    }

.faq .accordion-body {
    padding: 0 40px 30px 45px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: none;
}





/* =========================================
TIMELINE
========================================= */

.timeline,
.timeline * {
    font-family: 'Inter', sans-serif !important;
}

.timeline-section {
    padding: 0px 0;
    font-family: 'Inter', sans-serif;
}


.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    position: relative;
}





    /* LINHA */

    .timeline::before {
        content: '';
        position: absolute;
        top: 16px;
        left: 10%;
        width: 80%;
        height: 2px;
        background: repeating-linear-gradient( to right, #bfc7c3 0, #bfc7c3 4px, transparent 4px, transparent 8px );
        z-index: 1;
    }


.timeline-item {
    position: relative;
    text-align: center;
    z-index: 2;
}




/* TOPO */

.timeline-top {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}


/* NÚMERO */

.timeline-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #042f2d;
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(4,47,45,.15);
}


/* ÍCONE */

.timeline-icon {
    font-size: 42px;
    margin-bottom: 24px;
}


/* TÍTULO */

.timeline-item h3 {
    font-size: 20px;
    line-height: 1.15;
    color: #082d2b;
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
}


/* TEXTO */

.timeline-item p {
    font-size: 13px;
    line-height: 1.8;
    color: #4f4f4f;
    max-width: 220px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}



/* RESPONSIVO */

@media(max-width: 992px) {

    .timeline {
        grid-template-columns: 1fr;
        gap: 60px;
    }

        .timeline::before {
            display: none;
        }
}







/* =========================================
TIMELINE2
========================================= */

.timeline2,
.timeline2 * {
    font-family: 'Inter', sans-serif !important;
}

.timeline2-section {
    padding: 0px 0;
    font-family: 'Inter', sans-serif;
}


.timeline2 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 40px;
    position: relative;
}





    /* LINHA */

    .timeline2::before {
        content: '';
        position: absolute;
        top: 16px;
        left: 10%;
        width: 80%;
        height: 2px;
        background: repeating-linear-gradient( to right, #bfc7c3 0, #bfc7c3 4px, transparent 4px, transparent 8px );
        z-index: 1;
    }


.timeline2-item {
    position: relative;
    text-align: center;
    z-index: 2;
}




/* TOPO */

.timeline2-top {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}


/* NÚMERO */

.timeline2-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #042f2d;
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(4,47,45,.15);
}


/* ÍCONE */

.timeline2-icon {
    font-size: 42px;
    margin-bottom: 24px;
}


/* TÍTULO */

.timeline2-item h3 {
    font-size: 20px;
    line-height: 1.15;
    color: #082d2b;
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
}


/* TEXTO */

.timeline2-item p {
    font-size: 13px;
    line-height: 1.8;
    color: #4f4f4f;
    max-width: 220px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}



/* RESPONSIVO */

@media(max-width: 992px) {

    .timeline2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

        .timeline2::before {
            display: none;
        }
}







/* =========================================
TIMELINE3
========================================= */

.timeline3,
.timeline3 * {
    font-family: 'Inter', sans-serif !important;
}

.timeline3-section {
    padding: 0px 0;
    font-family: 'Inter', sans-serif;
}


.timeline3 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
    position: relative;
}





    /* LINHA */

    .timeline3::before {
        content: '';
        position: absolute;
        top: 16px;
        left: 10%;
        width: 80%;
        height: 2px;
        background: repeating-linear-gradient( to right, #bfc7c3 0, #bfc7c3 4px, transparent 4px, transparent 8px );
        z-index: 1;
    }


.timeline3-item {
    position: relative;
    text-align: center;
    z-index: 2;
}




/* TOPO */

.timeline3-top {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}


/* NÚMERO */

.timeline3-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #042f2d;
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(4,47,45,.15);
}


/* ÍCONE */

.timeline3-icon {
    font-size: 42px;
    margin-bottom: 24px;
}


/* TÍTULO */

.timeline3-item h3 {
    font-size: 20px;
    line-height: 1.15;
    color: #082d2b;
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
}


/* TEXTO */

.timeline3-item p {
    font-size: 13px;
    line-height: 1.8;
    color: #4f4f4f;
    max-width: 220px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}



/* RESPONSIVO */

@media(max-width: 992px) {

    .timeline3 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

        .timeline2::before {
            display: none;
        }
}




.prazo-box {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f7f3f1;
    border-radius: 14px;
    padding: 18px 24px;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.prazo-icon {
    min-width: 55px;
    height: 55px;
    border: 2px solid #EA5D1D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .prazo-icon i {
        font-size: 30px;
        color: #EA5D1D;
    }

.prazo-texto {
    font-size: 18px;
    line-height: 1.7;
}

    .prazo-texto strong {
        font-weight: bold;
    }

    .prazo-texto span {
        color: #EA5D1D;
        font-weight: bold;
    }



.requisito-box {
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza horizontalmente o grupo de elementos */
    gap: 18px;
    background: #f7f3f1;
    border-radius: 14px;
    padding: 18px 24px;
    font-family: 'Inter', sans-serif;
    color: #333;
    text-align: center; /* Garante que as linhas de texto fiquem centralizadas */
}

.requisito-icon {
    min-width: 55px;
    height: 55px;
    border: 2px solid #EA5D1D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .requisito-icon i {
        font-size: 32px;
        color: #EA5D1D;
    }

.requisito-texto {
    font-size: 13px;
    line-height: 1.7;
}

    .requisito-texto strong {
        font-weight: bold;
    }

    .requisito-texto span {
        color: #EA5D1D;
        font-weight: bold;
    }


.requisitos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.requisito-card {
    background: #f7f3f1;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-family: 'Inter', sans-serif;
}

.requisito-card-icon {
    min-width: 72px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, #0f3b36 0%, #032623 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d27a21;
    font-size: 38px;
}

    .requisito-card-icon.b1 {
        font-size: 42px;
        font-family: 'Cormorant Garamond', serif;
        font-weight: bold;
    }

.requisito-card-content h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: bold;
    color: #2d2d2d;
}

.requisito-card-content p {
    margin: 0;
    color: #5f5f5f;
    font-size: 13px;
    line-height: 1.8;
}

.requisito-card-content span {
    color: #EA5D1D;
    font-weight: bold;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .requisitos-grid {
        grid-template-columns: 1fr;
    }

    .requisito-card {
        flex-direction: column;
        align-items: flex-start;
    }
}



.container-principal {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background-color: #FAF6F0; /* Fundo creme suave do container */
    border-radius: 12px;
    padding: 40px;
    font-family: 'Inter', sans-serif;
    background-color: #fdfbf7;
    color: #333333;
    padding: 40px 20px;
    display: block;
}

/* --- Secção Superior (Grid de Duas Colunas) --- */
.secao-superior {
    display: block;
    margin-bottom: 40px;
}

/* Criar colunas lado a lado simulando tabela para compatibilidade e estrutura limpa */
.grid-layout {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.coluna-esquerda, .coluna-direita {
    display: table-cell;
    vertical-align: middle;
}

.coluna-esquerda {
    width: 55%;
    padding-right: 40px;
}

.coluna-direita {
    width: 45%;
}

/* Lista de Benefícios (Lado Esquerdo) */
.lista-beneficios {
    display: block;
}

.item-beneficio {
    display: table;
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6DFD5;
}

    .item-beneficio:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

.bloco-icone, .bloco-texto {
    display: table-cell;
    vertical-align: middle;
}

.bloco-icone {
    width: 80px;
}

.icone-circulo {
    width: 60px;
    height: 60px;
    border: 1px solid #C48C46;
    border-radius: 50%;
    text-align: center;
    line-height: 58px; /* Alinha o ícone verticalmente */
}

    .icone-circulo i {
        color: #EA5D1D;
        font-size: 24px;
        vertical-align: middle;
    }

.texto-beneficio {
    font-size: 13px;
    line-height: 1.5;
    color: #555555;
    font-family: 'Inter', sans-serif;
}

    .texto-beneficio strong {
        color: #111111;
        font-weight: bold;
        font-family: 'Inter', sans-serif;
    }

/* Bloco de Citação (Lado Direito) */
.bloco-citacao {
    background-color: #F3ECE1;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
}

.aspas {
    display: block;
    color: #C48C46;
    font-size: 45px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: -10px;
}

.texto-citacao {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16pt;
    line-height: 1.6;
    color: #2C3E35;

}

/* --- Secção Inferior (Aviso / Urgência) --- */
.secao-urgencia {
    display: table;
    width: 100%;
    border-top: 1px solid #E6DFD5;
    padding-top: 40px;
    background-color: white; /* Fundo creme suave do container */
}

.coluna-icone-relogio, .coluna-texto-urgencia {
    display: table-cell;
    vertical-align: top;
}

.coluna-icone-relogio {
    width: 95px;
}

.icone-relogio-cheio {
    width: 70px;
    height: 70px;
    background-color: #EA5D1D;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
}

    .icone-relogio-cheio i {
        color: #FFFFFF;
        font-size: 30px;
        vertical-align: middle;
    }

.conteudo-urgencia h2 {
    font-family: 'Inter', sans-serif;
    font-size: 18pt;
    color: #111111;
    margin-bottom: 12px;
    font-weight: bold;
}

.conteudo-urgencia p {
    font-size: 18px;
    line-height: 1.6;
    color: #444444;
}

.data-alerta {
    color: #D9534F;
    font-weight: bold;
}






/* --- Bloco Principal da Section --- */
.sessao-diploma {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #FAF6F0; /* Fundo creme suave igual à imagem */
    border-radius: 16px;
    overflow: hidden; /* Garante que o rodapé escuro respeite as bordas arredondadas */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
}

/* --- Conteúdo Superior (Grid de Informações) --- */
.conteudo-superior {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 40px;
}

/* Bloco Esquerdo: Título e Ícone do Templo */
.bloco-titulo {
    flex: 1 1 450px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    font-family: 'Inter', sans-serif;
}

.circulo-templo {
    width: 90px;
    height: 90px;
    border: 1px solid #E6DFD5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #ffffff;
}

    .circulo-templo i {
        color: #D36B27; /* Tom laranja/terracota do ícone */
        font-size: 40px;
    }

.texto-chamada h2 {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 28px;
    color: #0d382b; /* Verde escuro institucional */
    line-height: 1.3;
    margin-bottom: 15px;
}

    .texto-chamada h2 span {
        color: #D36B27; /* Destaque em laranja para "reconhecimento na Itália" */
        font-weight: bold;
    }

.texto-chamada p {
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
}

/* Bloco Direito: Divisória e Lista de Requisitos */
.bloco-lista {
    flex: 1 1 450px;
    border-left: 1px solid #E6DFD5;
    padding-left: 40px;
}

    .bloco-lista h3 {
        font-family: 'Inter', sans-serif;
        font-size: 20px;
        color: #0d382b;
        margin-bottom: 25px;
        font-weight: bold;
    }

.grid-itens {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}

.item-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

    .item-check i {
        color: #D36B27;
        font-size: 16px;
        margin-top: 2px;
    }

    .item-check span {
        font-size: 13px;
        color: #333333;
        font-weight: bold;
        line-height: 1.4;
        font-family: 'Inter', sans-serif;
    }

/* --- Rodapé Escuro (Categorias) --- */
.rodape-categorias {
    background-color: #032d20; /* Verde muito escuro idêntico ao original */
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.categoria-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1 1 200px;
}

    /* Linha divisória vertical entre os itens do rodapé */
    .categoria-item:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        padding-right: 15px;
    }

    .categoria-item i {
        color: #D4AF37; /* Tom dourado sutil dos ícones inferiores */
        font-size: 24px;
    }

.categoria-texto {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

/* --- Responsividade para Telas Menores --- */
@media (max-width: 992px) {
    .bloco-lista {
        border-left: none;
        padding-left: 0;
    }

    .grid-itens {
        grid-template-columns: 1fr;
    }

    .categoria-item:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }
}





/* --- Container da Seção --- */
.secao-validacao {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

    /* Título Opcional para contextualizar a seção */
    .secao-validacao .titulo-secao {
        font-family: 'Inter', sans-serif;
        font-size: 32px;
        color: #0d382b;
        margin-bottom: 30px;
        text-align: center;
    }

/* --- Grid de Layout (3 colunas no desktop) --- */
.grid-validacao {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-validacao2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* --- Card de Serviço Individual --- */
.card-validacao {
    background-color: #FAF6F0; /* Fundo creme suave padrão da identidade */
    border: 1px solid rgba(230, 223, 213, 0.7); /* Borda clarinha quase imperceptível */
    border-radius: 14px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.01);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    /* Efeito sutil ao passar o mouse */
    .card-validacao:hover {
        transform: translateY(-3px);
        box-shadow: 0px 6px 16px rgba(13, 56, 43, 0.05);
    }

    /* --- Ícones dos Cards --- */
    .card-validacao .wrapper-icone {
        color: #D36B27; /* Laranja terracota institucional */
        font-size: 38px; /* Tamanho proporcional para os traços lineares */
        line-height: 1;
        flex-shrink: 0;
    }

    /* --- Bloco de Texto Interno --- */
    .card-validacao .conteudo-card {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

        .card-validacao .conteudo-card h3 {
            font-size: 16px;
            font-weight: bold;
            color: #0d382b; /* Verde escuro institucional */
            line-height: 1.3;
            font-family: 'Inter', sans-serif;
        }

        .card-validacao .conteudo-card p {
            font-size: 13px;
            color: #666666; /* Tom cinza suave para descrição legível */
            line-height: 1.5;
            font-family: 'Inter', sans-serif;
        }

/* --- Responsividade (Telas menores) --- */

/* Tablets (Duas colunas) */
@media (max-width: 992px) {
    .grid-validacao {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smartphones (Uma coluna) */
@media (max-width: 600px) {
    .grid-validacao {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-validacao {
        padding: 24px;
    }
}






.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;
}