    :root {
    /* Colors */
    --primary-red: #dc3545;
    --primary-yellow:#dc3545;
    --primary-teal:#31647f;
    --primary-green: #31647f;
    --primary-gray: #31647f;
    --dark-gray: #31647f;
    --light-gray: #f8f9fa;
    --text-dark: #31647f;
    --text-light: #31647f;
    --text-muted: #31647f;
    --white: #ffffff;

    /* Spacing */
    --spacing-xs: 10px;
    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-2xl: 60px;
    --spacing-3xl: 80px;

    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 25px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;

    
    }

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    html {
    height: 100%; 
    }

    body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    display: flex;
    flex-direction: column; 
    min-height: 100vh; 
    margin: 0;
    }

    .main-content {
    flex: 1; 
    }

    .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }

.header {
    background-color: #dc3545;
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}

.top-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.logo img {
    margin-left: 1rem;
    max-width: 180px;
    height: auto;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
}

.info-item i {
    color:  #fff;
    font-size: 16px;
}

.navigation {
    display: flex;
    justify-content: center;
}

.nav-wrapper {
    background: white;
    border-radius: 50px;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-teal);
}


/* Botão Hamburger e Responsivo (Mantendo sua lógica original) */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: absolute;
    top: 30px;
    right: 25px;
}

.hamburger, .hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    border-radius: 3px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.hamburger::before { position: absolute; top: -8px; }
.hamburger::after { position: absolute; top: 8px; }

.header.nav-open .hamburger { background-color: transparent; }
.header.nav-open .hamburger::before { transform: rotate(45deg); top: 0; }
.header.nav-open .hamburger::after { transform: rotate(-45deg); top: 0; }


@media (max-width: 992px) {
    .top-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 40px 20px;
        border-radius: 0;
    }

    .header.nav-open .nav-wrapper {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        font-size: 1.2rem; /* Reduzindo o tamanho da fonte para o mobile */
    }
}


 /* Hero Section */
.hero {
    padding: 0;
    display: flex;
    align-items: center;
    min-height: 60vh;
    background-color: var(--primary-gray);
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel .carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9; 
}

.hero-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out; /* Ajustei a transição para 'ease-in-out' */
    pointer-events: none;
}

.hero-carousel .carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem; /* Usando rem para melhor acessibilidade */
}

.carousel-overlay h3 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Fonte fluida para responsividade */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 800px;
}

.carousel-overlay p {
    font-size: clamp(1rem, 2.5vw, 1.25rem); /* Fonte fluida */
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-carousel .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 10;
    pointer-events: none;
}

.hero-carousel .carousel-btn {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-carousel .carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

.hero-carousel .carousel-btn i {
    color: #333;
    font-size: 1.25rem;
}

.hero-carousel .carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 35%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-carousel .indicator {
    width: 12px;  /* Ajustei o tamanho para um visual mais moderno */
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-carousel .indicator.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-carousel .carousel-container {
        aspect-ratio: 1 / 1; /* formato 1080x1080 */
    }

    .hero {
        min-height: auto;
    }

    /* Texto mais compacto e centralizado */
    .carousel-overlay {
        padding: 1rem;
        background: rgba(0, 0, 0, 0.45);
        justify-content: flex-end; /* texto um pouco mais para baixo */
        padding-bottom: 2rem;
    }

    .carousel-overlay h3 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.2;
        margin-bottom: 0.75rem;
        max-width: 90%;
    }

    .carousel-overlay p {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        line-height: 1.4;
        max-width: 90%;
    }

    /* Botões menores e melhor posicionados */
    .hero-carousel .carousel-btn {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.6);
    }

    .hero-carousel .carousel-btn i {
        font-size: 1rem;
    }

    /* Indicadores mais centralizados e discretos */
    .hero-carousel .carousel-indicators {
        bottom: 1rem;
        left: 35%;
        transform: translateX(-50%);
        gap: 0.5rem;
    }

    .hero-carousel .indicator {
        width: 9px;
        height: 9px;
    }
}


        
    /* Feature Cards */
    .features {
    background: #f8f9fa;
    padding: 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    }

    .feature-cards {
    display: flex;
    gap: 0;
    justify-content: center;
    }

    .feature-card {
    width: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    }

    .feature-card.red {
    background: var(--primary-red);
    }

    .feature-card.yellow {
    background: var(--primary-yellow);
    }

    .feature-card.teal {
    background: var(--primary-teal);
    }

    .card-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .card-icon i {
    color: white;
    font-size: 24px;
    }

    /* Services Section */
    .services {
    background: #f8f9fa;
    padding: 5rem;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    }

    .service-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    }

    .service-card {
    width: 280px;
    padding: 60px 30px 40px;
    margin-top: 5rem;
    text-align: center;
    color: white;
    border-radius: 1rem;
    }

    .service-card.red {
    background: var(--primary-red);
    }

    .service-card.yellow {
    background: var(--primary-yellow);
    }

    .service-card.teal {
    background: var(--primary-teal);
    }

    .service-card .card-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    }

    .service-card .card-icon i {
    color: white;
    font-size: 24px;
    }

    .service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    }

    .service-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    }

    /* About Section */
    .about {
    padding: 80px 0;
    background: #fdfdfd;
    }

    .about-content {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    }

    .about-image {
    flex: 1;
    align-items: center;
    }

    .about-image img {
    width: 86%;
    height: auto;
    
    }

    .about h2 {
        color: #31647f;
        font-size: 2.25rem;
    }

    .about-text {
    flex: 1;
    font-size: 1rem;
    }

    .about-content .cta-button {
        margin-left: 12rem;
    }

    .section-subtitle  {
    color: #dc3545;
    font-size: 1rem;
    margin-bottom: 10px;
    }

    .section-subtitle p {
    color: white;
    }

    .section-title {    
    font-size: 2.25rem;
    color: #fdbd41;
    margin-bottom: 20px;
    line-height: 1.2;
    }

    .section-title1 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #fdbd41;
    margin-bottom: 20px;
    line-height: 1.2;
    }

    .section-title h2 {
    font-size: 2.25rem; 
    color: #fdbd41;
    } 

    .section-header h2 {
        color: #fdbd41;
    }

    .section-title.white {
    color: white;
    }

    .about-description {
    color: #31647f;
    line-height: 1.8;
    margin-bottom: 30px;
    }

    .institutional-header p {
    color: white;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 600;
    }

@media (max-width: 768px) {
    .about-content .cta-button {
        margin-left: 1rem;
    }
    .about-description {
        text-align: justify;
    }

}    


/* Seção de Localização e CTA                    */


.split-container {
    display: flex;
    flex-wrap: wrap; 
    width: 100%;
}

.cta-section,
.location-section {
    flex: 1 1 50%; 
    min-height: 450px; 
    padding: var(--spacing-xl);
    box-sizing: border-box; /
}


.split-container {
    display: flex;
    flex-wrap: wrap; /* Permite que as seções quebrem para a linha de baixo em telas menores */
    width: 100%;
}

/* 2. Estilos para CADA UMA das seções filhas */
.cta-section,
.location-section {
    /* Define que cada seção tentará ocupar 50% da largura, ficando lado a lado */
    flex: 1 1 50%; 
    min-height: 450px;
    padding: var(--spacing-xl);
    box-sizing: border-box;
}


.cta-section {
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl); /* Adicionamos o padding aqui */
}

/* 2. O contêiner interno agora controla o layout dos itens */
.cta-section .cta-content {
    display: flex; /* Ativa o flexbox aqui dentro */
    flex-direction: column; /* Organiza os itens em coluna */
    
    /* === A MUDANÇA PRINCIPAL ESTÁ AQUI === */
    /* Distribui o espaço entre os itens: o primeiro no topo, o último na base */
    justify-content: space-between; 
    
    /* Faz o contêiner ocupar toda a altura da seção pai */
    height: 100%;
    
    width: 100%; /* Ocupa a largura disponível */
    max-width: 500px; /* Mas limitado a 500px */
}

.cta-section h2 {
    font-size: var(--font-4xl);
    line-height: 1.2;
    /* Removemos as margens para que o space-between controle o espaçamento */
    margin-bottom: 0; 
}

.cta-section p {
    font-size: var(--font-lg);
    margin-bottom: 0;
}

.cta-button.yellow {
    background: var(--primary-yellow);
}



.cta-button.yellow:hover {
    background: #e6b02e;
}



.cta-button {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-size: var(--font-md);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* ADICIONE uma sombra inicial */
    text-decoration: none;
    /* ATUALIZE a transição para animar tudo suavemente */
    transition: all 0.3s ease-out; 
}

.cta-button:hover {
    background: #c0392b;

    /* ADICIONE estas linhas para o movimento */
    transform: translateY(-5px); /* Move o botão 5 pixels para CIMA */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Aumenta a sombra para dar profundidade */
}


.location-section {
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-background iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) brightness(0.6);
}

.map-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 80%;
}

.map-overlay h3 {
    font-size: var(--font-xl);
    margin-bottom: var(--spacing-sm);
}

@media (max-width: 992px) {
    .cta-section,
    .location-section {
        /* Em telas menores, cada seção ocupa 100% da largura, fazendo com que fiquem uma sobre a outra */
        flex-basis: 100%; 
    }

    .cta-section {
        align-items: center; /* Centraliza o conteúdo no mobile */
        text-align: center;
    }
}

/* Institutional Section */
.institutional {
    padding: 120px 0;
    background-image: url('../imagens/ceuazulfinal\ \(3\).png');
    background-size: cover;         
    background-position: center;    
    background-repeat: no-repeat;   
    background-attachment: fixed;   
}

.institutional-header {
    text-align: center;
    margin-bottom: 60px;
}

.institutional .section-title {
    font-size: 2.25rem;
    color: #31647f;
    margin-bottom: 10px;
}

.about-description.center {
    text-align: center;
    color: #31647f;
    max-width: 700px;
    font-size: 1rem;
    margin: 0 auto;
}

.institutional-grid {
    display: grid;
    padding: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.institutional-card {
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(241, 241, 241, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}


.institutional-card:hover {
    transform: translateY(-5px);
}

.icon {
    width: 50px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    color: #1a2e40;
    margin-bottom: 20px;
}

.institutional-card p {
    
    line-height: 1.6;
     font-size: 1rem; /* Reduz o tamanho da fonte */
    color: #31647f;
}

.about-textinstitutional {
    text-align: center; 
    margin-top: 40px;
}

@media (max-width: 768px) {
    .institutional-grid {
        grid-template-columns: 1fr; 
    }
}



/* Seção de Atividades */
.packages {
    background-image: url('../imagens/ceuazulfinal.png');
    background-size: cover;
    background-position: center;
    padding: 40px 0; 
}

.section-header {
    text-align: center;
    margin-bottom: 30px; /* Diminui a margem inferior de 40px para 30px */
}


.packages h2 {
    font-size: 2.25rem; /* Reduz o tamanho da fonte */
    font-weight: 700;
    color: #31647f;
    margin-bottom: 5px; /* Reduz a margem */
}

.packages p {
    font-size: 1rem; /* Reduz o tamanho da fonte */
    color: #31647f;
}

/* Contêiner dos Cards com Grid */
.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Minmax ajustado para cards menores */
    gap: 15px; /* Diminui o espaço entre os cards */
}

/* Estilo Individual dos Cards */
.package-card {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px; /* Diminui o padding dos cards de 20px para 15px */
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(241, 241, 241, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.package-icon {
    width: 60px; /* Diminui o tamanho do ícone de 70px para 60px */
    height: 60px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px; /* Diminui o tamanho do ícone */
    margin: 0 auto 10px; /* Diminui a margem inferior de 15px para 10px */
    
}

.package-card h3 {
    font-size: 1.2rem; /* Diminui o tamanho da fonte */
    font-weight: 600;
    margin-bottom: 5px; /* Diminui a margem */
    color: #31647f;
}

.package-card p {
    font-size: 1rem; /* Diminui o tamanho da fonte */
    color: #31647f;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 0.8rem;
    }
}

.coala-section {
    background-image: url('../imagens/coala_apice.png');
    background-size: cover;
    background-position: center; 
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

/* Overlay para melhor contraste */
.coala-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.coala-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-weight: 700;
    color: white;
    font-size: 2.25rem;
}

.section-subtitle {
    font-size: 1rem;
    color: white;
    margin-top: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.coala-info-single {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
    color: white;
}

.coala-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.coala-list li {
    line-height: 1.9;
    color:  white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.coala-list i {
    color: white;
    font-size: 1.2rem;
}


    /* Seção Segmentos */
    .segmentos {
    padding: 60px 0;
    background: #f8f9fa;
    }

    .segmentos-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    }

    .segmentos-header h2 {
    font-size: 2.25rem;
    color: #31647f;
    }



    .segmentos p {
    color: #31647f;
    font-size: 1rem;
    }

    /* Grid de cards */
    .segmentos-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    }

    .segmentos-cards.bottom-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 750px;
    margin-top: 30px;
    }

    /* Cards */
    .segmento-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px;
    margin: 0 auto;
    }

    .segmento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .segmento-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    }

    /* Conteúdo */
    .segmento-content {
    flex: 1;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    }

    .segmento-content h3 {
    font-size: 1.2rem;
    color: #dc3545;
    margin-bottom: 8px;
    }

    .segmento-content p {
    font-size: 1rem;
    color: var(--primary-green);
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 12px;
    }

    /* Botão */
    .segmento-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #dc3545;
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    }

    .segmento-btn:hover {
    background: #e6b02e;
    }

    /* Responsividade */
    @media (max-width: 992px) {
    .segmentos-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .segmentos-cards.bottom-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 90%;
    }
    }

    @media (max-width: 600px) {
    .segmentos-cards,
    .segmentos-cards.bottom-row {
        grid-template-columns: 1fr;
    }
    .segmento-card {
        max-width: 90%;
    }
    }



 /* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center; 
}


.carousel-container-with-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px; 
    margin: 0 auto 30px;
    position: relative; 
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%; 
    max-width: 800px; 

}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonials h2 {
    font-size: 2.25rem;
    color: #31647f;
}

.section-header p {
    font-size: 1rem;
    color: #31647f;
}

.testimonial-card {
    background: #e74c3c;
    color: white;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 1rem;
    flex-shrink: 0;
    width: 100%; 
    box-sizing: border-box;
    text-align: left;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* Estilos das setas */
.carousel-arrow {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px; 
    cursor: pointer;
    font-size: 24px; 
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
    z-index: 10; 
    margin: 0 10px; 
    line-height: 1; 
    width: 40px; 
    height: 40px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: #c0392b;
    transform: scale(1.05); 
}

/* Estilo para os dots */
.testimonial-dots {
    display: flex;
    justify-content: center; 
    gap: 10px;
    margin-top: 20px; 
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #e74c3c;
}


    /* CTA Section */
    .cta-section {
    background: #31647f;
    padding: 60px 0;
    }

    .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .cta-content h2 {
    color: white;
    font-size: 2.25rem;
    font-weight: 600;
    }

    .cta-content p {
    color: white;   
    font-size: 1rem;
    }

    .cta-button.red {
    background: var(--primary-red);
    }

    /* Footer */
    .footer {
    background: var(--primary-red);
    color: white;
    padding: 60px 0 20px;
    }

    .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    }

    .footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    }

    .footer-section p {
    line-height: 1.6;
    color: #fff;
    display: flex;
    align-items: center;
    }

    .footer-section p i {
    margin-right: 10px;
    color: #fff;
    }

    .newsletter {
    display: flex;
    gap: 10px;
    }

    .newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background: white;
    }

    .newsletter-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    }

    .footer-links {
    list-style: none;
    }

    .footer-links li {
    margin-bottom: 10px;
    }

    .footer-links a {
    color:  #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    }

    .footer-links a:hover {
    color: #e6b02e;
    }

    .footer-bottom {
    border-top: 1px solid white;
    padding-top: 20px;
    text-align: center;
    color:  #fff;
    
    }

    .footer-logo {
    width: 150px; 
    height: auto; 
    margin-bottom: 20px; 
    }

    .footer-description {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px; 
    max-width: 35ch;
    }

    .social-icons {
    display: flex; 
    gap: 15px; 
    }

    .social-icons a {
    color:  #fff; 
    font-size: 22px; 
    text-decoration: none;
    transition: color 0.3s ease; 
    }

    .social-icons a:hover {
    color: #e6b02e; 
    }

    .footer-links ul,
    .footer-links ol,
    ul.footer-links,
    ol.footer-links {
        padding-left: 0rem !important;
        list-style-position: inside; /* opcional: bullets alinhados com o texto */
    }


    
    @media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .top-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: 300px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 350px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .newsletter {
        flex-direction: column;
    }

    .hero-carousel .carousel-container {
        height: 400px;
    }

    .carousel-overlay {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .carousel-overlay h3 {
        font-size: var(--font-xl);
    }

    .carousel-overlay p {
        font-size: var(--font-sm);
    }

    .hero-carousel .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .hero-carousel .carousel-nav {
        padding: 0 var(--spacing-sm);
    }

    .hero-carousel .indicator {
        width: 12px;
        height: 12px;
    }
    }

    @media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hero-carousel .carousel-container {
        height: 370px;
    }

    .hero-title {
        font-size: 28px;
    }

    .carousel-overlay h3 {
        font-size: var(--font-lg);
    }
    }


.whatsapp-float {
    position: fixed; 
    width: 60px; 
    height: 60px; 
    bottom: 40px; 
    right: 40px; 
    background-color: #25d366; 
    color: #FFF; 
    border-radius: 50px; 
    text-align: center; 
    font-size: 30px; 
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); 
    z-index: 1000; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-out;
    text-decoration: none;
}


.whatsapp-float:hover {
    transform: translateY(-8px);
    box-shadow: 2px 8px 15px rgba(0, 0, 0, 0.4); 
}
