/* ============================================
   HOME - Overrides
   ============================================ */

/* Sobrescrever _astro: título introdutório da home em 28px (não 96px do h2 genérico nem 64px do .h3) */
body h2.intro-title-text,
body h2.intro-title-text.h3 {
    font-size: 28px !important;
    letter-spacing: 0px !important;
}
body .half-below-text h1,
body .half-below-text h1.h1 {
    font-size: clamp(48px, 8vw, 96px) !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    margin-left: 0 !important;
    transition: font-size 0.3s ease !important;
}
/* Grid de produtos (Campanhas, Insights, Sou Creator, etc.): imagens SVG com mesmo tamanho em todos os cards */
.home-products-row h2 img {
    height: 90px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
}
.home-products-row h2 {
    min-height: 120px !important;
}

.bg-dark {
    --bs-bg-opacity: unset !important;
    background-color: #000000 !important;
}

/* ============================================
   ALINHAMENTO PADRÃO (igual ao FAQ) - use .content-align-faq em qualquer seção
   ============================================ */
.content-align-faq {
    margin-left: clamp(16px, 12vw, 185px) !important;
    margin-right: clamp(16px, 9vw, 135px) !important;
    max-width: calc(100vw - clamp(16px, 12vw, 185px) - clamp(16px, 9vw, 135px)) !important;
    width: 100%;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
@media (max-width: 1400px) {
    .content-align-faq {
        margin-left: clamp(16px, 10vw, 150px) !important;
        margin-right: clamp(16px, 8vw, 110px) !important;
        max-width: calc(100vw - clamp(16px, 10vw, 150px) - clamp(16px, 8vw, 110px)) !important;
    }
}
@media (max-width: 1200px) {
    .content-align-faq {
        margin-left: clamp(16px, 8vw, 100px) !important;
        margin-right: clamp(16px, 6vw, 80px) !important;
        max-width: calc(100vw - clamp(16px, 8vw, 100px) - clamp(16px, 6vw, 80px)) !important;
    }
}
@media (max-width: 992px) {
    .content-align-faq {
        margin-left: clamp(16px, 5vw, 60px) !important;
        margin-right: clamp(16px, 4vw, 48px) !important;
        max-width: calc(100vw - clamp(16px, 5vw, 60px) - clamp(16px, 4vw, 48px)) !important;
    }
}
@media (max-width: 768px) {
    .content-align-faq {
        margin-left: clamp(16px, 3vw, 32px) !important;
        margin-right: clamp(16px, 2vw, 24px) !important;
        max-width: calc(100vw - clamp(16px, 3vw, 32px) - clamp(16px, 2vw, 24px)) !important;
    }
}
@media (max-width: 576px) {
    .content-align-faq {
        margin-left: clamp(16px, 2vw, 24px) !important;
        margin-right: clamp(16px, 2vw, 24px) !important;
        max-width: calc(100vw - clamp(16px, 2vw, 24px) - clamp(16px, 2vw, 24px)) !important;
    }
}
@media (max-width: 480px) {
    .content-align-faq {
        margin-left: 16px !important;
        margin-right: 16px !important;
        max-width: calc(100vw - 32px) !important;
    }
}

/* Container de soluções com .content-align-faq: alinhado ao FAQ/CTA em todas as telas */
.solutions-header-container.content-align-faq {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.solutions-header-container.content-align-faq .solutions-title,
.solutions-header-container.content-align-faq .solutions-text {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
}

/* ============================================
   ESTILOS DO CARROSSEL
   ============================================ */
/* Wrapper: sobe para o carrossel começar atrás da navbar (topnav “acima” do carrossel) */
.hero-carousel-wrapper {
    margin-top: 1px;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}
@media (max-width: 992px) {
    .hero-carousel-wrapper { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 768px) {
    .hero-carousel-wrapper { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 480px) {
    .hero-carousel-wrapper { padding-left: 12px; padding-right: 12px; }
}

/* Proporção fixa do carrossel (1856x892); sem margin-top para ficar atrás da navbar */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 1856px;
    height: auto;
    aspect-ratio: 1856 / 892;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    border: none;
    overflow: hidden;
    opacity: 1;
    box-sizing: border-box;
    transition: height 0.3s ease !important;
    z-index: 1;
    isolation: isolate;
}

/* Telas grandes: manter proporção */
@media (max-width: 1920px) {
    .hero-carousel {
        width: 100% !important;
        max-width: 1856px !important;
        height: auto !important;
        aspect-ratio: 1856 / 892 !important;
        margin-top: 0 !important;
    }
}
@media (max-width: 1400px) {
    .hero-carousel {
        margin-top: 0 !important;
    }
}
@media (max-width: 992px) {
    .hero-carousel {
        margin-top: 0 !important;
    }
}
@media (max-width: 768px) {
    .hero-carousel {
        margin-top: 0 !important;
    }
}
@media (max-width: 480px) {
    .hero-carousel {
        margin-top: 0 !important;
    }
}
 .hero-carousel .carousel-item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-carousel .carousel-item.active {
    opacity: 1;
    z-index: 2;
}

/* Durante a transição fade, ambas as imagens ficam visíveis simultaneamente */
.hero-carousel.carousel-fade .carousel-item.carousel-item-next:not(.carousel-item-start),
.hero-carousel.carousel-fade .carousel-item.carousel-item-prev:not(.carousel-item-end) {
    display: flex;
    z-index: 3;
}

/* Imagem que está entrando - começa a aparecer durante fade */
.hero-carousel.carousel-fade .carousel-item.carousel-item-next:not(.carousel-item-start) {
    opacity: 0;
}

/* Imagem que está saindo - mantém visível durante fade out (crossfade) */
.hero-carousel.carousel-fade .carousel-item.active.carousel-item-end {
    opacity: 1;
    z-index: 3;
}

/* Quando a próxima imagem se torna ativa - fade in completo */
.hero-carousel.carousel-fade .carousel-item.carousel-item-next.active {
    opacity: 1;
    z-index: 2;
}

/* Para transição reversa (prev) - imagem que está entrando */
.hero-carousel.carousel-fade .carousel-item.carousel-item-prev:not(.carousel-item-end) {
    opacity: 0;
}

/* Imagem que está saindo - mantém visível durante fade out (crossfade) */
.hero-carousel.carousel-fade .carousel-item.active.carousel-item-start {
    opacity: 1;
    z-index: 3;
}

/* Quando a imagem anterior se torna ativa - fade in completo */
.hero-carousel.carousel-fade .carousel-item.carousel-item-prev.active {
    opacity: 1;
    z-index: 2;
}

/* Imagens inteiras visíveis, sem corte - contain com fundo preto nas faixas (opacity/transition estão em global.css para todas as img) */
.hero-carousel .carousel-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}
 .hero-carousel .carousel-inner {
    height: 100%;
    position: relative;
    overflow: hidden;
}
 .hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    display: none;
    /* Ocultar controles por enquanto */
}
 .hero-carousel .carousel-indicators {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    gap: 8px;
    z-index: 10;
}
 .hero-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 2px solid #B0B0B0;
    opacity: 0.5;
    margin: 0;
    padding: 0;
    text-indent: 0;
    flex-shrink: 0;
}
 .hero-carousel .carousel-indicators button.active {
    background-color: #000000;
    opacity: 1;
    border-color: #000000;
}
 /* Carrossel - min-height dos itens em telas menores (proporção já definida acima) */
@media (max-width: 1200px) {
    .hero-carousel .carousel-item {
        min-height: 400px;
    }
}
@media (max-width: 768px) {
    .hero-carousel .carousel-item {
        min-height: 300px;
    }
}
@media (max-width: 480px) {
    .hero-carousel .carousel-item {
        min-height: 250px;
    }
}
 /* ============================================
   ESTILOS DO NÚMERO 15 E TEXTO
   ============================================ */
.stat-container-15 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 .stat-number-15 {
    width: clamp(100px, 10vw, 139px);
    height: auto;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(6px, 0.8vh, 8px) !important;
    transition: font-size 0.3s ease !important;
}
 .stat-text-15 {
    width: 242px;
    height: auto;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px !important;
    line-height: 120% !important;
    letter-spacing: 0%;
    text-align: center;
    color: #B0B0B0;
    margin-top: 0;
}
 .stat-text-15 strong {
    font-weight: 700;
    font-size: 16px !important;
    line-height: 120% !important;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}
 /* ============================================
   ESTILOS DO NÚMERO +1000 E TEXTO
   ============================================ */
.stat-container-1000 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 .stat-number-1000 {
    width: clamp(100px, 10vw, 139px);
    height: auto;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(6px, 0.8vh, 8px) !important;
    transition: font-size 0.3s ease !important;
}
 .stat-text-1000 {
    width: 242px;
    height: auto;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px !important;
    line-height: 120% !important;
    letter-spacing: 0%;
    text-align: center;
    color: #B0B0B0;
    margin-top: 0;
}
 .stat-text-1000 strong {
    font-weight: 700;
    font-size: 16px !important;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}
 /* ============================================
   ESTILOS DO NÚMERO +50 E TEXTO
   ============================================ */
.stat-container-50 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 .stat-number-50 {
    width: clamp(100px, 10vw, 139px);
    height: auto;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(6px, 0.8vh, 8px) !important;
    transition: font-size 0.3s ease !important;
}
 .stat-text-50 {
    width: 242px;
    height: auto;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px !important;
    line-height: 120% !important;
    letter-spacing: 0%;
    text-align: center;
    color: #B0B0B0;
    margin-top: 0;
}
 .stat-text-50 strong {
    font-weight: 700;
    font-size: 16px !important;
    line-height: 120% !important;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}
 /* ============================================
   ESTILOS DO NÚMERO 80% E TEXTO
   ============================================ */
.stat-container-80 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 .stat-number-80 {
    width: clamp(100px, 10vw, 139px);
    height: auto;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(6px, 0.8vh, 8px) !important;
    transition: font-size 0.3s ease !important;
}
 .stat-text-80 {
    width: 242px;
    height: auto;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px !important;
    line-height: 120% !important;
    letter-spacing: 0%;
    text-align: center;
    color: #B0B0B0;
    margin-top: 0;
}
 .stat-text-80 strong {
    font-weight: 700;
    font-size: 16px !important;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}
 /* Responsividade geral para todas as estatísticas */
@media (max-width: 1600px) {
    .stats-container {
        padding: 0 15px;
    }
     .stats-container .col {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}
 @media (max-width: 1400px) {
    .stats-container {
        padding: 0 15px;
    }
     .stat-number-15,
    .stat-number-1000,
    .stat-number-50,
    .stat-number-80 {
        font-size: 85px !important;
    }
     .stat-text-15,
    .stat-text-1000,
    .stat-text-50,
    .stat-text-80 {
        width: 100%;
        max-width: 220px;
        font-size: 15px !important;
    }
     .stat-text-15 strong,
    .stat-text-1000 strong,
    .stat-text-50 strong,
    .stat-text-80 strong {
        font-size: 15px !important;
    }
}
 @media (max-width: 1200px) {
     .stat-number-15,
    .stat-number-1000,
    .stat-number-50,
    .stat-number-80 {
        font-size: 96px;
    }
     .stat-text-15,
    .stat-text-1000,
    .stat-text-50,
    .stat-text-80 {
        max-width: 200px;
        font-size: 14px !important;
    }
     .stat-text-15 strong,
    .stat-text-1000 strong,
    .stat-text-50 strong,
    .stat-text-80 strong {
        font-size: 14px !important;
    }
}
 @media (max-width: 992px) {
    .stats-partnerships-section {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
     .stats-container .col {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
     .stat-number-15,
    .stat-number-1000,
    .stat-number-50,
    .stat-number-80 {
        font-size: 80px;
        margin-bottom: 6px !important;
    }
     .stat-text-15,
    .stat-text-1000,
    .stat-text-50,
    .stat-text-80 {
        max-width: 180px;
        font-size: 13px !important;
    }
     .stat-text-15 strong,
    .stat-text-1000 strong,
    .stat-text-50 strong,
    .stat-text-80 strong {
        font-size: 13px !important;
    }
}
 @media (max-width: 768px) {
    .stats-partnerships-section {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
     .stats-container {
        padding: 0 15px;
    }
     .stats-container .row {
        --bs-gutter-x: 0.5rem !important;
    }
     .stat-number-15,
    .stat-number-1000,
    .stat-number-50,
    .stat-number-80 {
        font-size: 56px !important;
        margin-bottom: 8px !important;
    }
     .stat-text-15,
    .stat-text-1000,
    .stat-text-50,
    .stat-text-80 {
        max-width: 100% !important;
        font-size: 12px !important;
        line-height: 140% !important;
    }
    
    .stat-text-15 strong,
    .stat-text-1000 strong,
    .stat-text-50 strong,
    .stat-text-80 strong {
        font-size: 12px !important;
    }
}
 @media (max-width: 576px) {
    .stats-container .row {
        flex-wrap: wrap;
        justify-content: center;
    }
     .stats-container .col {
        flex: 0 0 auto;
        width: 50%;
        margin-bottom: 20px;
    }
    
    .stat-number-15,
    .stat-number-1000,
    .stat-number-50,
    .stat-number-80 {
        font-size: 48px !important;
        margin-bottom: 8px !important;
    }
     .stat-text-15,
    .stat-text-1000,
    .stat-text-50,
    .stat-text-80 {
        max-width: 100% !important;
        font-size: 11px !important;
        line-height: 140% !important;
    }
    
    .stat-text-15 strong,
    .stat-text-1000 strong,
    .stat-text-50 strong,
    .stat-text-80 strong {
        font-size: 11px !important;
    }
     .stat-number-15,
    .stat-number-1000,
    .stat-number-50,
    .stat-number-80 {
        font-size: 48px !important;
        margin-bottom: 8px !important;
    }
     .stat-text-15,
    .stat-text-1000,
    .stat-text-50,
    .stat-text-80 {
        max-width: 100% !important;
        font-size: 11px !important;
        line-height: 140% !important;
    }
     .stat-text-15 strong,
    .stat-text-1000 strong,
    .stat-text-50 strong,
    .stat-text-80 strong {
        font-size: 11px !important;
    }
}
 @media (max-width: 480px) {
    .stats-container {
        padding: 0 10px !important;
    }
     .stat-number-15,
    .stat-number-1000,
    .stat-number-50,
    .stat-number-80 {
        font-size: clamp(32px, 6vw, 48px) !important;
        margin-bottom: clamp(4px, 0.6vh, 6px) !important;
    }
     .stat-text-15,
    .stat-text-1000,
    .stat-text-50,
    .stat-text-80 {
        max-width: 100% !important;
        font-size: 10px !important;
        line-height: 140% !important;
    }
     .stat-text-15 strong,
    .stat-text-1000 strong,
    .stat-text-50 strong,
    .stat-text-80 strong {
        font-size: 10px !important;
    }
}
 /* ============================================
   SEÇÃO: ESTATÍSTICAS E PARCERIAS
   ============================================ */
.stats-partnerships-section {
    position: relative;
    width: calc(100% - 270px);
    max-width: calc(100vw - 270px);
    margin-left: 135px;
    margin-right: 135px;
    box-sizing: border-box;
}
 .stats-container {
    width: 100%;
    max-width: 1400px;
    height: auto;
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 80px;
}
 /* Reduzir espaçamento entre colunas */
.stats-container .row {
    --bs-gutter-x: 0.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
 .stats-container .col {
    padding-left: 8px !important;
    padding-right: 8px !important;
}
 .partnerships-container {
    width: 100%;
    max-width: 860px;
    height: auto;
    min-height: 202px;
    position: relative;
    margin: 0 auto;
    padding: 20px;
    border: none;
    box-sizing: border-box;
}
 .partnerships-content {
    display: flex;
    gap: 106px !important;
}
 .partnership-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}
 /* ============================================
   ESTILOS DOS BOXES DE PARCERIAS
   ============================================ */
.partnership-box {
    border: 1px solid #FFFFFF;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px !important;
    height: 92px !important;
    margin-bottom: 10px;
    background-color: #000000;
    flex-shrink: 0;
    box-sizing: border-box;
}
 .partnership-box:has(img) {
    padding: 0;
}
 .partnership-box img {
    max-width: 100%;
    height: auto;
    border: none;
}
 .partnership-box-text {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}
 .partnership-text {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px !important;
    line-height: 1.4;
    color: #B0B0B0;
    text-align: center;
    margin: 0;
    margin-top: 10px;
}
 .partnership-text strong {
    font-weight: 700;
    font-size: 16px !important;
    color: #FFFFFF;
}
 /* Responsividade para os boxes de parcerias */
@media (max-width: 768px) {
    .partnership-box {
        min-height: 80px;
        padding: 15px;
    }
     .partnership-box-text {
        font-size: 14px;
    }
     .partnership-text {
        font-size: 14px;
    }
}
 @media (max-width: 480px) {
    .partnership-box {
        min-height: 60px;
        padding: 10px;
    }
     .partnership-box-text {
        font-size: 12px;
    }
     .partnership-text {
        font-size: 12px;
    }
}
 /* ============================================
   ESTILOS DO TÍTULO INTRODUTÓRIO
   ============================================ */
.intro-title-section {
    width: auto !important;
    max-width: calc(100% - 310px);
    height: auto !important;
    margin-left: 155px;
    margin-right: 155px;
    margin-bottom: 40px;
    padding-top: 80px !important;
    padding-bottom: 60px !important;
    transition: margin-left 0.3s ease, margin-right 0.3s ease !important;
}
 .intro-title-text {
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: 28px !important;
    line-height: 100% !important;
    letter-spacing: 0px !important;
    color: #000000 !important;
    text-align: left !important;
    margin: 0;
}
 /* Responsividade para o título introdutório */
@media (max-width: 1400px) {
    .intro-title-section {
        margin-left: clamp(100px, 12vw, 155px) !important;
        margin-right: clamp(100px, 12vw, 155px) !important;
        max-width: calc(100% - clamp(200px, 24vw, 310px)) !important;
    }
}
 @media (max-width: 1200px) {
    .intro-title-section {
        width: 100% !important;
        max-width: calc(100% - clamp(100px, 14vw, 210px)) !important;
        height: auto !important;
        margin-left: clamp(50px, 7vw, 105px) !important;
        margin-right: clamp(50px, 7vw, 105px) !important;
        padding: 0 clamp(20px, 3vw, 40px) !important;
    }
}
 @media (max-width: 992px) {
    .intro-title-section {
        width: 100% !important;
        max-width: calc(100% - clamp(80px, 12vw, 125px)) !important;
        margin-left: clamp(40px, 6vw, 62px) !important;
        margin-right: clamp(40px, 6vw, 62px) !important;
    }
}
 @media (max-width: 768px) {
    .intro-title-section {
        margin-left: clamp(16px, 3vw, 32px) !important;
        margin-right: clamp(16px, 3vw, 32px) !important;
    }
     .intro-title-text {
        font-size: 24px !important;
        margin: 0 !important;
        text-align: left !important;
    }
}
 @media (max-width: 576px) {
    .intro-title-section {
        margin-left: clamp(12px, 2.5vw, 24px) !important;
        margin-right: clamp(12px, 2.5vw, 24px) !important;
    }
}
 @media (max-width: 480px) {
    .intro-title-section {
        margin-left: clamp(12px, 2vw, 20px) !important;
        margin-right: clamp(12px, 2vw, 20px) !important;
    }
     .intro-title-text {
        font-size: 18px !important;
        margin: 0 !important;
        text-align: left !important;
    }
}
 /* ============================================
   ESTILOS DA COLUNA 1
   ============================================ */
body h2.column1-title,
body .column1-title {
    width: 100% !important;
    max-width: 545px !important;
    height: auto !important;
    min-height: 160px;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 600 !important;
    font-size: 21px !important;
    line-height: 120% !important;
    letter-spacing: -0.01em !important;
    color: #000000 !important;
    margin: 0;
    margin-bottom: -60px !important;
}
/* Mobile: título e texto um abaixo do outro, sem sobreposição (vence margin-bottom negativo) */
@media (max-width: 991px) {
    .row.g-4.pb-5 .column1-title,
    .row.g-4.pb-5 .column2-title,
    .row.g-4.pb-5 .column3-title {
        margin-bottom: 16px !important;
    }
    .row.g-4.pb-5 .column1-text,
    .row.g-4.pb-5 .column2-text,
    .row.g-4.pb-5 .column3-text {
        margin-top: 0 !important;
    }
}
 .column1-text {
    width: 100% !important;
    max-width: 545px !important;
    height: auto !important;
    min-height: 40px;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 140% !important;
    letter-spacing: 0% !important;
    color: #595959 !important;
    margin: 0;
}
 /* Responsividade para a coluna 1 */
@media (max-width: 992px) {
     .column1-title,
    .column1-text {
        max-width: 100% !important;
    }
}
 @media (max-width: 576px) {
    .col-12.col-lg-4.col-md-6.col-sm-12 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
 @media (max-width: 768px) {
    body .column1-title {
        font-size: 28px !important;
        min-height: auto;
        line-height: 130% !important;
        margin-bottom: 20px !important;
    }
     .column1-text {
        font-size: 15px !important;
        min-height: auto;
        margin-top: 0 !important;
    }
}
 @media (max-width: 576px) {
    body .column1-title {
        font-size: 24px !important;
        line-height: 135% !important;
        margin-bottom: 16px !important;
    }
     .column1-text {
        font-size: 14px !important;
        margin-top: 0 !important;
    }
}
 @media (max-width: 480px) {
    body .column1-title {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
     .column1-text {
        font-size: 13px !important;
        margin-top: 0 !important;
    }
}
 /* ============================================
   ESTILOS DA COLUNA 2
   ============================================ */
body h2.column2-title,
body .column2-title {
    width: 100% !important;
    max-width: 546px !important;
    height: auto !important;
    min-height: 160px;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 600 !important;
    font-size: 21px !important;
    line-height: 120% !important;
    letter-spacing: -0.01em !important;
    color: #000000 !important;
    margin: 0;
    margin-bottom: -60px !important;
}
 .column2-text {
    width: 100% !important;
    max-width: 546px !important;
    height: auto !important;
    min-height: 40px;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 140% !important;
    letter-spacing: 0% !important;
    color: #595959 !important;
    margin: 0;
}
 /* Responsividade para a coluna 2 */
@media (max-width: 992px) {
     .column2-title,
    .column2-text {
        max-width: 100% !important;
    }
}
 @media (max-width: 768px) {
    body .column2-title {
        font-size: 28px !important;
        min-height: auto;
        line-height: 130% !important;
        margin-bottom: 20px !important;
    }
     .column2-text {
        font-size: 15px !important;
        min-height: auto;
        margin-top: 0 !important;
    }
}
 @media (max-width: 576px) {
    body .column2-title {
        font-size: 24px !important;
        line-height: 135% !important;
        margin-bottom: 16px !important;
    }
     .column2-text {
        font-size: 14px !important;
        margin-top: 0 !important;
    }
}
 @media (max-width: 480px) {
    body .column2-title {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
     .column2-text {
        font-size: 13px !important;
        margin-top: 0 !important;
    }
}
 /* ============================================
   ESTILOS DA COLUNA 3
   ============================================ */
body h2.column3-title,
body .column3-title {
    width: 100% !important;
    max-width: 545px !important;
    height: auto !important;
    min-height: 160px;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 600 !important;
    font-size: 21px !important;
    line-height: 120% !important;
    letter-spacing: -0.01em !important;
    color: #000000 !important;
    margin: 0;
    margin-bottom: -60px !important;
}
 .column3-text {
    width: 100% !important;
    max-width: 545px !important;
    height: auto !important;
    min-height: 40px;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 140% !important;
    letter-spacing: 0% !important;
    color: #595959 !important;
    margin: 0;
}
 /* Responsividade para a coluna 3 */
@media (max-width: 992px) {
     .column3-title,
    .column3-text {
        max-width: 100% !important;
    }
}
 @media (max-width: 768px) {
    body .column3-title {
        font-size: 28px !important;
        min-height: auto;
        line-height: 130% !important;
        margin-bottom: 20px !important;
    }
     .column3-text {
        font-size: 15px !important;
        min-height: auto;
        margin-top: 0 !important;
    }
}
 @media (max-width: 576px) {
    body .column3-title {
        font-size: 24px !important;
        line-height: 135% !important;
        margin-bottom: 16px !important;
    }
     .column3-text {
        font-size: 14px !important;
        margin-top: 0 !important;
    }
}
 @media (max-width: 480px) {
    body .column3-title {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
     .column3-text {
        font-size: 13px !important;
        margin-top: 0 !important;
    }
}
 /* ============================================
   ESTILOS DA SEÇÃO DE SOLUÇÕES
   ============================================ */
body h2.solutions-title,
body .solutions-title {
    width: 100% !important;
    max-width: calc(100vw - 130px) !important;
    height: auto !important;
    min-height: clamp(60px, 8vh, 118px) !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 500 !important;
    font-size: clamp(28px, 4vw, 45px) !important;
    line-height: 114% !important;
    letter-spacing: -0.04em !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    margin-bottom: 0px !important;
    margin-left: 60px !important;
    margin-right: 60px !important;
    box-sizing: border-box !important;
    transition: font-size 0.3s ease, margin-left 0.3s ease, margin-right 0.3s ease !important;
}
 /* Garantir ordem correta no mobile - sobrescrever qualquer regra desktop */
@media (max-width: 1200px) {
    body h2.solutions-title,
    body .solutions-title {
        font-size: clamp(32px, 3.5vw, 40px) !important;
        max-width: calc(100vw - clamp(40px, 8vw, 120px)) !important;
        margin-left: clamp(20px, 4vw, 60px) !important;
        margin-right: clamp(20px, 4vw, 60px) !important;
    }
     .solutions-text {
        font-size: clamp(20px, 2.5vw, 28px) !important;
        max-width: calc(100vw - clamp(40px, 8vw, 120px)) !important;
        margin-left: clamp(20px, 4vw, 60px) !important;
        margin-right: clamp(20px, 4vw, 60px) !important;
    }
}
 @media (max-width: 991.98px) {
    body h2.solutions-title,
    body .solutions-title {
        height: auto !important;
        min-height: auto !important;
        margin-bottom: clamp(16px, 2vh, 24px) !important;
        max-width: calc(100vw - clamp(32px, 6vw, 80px)) !important;
        margin-left: clamp(16px, 3vw, 40px) !important;
        margin-right: clamp(16px, 3vw, 40px) !important;
    }
     .solutions-text {
        height: auto !important;
        min-height: auto !important;
        margin-top: 0 !important;
        max-width: calc(100vw - clamp(32px, 6vw, 80px)) !important;
        margin-left: clamp(16px, 3vw, 40px) !important;
        margin-right: clamp(16px, 3vw, 40px) !important;
    }
}
 body h2.solutions-title:not(.h1):not(.h3):not(.h4):not(.h5),
body h2.solutions-title.h3,
body section h2.solutions-title,
body .container h2.solutions-title {
    font-size: clamp(28px, 4vw, 45px) !important;
}
 .solutions-text {
    width: 100% !important;
    max-width: calc(100vw - 130px) !important;
    height: auto !important;
    min-height: clamp(60px, 8vh, 120px) !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 150 !important;
    font-size: clamp(18px, 3vw, 32px) !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #B0B0B0 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-left: 60px !important;
    margin-right: 60px !important;
    box-sizing: border-box !important;
    transition: font-size 0.3s ease, margin-left 0.3s ease, margin-right 0.3s ease !important;
}
 /* Responsividade para a seção de soluções - breakpoints intermediários para transições suaves */
@media (max-width: 1400px) {
    body .solutions-title {
        width: 100% !important;
        max-width: calc(100vw - clamp(70px, 13vw, 130px)) !important;
        height: auto !important;
        font-size: clamp(36px, 3.5vw, 42px) !important;
        margin-left: clamp(35px, 6.5vw, 60px) !important;
        margin-right: clamp(35px, 6.5vw, 60px) !important;
    }
     .solutions-text {
        width: 100% !important;
        max-width: calc(100vw - clamp(70px, 13vw, 130px)) !important;
        height: auto !important;
        font-size: clamp(20px, 2.5vw, 24px) !important;
        margin-left: clamp(35px, 6.5vw, 60px) !important;
        margin-right: clamp(35px, 6.5vw, 60px) !important;
    }
}
 @media (max-width: 992px) {
    body .solutions-title {
        font-size: clamp(30px, 4vw, 38px) !important;
        max-width: calc(100vw - clamp(32px, 6vw, 80px)) !important;
        margin-left: clamp(16px, 3vw, 40px) !important;
        margin-right: clamp(16px, 3vw, 40px) !important;
    }
     .solutions-text {
        font-size: clamp(18px, 2.5vw, 24px) !important;
        max-width: calc(100vw - clamp(32px, 6vw, 80px)) !important;
        margin-left: clamp(16px, 3vw, 40px) !important;
        margin-right: clamp(16px, 3vw, 40px) !important;
    }
}
 @media (max-width: 768px) {
    body .solutions-title {
        font-size: clamp(24px, 5vw, 36px) !important;
        max-width: calc(100vw - clamp(32px, 6vw, 64px)) !important;
        margin-left: clamp(16px, 3vw, 32px) !important;
        margin-right: clamp(16px, 3vw, 32px) !important;
    }
     .solutions-text {
        font-size: clamp(16px, 2.5vw, 20px) !important;
        max-width: calc(100vw - clamp(32px, 6vw, 64px)) !important;
        margin-left: clamp(16px, 3vw, 32px) !important;
        margin-right: clamp(16px, 3vw, 32px) !important;
    }
}
 @media (max-width: 576px) {
    body .solutions-title {
        font-size: clamp(22px, 5vw, 30px) !important;
        max-width: calc(100vw - clamp(24px, 5vw, 48px)) !important;
        margin-left: clamp(12px, 2.5vw, 24px) !important;
        margin-right: clamp(12px, 2.5vw, 24px) !important;
    }
     .solutions-text {
        font-size: clamp(14px, 2.5vw, 18px) !important;
        max-width: calc(100vw - clamp(24px, 5vw, 48px)) !important;
        margin-left: clamp(12px, 2.5vw, 24px) !important;
        margin-right: clamp(12px, 2.5vw, 24px) !important;
    }
}
 @media (max-width: 480px) {
    body .solutions-title {
        font-size: clamp(20px, 5vw, 28px) !important;
        max-width: calc(100vw - clamp(24px, 4vw, 40px)) !important;
        margin-left: clamp(12px, 2vw, 20px) !important;
        margin-right: clamp(12px, 2vw, 20px) !important;
    }
     .solutions-text {
        font-size: clamp(14px, 2.5vw, 16px) !important;
        max-width: calc(100vw - clamp(24px, 4vw, 40px)) !important;
        margin-left: clamp(12px, 2vw, 20px) !important;
        margin-right: clamp(12px, 2vw, 20px) !important;
    }
}
 /* ============================================
   ESTILOS DO TÍTULO AGÊNCIA
   ============================================ */
.agency-title {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: clamp(30px, 3vh, 40px) !important;
    /* Altura mínima para alinhamento */
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: 30px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #FFFFFF !important;
    margin: 0;
    margin-bottom: clamp(16px, 2vh, 20px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    transition: font-size 0.3s ease, margin-bottom 0.3s ease !important;
}
 /* Sobrescreve h3/_astro (64px/96px): título Agência em 30px */
body .agency-title,
body h3.agency-title {
    font-size: 30px !important;
}
 /* Responsividade para o título Agência - mantém 30px */
@media (max-width: 992px) {
    .agency-title,
    body h3.agency-title {
        font-size: 30px !important;
    }
}
 @media (max-width: 768px) {
    .agency-title,
    body h3.agency-title {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        font-size: 30px !important;
    }
     .campaigns-custom-text {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        /* Altura automática em telas menores */
    }
}
 @media (max-width: 576px) {
    .agency-title,
    body h3.agency-title {
        font-size: 30px !important;
    }
}
 @media (max-width: 480px) {
    .agency-title,
    body h3.agency-title {
        font-size: 30px !important;
    }
}
/* Mobile: 15px de distância entre o texto e o botão "Fale com a gente" em todos os cards da seção de produtos */
@media (max-width: 991px) {
    .home-products-row .d-flex.flex-column > div.mb-5.mb-sm-0,
    .home-products-row .home-product-cta-spacer {
        margin-top: 15px !important;
    }
}
 /* ============================================
   ESTILOS DO TEXTO DE CAMPANHAS CUSTOMIZADAS
   ============================================ */
.campaigns-custom-text {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: clamp(60px, 8vh, 80px) !important;
    /* Altura mínima igual para alinhamento */
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: clamp(14px, 1.5vw, 16px) !important;
    line-height: 120% !important;
    letter-spacing: 0% !important;
    color: #B0B0B0 !important;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    overflow: hidden;
    transition: font-size 0.3s ease !important;
}
 /* Garantir que as divs dos cards respeitem os limites */
.col-12.col-lg-4.col-md-6.col-sm-12>.d-flex {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
 .col-12.col-lg-4.col-md-6.col-sm-12>.d-flex>.my-5 {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
 /* Responsividade para o texto de campanhas customizadas - breakpoints intermediários */
@media (max-width: 992px) {
    .campaigns-custom-text {
        min-height: clamp(50px, 6vh, 70px) !important;
        font-size: clamp(13px, 1.5vw, 15px) !important;
    }
}
 @media (max-width: 768px) {
    .campaigns-custom-text {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        font-size: clamp(13px, 1.5vw, 14px) !important;
    }
}
 @media (max-width: 576px) {
    .campaigns-custom-text {
        font-size: clamp(12px, 1.5vw, 13px) !important;
    }
}
 @media (max-width: 480px) {
    .campaigns-custom-text {
        font-size: clamp(12px, 1.5vw, 13px) !important;
    }
}
 /* ============================================
   ESTILOS DOS TEXTOS DE INSIGHTS
   ============================================ */
.insights-text-1,
.insights-text-2 {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 80px !important;
    /* Altura mínima igual para alinhamento */
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #B0B0B0 !important;
    margin: 0;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    overflow: hidden;
}
 /* Responsividade para os textos de Insights */
@media (max-width: 768px) {
     .insights-text-1,
    .insights-text-2 {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        font-size: 14px !important;
    }
}
 @media (max-width: 480px) {
     .insights-text-1,
    .insights-text-2 {
        font-size: 12px !important;
    }
}
 /* ============================================
   ESTILOS DA SEÇÃO "RESPIRE"
   ============================================ */
.respire-section {
    margin-left: 135px;
    margin-right: 135px;
    max-width: min(100%, calc(100vw - 270px));
    box-sizing: border-box;
}
 /* ============================================
   ESTILOS DA SEÇÃO "RESPIRAMOS INFLUÊNCIA"
   ============================================ */
/* Remover padding do container e row na seção half-below */
.half-below-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
 .half-below-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}
 .half-below-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
 .half-below-section .row > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
 .half-below-text {
    padding: 0 !important;
    /* margin-left/margin-right vêm de .content-align-faq para alinhar com FAQ */
    transition: margin-left 0.3s ease, margin-right 0.3s ease !important;
    width: auto !important;
    max-width: none !important;
    display: block !important;
}
 body .half-below-text h1,
 body .half-below-text h1.h1 {
    font-size: clamp(48px, 8vw, 96px) !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    margin-left: 0 !important;
    transition: font-size 0.3s ease !important;
}
 /* Responsividade Mobile - Seção "Respire" */
@media (max-width: 992px) {
    .respire-section {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
 /* Responsividade Mobile - Seção "Respiramos influência" - breakpoints intermediários */
 @media (max-width: 1400px) {
     body .half-below-text h1,
     body .half-below-text h1.h1 {
        font-size: clamp(42px, 7vw, 80px) !important;
    }
}
 @media (max-width: 1200px) {
     body .half-below-text h1,
     body .half-below-text h1.h1 {
        font-size: clamp(36px, 6vw, 64px) !important;
    }
}
 @media (max-width: 992px) {
     body .half-below-text h1,
     body .half-below-text h1.h1 {
        font-size: clamp(32px, 5.5vw, 52px) !important;
    }
}
 @media (max-width: 768px) {
    .half-below-text {
        padding: 0 !important;
    }
     body .half-below-text h1,
     body .half-below-text h1.h1 {
        font-size: clamp(40px, 11vw, 52px) !important;
        line-height: 1.2 !important;
        letter-spacing: 0.02em !important;
    }
    
    .hero-imgs-1 {
        margin-bottom: clamp(20px, 3vh, 30px) !important;
    }
}
 @media (max-width: 576px) {
    .half-below-text {
        padding: 0 !important;
    }
     body .half-below-text h1,
     body .half-below-text h1.h1 {
        font-size: clamp(36px, 10vw, 46px) !important;
        line-height: 1.25 !important;
        letter-spacing: 0.02em !important;
    }
}
 @media (max-width: 480px) {
    .half-below-text {
        margin-left: 12px !important;
        margin-right: 12px !important;
        padding: 0 8px !important;
    }
     body .half-below-text h1,
     body .half-below-text h1.h1 {
        font-size: clamp(32px, 9vw, 40px) !important;
        line-height: 1.25 !important;
        letter-spacing: 0.03em !important;
    }
}
 /* Responsividade Mobile - Seção de Estatísticas */
@media (max-width: 768px) {
    .stats-partnerships-section {
        padding-bottom: 60px !important;
        padding-top: 40px !important;
    }
}
 @media (max-width: 480px) {
    .stats-partnerships-section {
        padding-bottom: 30px !important;
        padding-top: 30px !important;
    }
}

/* Ajustes gerais de container em mobile */
@media (max-width: 768px) {
    .container,
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 480px) {
    .container,
    .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}
 /* ============================================
   ESTILOS DA SEÇÃO DE CONTATO
   ============================================ */
body h2.contact-section-title,
body .contact-section-title {
    width: 100% !important;
    max-width: 1392px !important;
    height: auto !important;
    min-height: clamp(20px, 2vh, 25px) !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 500 !important;
    font-size: clamp(24px, 3vw, 36px) !important;
    line-height: 114% !important;
    letter-spacing: -0.05em !important;
    color: #000000 !important;
    margin: 0 !important;
    margin-bottom: clamp(16px, 2vh, 20px) !important;
    display: block !important;
    box-sizing: border-box !important;
    transition: font-size 0.3s ease !important;
}
 .contact-section-button {
    width: 218px !important;
    height: 40px !important;
    border-radius: 50px !important;
    padding: 4px 24px !important;
    background: #FFFFFF !important;
    color: #000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 600 !important;
    border: none !important;
    box-sizing: border-box !important;
}
 /* Responsividade para a seção de contato - breakpoints intermediários */
@media (max-width: 1400px) {
    body .contact-section-title {
        width: 100% !important;
        max-width: min(1392px, calc(100vw - clamp(16px, 2vw, 32px))) !important;
        height: auto !important;
        font-size: clamp(20px, 2.5vw, 28px) !important;
    }
}
 @media (max-width: 992px) {
    body .contact-section-title {
        font-size: clamp(18px, 2.5vw, 24px) !important;
    }
}
 @media (max-width: 768px) {
    body .contact-section-title {
        font-size: clamp(16px, 2.5vw, 20px) !important;
    }
     .contact-section-button {
        width: 100% !important;
        max-width: 218px !important;
    }
}
 @media (max-width: 576px) {
    body .contact-section-title {
        font-size: clamp(15px, 2.5vw, 18px) !important;
    }
}
 @media (max-width: 480px) {
    body .contact-section-title {
        font-size: clamp(14px, 2.5vw, 16px) !important;
    }
}
 /* ============================================
   ESTILOS DA SEÇÃO FAQ
   ============================================ */
.faq-section {
    padding-top: clamp(40px, 6vh, 80px);
    transition: padding-top 0.3s ease !important;
}
 .faq-section .container-fluid {
    margin-left: clamp(16px, 12vw, 185px) !important;
    max-width: calc(100vw - clamp(16px, 12vw, 185px) - clamp(16px, 9vw, 135px)) !important;
    box-sizing: border-box !important;
    transition: margin-left 0.3s ease !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* FAQ row/col sem gutter para alinhar com CTA (.content-align-faq) */
.faq-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.faq-section .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
 body h2.faq-title,
body .faq-title,
body section .faq-title,
body .faq-section h2.faq-title,
body .faq-section .faq-title,
body .faq-section h2,
body section.faq-section h2.faq-title {
    width: 100% !important;
    max-width: min(1392px, calc(100vw - clamp(16px, 12vw, 185px) - clamp(16px, 9vw, 135px))) !important;
    height: auto !important;
    min-height: clamp(30px, 4vh, 45px) !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 500 !important;
    font-size: clamp(24px, 3vw, 32px) !important;
    line-height: 114% !important;
    letter-spacing: -0.04em !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    margin-bottom: clamp(24px, 3vh, 40px) !important;
    box-sizing: border-box !important;
    transition: font-size 0.3s ease, margin-bottom 0.3s ease !important;
}
 /* Forçar font-size para FAQ mesmo com outros estilos */
body .faq-section h2.faq-title:not(.h1):not(.h3):not(.h4):not(.h5),
body .faq-section .faq-title:not(.h1):not(.h3):not(.h4):not(.h5) {
    font-size: clamp(36px, 6vw, 64px) !important;
}
 .faq-subtitle {
    width: 100% !important;
    max-width: min(1160px, calc(100vw - clamp(16px, 12vw, 185px) - clamp(16px, 9vw, 135px))) !important;
    height: auto !important;
    min-height: clamp(30px, 3vh, 40px) !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: clamp(18px, 2.5vw, 24px) !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #B0B0B0 !important;
    margin: 0 !important;
    margin-bottom: clamp(60px, 8vh, 120px) !important;
    box-sizing: border-box !important;
    transition: font-size 0.3s ease, margin-bottom 0.3s ease !important;
}
 .faq-item {
    margin-bottom: 48px;
}
 body h2.faq-question,
body .faq-question {
    width: 100% !important;
    max-width: min(1392px, calc(100vw - clamp(16px, 12vw, 185px) - clamp(16px, 9vw, 135px))) !important;
    height: auto !important;
    min-height: clamp(30px, 3vh, 40px) !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: clamp(18px, 2.5vw, 24px) !important;
    line-height: 110% !important;
    letter-spacing: 0% !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    margin-bottom: clamp(12px, 1.5vh, 16px) !important;
    box-sizing: border-box !important;
    transition: font-size 0.3s ease !important;
}
 .faq-answer,
.faq-section h3.faq-answer {
    width: 100% !important;
    max-width: min(1392px, calc(100vw - clamp(16px, 12vw, 185px) - clamp(16px, 9vw, 135px))) !important;
    height: auto !important;
    min-height: clamp(18px, 2vh, 20px) !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 100% !important;
    letter-spacing: 0.04em !important;
    color: #B0B0B0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    transition: font-size 0.3s ease !important;
}

/* Sobrescreve o h3/.h3 do _astro (letter-spacing: -2px) nas respostas do FAQ */
body section.faq-section .faq-item h3.faq-answer {
    letter-spacing: 0.04em !important;
}
 /* Responsividade para a seção FAQ - breakpoints intermediários */
@media (max-width: 1400px) {
    .faq-section .container-fluid {
        margin-left: clamp(16px, 10vw, 150px) !important;
        max-width: calc(100vw - clamp(16px, 10vw, 150px) - clamp(16px, 8vw, 110px)) !important;
    }
     .faq-title,
    .faq-question,
    .faq-answer {
        width: 100% !important;
        max-width: min(1392px, calc(100vw - clamp(16px, 10vw, 150px) - clamp(16px, 8vw, 110px))) !important;
        height: auto !important;
    }
     .faq-subtitle {
        width: 100% !important;
        max-width: min(1160px, calc(100vw - clamp(16px, 10vw, 150px) - clamp(16px, 8vw, 110px))) !important;
        height: auto !important;
    }
}
 @media (max-width: 1200px) {
    .faq-section .container-fluid {
        margin-left: clamp(16px, 8vw, 100px) !important;
        max-width: calc(100vw - clamp(16px, 8vw, 100px) - clamp(16px, 6vw, 80px)) !important;
    }
     body .faq-section h2.faq-title:not(.h1):not(.h3):not(.h4):not(.h5),
    body .faq-section .faq-title:not(.h1):not(.h3):not(.h4):not(.h5) {
        font-size: clamp(32px, 5vw, 56px) !important;
    }
}
 @media (max-width: 992px) {
    .faq-section .container-fluid {
        margin-left: clamp(16px, 5vw, 60px) !important;
        max-width: calc(100vw - clamp(16px, 5vw, 60px) - clamp(16px, 4vw, 48px)) !important;
    }
     body .faq-section h2.faq-title:not(.h1):not(.h3):not(.h4):not(.h5),
    body .faq-section .faq-title:not(.h1):not(.h3):not(.h4):not(.h5) {
        font-size: clamp(28px, 5vw, 48px) !important;
    }
}
 @media (max-width: 768px) {
    .faq-section .container-fluid {
        margin-left: clamp(16px, 3vw, 32px) !important;
        max-width: calc(100vw - clamp(16px, 3vw, 32px) - clamp(16px, 2vw, 24px)) !important;
    }
     body .faq-section h2.faq-title:not(.h1):not(.h3):not(.h4):not(.h5),
    body .faq-section .faq-title:not(.h1):not(.h3):not(.h4):not(.h5) {
        font-size: clamp(24px, 5vw, 42px) !important;
    }
     body .faq-title {
        font-size: clamp(20px, 3vw, 28px) !important;
    }
     .faq-subtitle {
        font-size: clamp(16px, 2.5vw, 22px) !important;
    }
     body .faq-question {
        font-size: clamp(16px, 2.5vw, 22px) !important;
    }
     .faq-answer,
     .faq-section h3.faq-answer {
        font-size: 14px !important;
    }
}
 @media (max-width: 576px) {
    .faq-section .container-fluid {
        margin-left: clamp(16px, 2vw, 24px) !important;
        max-width: calc(100vw - clamp(16px, 2vw, 24px) - clamp(16px, 2vw, 24px)) !important;
    }
     body .faq-section h2.faq-title:not(.h1):not(.h3):not(.h4):not(.h5),
    body .faq-section .faq-title:not(.h1):not(.h3):not(.h4):not(.h5) {
        font-size: clamp(22px, 5vw, 36px) !important;
    }
}
 @media (max-width: 480px) {
    .faq-section .container-fluid {
        margin-left: 16px !important;
        max-width: calc(100vw - 32px) !important;
    }
     body .faq-section h2.faq-title:not(.h1):not(.h3):not(.h4):not(.h5),
    body .faq-section .faq-title:not(.h1):not(.h3):not(.h4):not(.h5) {
        font-size: clamp(20px, 5vw, 32px) !important;
    }
     body .faq-title {
        font-size: clamp(18px, 3vw, 24px) !important;
    }
     .faq-subtitle {
        font-size: clamp(14px, 2.5vw, 18px) !important;
    }
     body .faq-question {
        font-size: 20px !important;
    }
     .faq-answer,
     .faq-section h3.faq-answer {
        font-size: 14px !important;
    }
}
 /* ============================================
   ESTILOS DO RODAPÉ
   ============================================ */
body h2.footer-contact-title,
body .footer-contact-title {
    width: 100% !important;
    max-width: min(1792px, calc(100vw - clamp(16px, 3vw, 64px))) !important;
    height: auto !important;
    min-height: clamp(50px, 6vh, 90px) !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: clamp(48px, 8vw, 96px) !important;
    line-height: 100% !important;
    letter-spacing: -0.05em !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    margin-top: clamp(80px, 12vh, 190px) !important;
    margin-bottom: clamp(40px, 6vh, 80px) !important;
    box-sizing: border-box !important;
    transition: font-size 0.3s ease, margin-top 0.3s ease, margin-bottom 0.3s ease !important;
}
 /* Responsividade para o título do rodapé - breakpoints intermediários */
@media (max-width: 1920px) {
    body .footer-contact-title {
        width: 100% !important;
        max-width: min(1792px, calc(100vw - clamp(16px, 3vw, 64px))) !important;
        height: auto !important;
        font-size: clamp(48px, 7vw, 90px) !important;
    }
}
 @media (max-width: 1400px) {
    body .footer-contact-title {
        font-size: clamp(42px, 6vw, 80px) !important;
        margin-top: clamp(60px, 10vh, 150px) !important;
    }
}
 @media (max-width: 992px) {
    body .footer-contact-title {
        font-size: clamp(36px, 6vw, 64px) !important;
        margin-top: clamp(40px, 8vh, 100px) !important;
    }
}
 @media (max-width: 768px) {
    body .footer-contact-title {
        font-size: clamp(32px, 6vw, 56px) !important;
        margin-top: clamp(30px, 6vh, 60px) !important;
        margin-bottom: clamp(30px, 4vh, 50px) !important;
    }
}
 @media (max-width: 576px) {
    body .footer-contact-title {
        font-size: clamp(28px, 6vw, 48px) !important;
    }
}
 @media (max-width: 480px) {
    body .footer-contact-title {
        font-size: clamp(24px, 6vw, 42px) !important;
        margin-top: clamp(20px, 5vh, 40px) !important;
        margin-bottom: clamp(20px, 3vh, 32px) !important;
    }
}
 /* ============================================
  ESTILOS DO RODAPÉ
  ============================================ */
.footer-custom {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}
 .footer-custom .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}
 .footer-custom .row {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-wrap: wrap !important;
}
 .footer-custom .col-sm-12,
.footer-custom .col-md-6,
.footer-custom .col-lg-4 {
    box-sizing: border-box !important;
}
 /* Desktop: padding das colunas do footer */
.footer-custom .container-fluid.footer-container {
    padding-left: 32px !important;
    padding-right: 32px !important;
}
.footer-custom .footer-col-1 {
    padding-left: 0 !important;
    padding-right: 32px !important;
}
.footer-custom .footer-col-2,
.footer-custom .footer-col-3 {
    padding-left: 32px !important;
    padding-right: 32px !important;
}
.footer-custom .footer-col-4 {
    padding-left: 32px !important;
    padding-right: 0 !important;
}
/* Fallback para quando não tiver as classes footer-col-N */
.footer-custom .row>div:first-child:not(.footer-col-1) {
    padding-left: 0 !important;
    padding-right: 10px !important;
}
.footer-custom .row>div:nth-child(2):not(.footer-col-2) {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.footer-custom .row>div:nth-child(3):not(.footer-col-3) {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.footer-custom .row>div:nth-child(4):not(.footer-col-4) {
    padding-left: 10px !important;
    padding-right: 0 !important;
}
 /* Ajustar largura das colunas para melhor composição */
@media (min-width: 992px) {
    .footer-custom .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }
     .footer-custom .col-lg-4 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
        box-sizing: border-box !important;
    }
     .footer-custom .col-lg-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
        box-sizing: border-box !important;
    }
}
 /* ============================================
  ESTILOS DO RODAPÉ - CONTEÚDO
  ============================================ */
.footer-section-title {
    width: 100% !important;
    max-width: 315px !important;
    height: 16px !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    margin: 0 !important;
    margin-bottom: 8px !important;
}
 .footer-section-text {
    width: 100% !important;
    max-width: 366px !important;
    height: auto !important;
    min-height: 80px !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #B0B0B0 !important;
    margin: 0 !important;
    margin-bottom: 10px !important;
}
 .footer-email {
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    color: #FFFFFF !important;
    text-decoration: underline !important;
    margin: 0 !important;
    margin-bottom: 10px !important;
}
 .footer-email a {
    color: #FFFFFF !important;
    text-decoration: underline !important;
}
 .footer-link {
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #FFFFFF !important;
    text-decoration: underline !important;
    cursor: pointer !important;
}
 .footer-link:hover {
    color: #B0B0B0 !important;
}
 .footer-content-title {
    width: 315px !important;
    height: 16px !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #000000 !important;
    text-decoration: none !important;
    margin: 0 !important;
    margin-bottom: 8px !important;
}
 .footer-content-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
 .footer-content-links li {
    margin-bottom: 5px !important;
}
 .footer-content-link {
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #000000 !important;
    text-decoration: underline !important;
}
 .footer-content-link:hover {
    opacity: 0.8 !important;
}
 .footer-social-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
 .footer-social-links li {
    margin-bottom: 5px !important;
}
 .footer-social-link {
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #FFFFFF !important;
    text-decoration: underline !important;
}
 .footer-social-link:hover {
    color: #B0B0B0 !important;
}
 .footer-bottom {
    margin-top: 0px !important;
    padding-top: 0px !important;
    border-top: none !important;
}
 .footer-copyright {
    width: 304px !important;
    height: 20px !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    text-align: left !important;
}
 .footer-privacy-link {
    width: 311px !important;
    height: 20px !important;
    font-family: 'Lexend', Arial, sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    color: #FFFFFF !important;
    text-decoration: underline !important;
    margin: 0 auto !important;
    display: block !important;
    text-align: center !important;
}
 .footer-privacy-link:hover {
    color: #B0B0B0 !important;
}
 .footer-logo-link {
    display: inline-block !important;
    width: 64px !important;
    height: 37px !important;
}
 .footer-logo-link svg {
    width: 64px !important;
    height: 37px !important;
}
 /* Responsividade do rodapé */
@media (max-width: 768px) {
     .footer-section-title,
    .footer-section-text,
    .footer-email,
    .footer-content-link,
    .footer-social-link,
    .footer-copyright,
    .footer-privacy-link {
        font-size: 14px !important;
    }
     .footer-bottom {
        text-align: center !important;
    }
     .footer-bottom .col-lg-4 {
        margin-bottom: 20px !important;
    }
}
 /* ============================================
   ESTILOS DO SELETOR DE TIPO (EMPRESA/CREATOR)
   ============================================ */
.form-type-selector {
    margin-bottom: 24px !important;
}
 .form-type-option {
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    user-select: none !important;
    font-family: 'Lexend', Arial, sans-serif !important;
}
 .form-type-radio {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #000000 !important;
    border-radius: 50% !important;
    margin: 0 !important;
    margin-right: 8px !important;
    position: relative !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    background-color: #FFFFFF !important;
    transition: all 0.2s ease !important;
}
 .form-type-radio:checked {
    background-color: #007BFF !important;
    border-color: #007BFF !important;
}
 .form-type-radio:checked::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #FFFFFF !important;
}
 .form-type-label {
    font-family: 'Lexend', Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #000000 !important;
    cursor: pointer !important;
}
 .form-type-option:hover .form-type-radio {
    border-color: #333333 !important;
}
 .form-type-option:hover .form-type-radio:checked {
    background-color: #0056b3 !important;
    border-color: #0056b3 !important;
}
 .form-type-divider {
    margin: 0 !important;
    margin-top: 16px !important;
    margin-bottom: 24px !important;
    border: none !important;
    border-top: 1px solid #E0E0E0 !important;
    width: 100% !important;
    opacity: 1 !important;
}
 /* Estilos para campos condicionais */
.form-fields-empresa,
.form-fields-creator {
    transition: opacity 0.3s ease;
}
 .form-fields-empresa[style*="display: none"],
.form-fields-creator[style*="display: none"] {
    display: none !important;
}
 .form-fields-empresa[style*="display: none"] input,
.form-fields-empresa[style*="display: none"] select,
.form-fields-empresa[style*="display: none"] textarea,
.form-fields-creator[style*="display: none"] input,
.form-fields-creator[style*="display: none"] select,
.form-fields-creator[style*="display: none"] textarea {
    display: none !important;
}
 /* Barra de Redes Sociais - Altura de 38px */
#contactModal select[name="creator_redes_sociais"] + .select2-container {
    width: 100% !important;
}
 #contactModal select[name="creator_redes_sociais"] + .select2-container .select2-selection {
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    overflow: visible !important;
}
 #contactModal select[name="creator_redes_sociais"] + .select2-container .select2-selection__rendered {
    padding: 2px 8px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 4px !important;
    min-height: 34px !important;
    overflow: visible !important;
}

#contactModal select[name="creator_redes_sociais"] + .select2-container .select2-selection__rendered li {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
}
 #contactModal select[name="creator_redes_sociais"] + .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #6c757d !important;
    margin: 0 !important;
    line-height: 34px !important;
    display: block !important;
    padding-left: 8px !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Garantir que o placeholder apareça quando não há seleções */
#contactModal select[name="creator_redes_sociais"] + .select2-container .select2-selection__rendered:empty::before {
    content: "*Redes Sociais" !important;
    color: #6c757d !important;
    line-height: 34px !important;
    padding-left: 8px !important;
}

/* Quando há placeholder, garantir que ele seja visível */
#contactModal select[name="creator_redes_sociais"] + .select2-container .select2-selection__rendered .select2-selection__placeholder {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Remover asterisco de required que pode aparecer */
#contactModal select[name="creator_redes_sociais"] + .select2-container::after,
#contactModal select[name="creator_redes_sociais"] + .select2-container::before {
    content: none !important;
}

#contactModal .col-12:has(select[name="creator_redes_sociais"])::after,
#contactModal .col-12:has(select[name="creator_redes_sociais"])::before {
    content: none !important;
}

/* Remover qualquer asterisco do small text abaixo */
#contactModal .col-12:has(select[name="creator_redes_sociais"]) small::after,
#contactModal .col-12:has(select[name="creator_redes_sociais"]) small::before {
    content: none !important;
}

/* Garantir que o small text não tenha asteriscos */
#contactModal select[name="creator_redes_sociais"] ~ small.form-text {
    position: relative;
}

#contactModal select[name="creator_redes_sociais"] ~ small.form-text::after,
#contactModal select[name="creator_redes_sociais"] ~ small.form-text::before {
    content: none !important;
}
 #contactModal select[name="creator_redes_sociais"] + .select2-container .select2-selection__choice {
    margin: 0 !important;
    padding: 4px 8px !important;
    font-size: 13px !important;
    background-color: #e9ecef !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.2 !important;
    height: 26px !important;
    max-height: 26px !important;
    position: relative !important;
}

#contactModal select[name="creator_redes_sociais"] + .select2-container .select2-selection__choice__display {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #212529 !important;
    margin-left: 0 !important;
    padding-left: 22px !important;
}

/* Forçar visibilidade de todas as seleções */
#contactModal select[name="creator_redes_sociais"] + .select2-container ul.select2-selection__rendered li.select2-selection__choice {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Campo de busca inline */
#contactModal select[name="creator_redes_sociais"] + .select2-container .select2-search--inline {
    display: inline-block !important;
    width: auto !important;
    min-width: 20px !important;
    flex: 0 0 auto !important;
}

#contactModal select[name="creator_redes_sociais"] + .select2-container .select2-search--inline .select2-search__field {
    width: 20px !important;
    min-width: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 24px !important;
    line-height: 24px !important;
}
 #contactModal select[name="creator_redes_sociais"] + .select2-container .select2-selection__choice__remove {
    margin-right: 8px !important;
    color: #6c757d !important;
    cursor: pointer !important;
    font-size: 18px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    width: 18px !important;
    height: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

#contactModal select[name="creator_redes_sociais"] + .select2-container .select2-selection__choice__remove span {
    font-size: 18px !important;
    font-weight: bold !important;
    line-height: 1 !important;
}
 #contactModal select[name="creator_redes_sociais"] + .select2-container .select2-selection__choice__remove:hover {
    color: #dc3545 !important;
}
 /* Arredondar botão Enviar do formulário */
#contactModal #contactForm button[type="submit"],
#contactModal #contactForm .btn[type="submit"] {
    border-radius: 35px !important;
}
 /* Arredondar levemente os campos do formulário (Empresa e Creator) */
#contactModal #contactForm .form-control,
#contactModal #contactForm input[type="text"],
#contactModal #contactForm input[type="email"],
#contactModal #contactForm input[type="tel"],
#contactModal #contactForm select.form-select,
#contactModal #contactForm textarea {
    border-radius: 3px !important;
}

/* Arredondar também o container do Select2 */
#contactModal #contactForm .select2-container .select2-selection {
    border-radius: 3px !important;
}
 /* Garantir que o dropdown apareça abaixo do campo */
#contactModal select[name="creator_redes_sociais"] + .select2-container .select2-dropdown {
    position: absolute !important;
    top: 100% !important;
    bottom: auto !important;
    margin-top: 1px !important;
    z-index: 9999 !important;
}
 #contactModal select[name="creator_redes_sociais"] + .select2-container.select2-container--open .select2-dropdown {
    position: absolute !important;
    top: 100% !important;
    bottom: auto !important;
}
 /* ============================================
   CSS MOBILE COMPLETO - LAYOUT VERTICAL DO ZERO
   ============================================ */
@media (max-width: 991.98px) {
    /* ============================================
       RESET GERAL - GARANTIR LAYOUT VERTICAL
       ============================================ */
    * {
        max-width: 100% !important;
    }
     /* Remover todos os posicionamentos absolutos que causam sobreposição */
    .stat-container-15,
    .stat-container-1000,
    .stat-container-50,
    .stat-container-80,
    .stats-container,
    .partnerships-container,
    .partnerships-content,
    .partnership-item {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
     /* ============================================
       CONTAINERS E ROWS - SEMPRE EM COLUNA
       ============================================ */
    .container,
    .container-fluid {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
     /* CTA e FAQ: sem padding no wrapper para .content-align-faq / margin do FAQ ficarem a partir da viewport */
    .contact-cta-section .container-fluid,
    .contact-cta-section .contact-cta-wrapper,
    .faq-section .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
     .row {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        --bs-gutter-x: 0 !important;
        --bs-gutter-y: 24px !important;
    }
     /* Todas as colunas ocupam 100% da largura */
    [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 24px !important;
    }
     /* ============================================
       CARROSSEL HERO
       ============================================ */
    .hero-carousel {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 5px !important;
        border-width: 2px !important;
        height: auto !important;
        min-height: 250px !important;
        aspect-ratio: 16 / 9 !important;
    }
     .hero-carousel .carousel-item {
        height: auto !important;
        min-height: 250px !important;
    }
     /* ============================================
       SEÇÃO "RESPIRAMOS INFLUÊNCIA"
       ============================================ */
    .half-below-text {
        width: auto !important;
        max-width: none !important;
        padding: 0 !important;
        margin-bottom: 24px !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
    }
     body .half-below-text h1,
     body .half-below-text h1.h1 {
        font-size: 42px !important;
        line-height: 1.25 !important;
        margin-bottom: 24px !important;
        letter-spacing: 0.02em !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     .hero-imgs-1 {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin-bottom: 40px !important;
        display: block !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }
     /* ============================================
       SEÇÃO DE ESTATÍSTICAS
       ============================================ */
    .stats-partnerships-section {
        width: 100% !important;
        padding-bottom: 60px !important;
        padding-top: 40px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
     .stats-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px !important;
        margin-bottom: 40px !important;
    }
     .stats-container .row {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }
     .stats-container .col {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
        margin-bottom: 32px !important;
    }
     .stat-container-15,
    .stat-container-1000,
    .stat-container-50,
    .stat-container-80 {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 0 !important;
    }
     .stat-number-15,
    .stat-number-1000,
    .stat-number-50,
    .stat-number-80 {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 56px !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }
     .stat-text-15,
    .stat-text-1000,
    .stat-text-50,
    .stat-text-80 {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        text-align: center !important;
        margin-top: 0 !important;
        padding: 0 16px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     .stat-text-15 strong,
    .stat-text-1000 strong,
    .stat-text-50 strong,
    .stat-text-80 strong {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
     /* ============================================
       SEÇÃO DE PARCERIAS
       ============================================ */
    .partnerships-container {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        padding: 20px 16px !important;
        margin: 0 auto !important;
    }
     .partnerships-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }
     .partnership-item {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        margin-bottom: 0 !important;
    }
     .partnership-box {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 80px !important;
        height: auto !important;
        margin-bottom: 16px !important;
        padding: 15px !important;
    }
     .partnership-box img {
        max-width: 100% !important;
        height: auto !important;
    }
     .partnership-text {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        text-align: left !important;
        margin-top: 0 !important;
        padding: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     .partnership-text strong {
        font-size: 14px !important;
    }
     /* ============================================
       SEÇÃO DE TEXTO INTRODUTÓRIO
       ============================================ */
    .intro-title-section {
        width: 100% !important;
        max-width: 100% !important;
        padding: 40px 16px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 32px !important;
    }
     .intro-title-text {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 26px !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        text-align: left !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     /* ============================================
       SEÇÃO DE TRÊS COLUNAS
       ============================================ */
    .col-12.col-lg-4.col-md-6.col-sm-12 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-bottom: 32px !important;
    }
     .column1-title,
    .column2-title,
    .column3-title {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 24px !important;
        line-height: 1.4 !important;
        margin-bottom: 16px !important;
        min-height: auto !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     .column1-text,
    .column2-text,
    .column3-text {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-top: 0 !important;
        min-height: auto !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     /* ============================================
       SEÇÃO DE SOLUÇÕES
       ============================================ */
    section.pb-5.pt-122.pb-122.bg-black {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
     section.pb-5.pt-122.pb-122.bg-black .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-bottom: 32px !important;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        display: block !important;
        position: relative !important;
    }
     /* Garantir que os elementos filhos fiquem em ordem normal */
    section.pb-5.pt-122.pb-122.bg-black .container > * {
        position: relative !important;
        display: block !important;
    }
     /* Garantir que o título venha primeiro - margem mobile igual aos outros textos (12px) */
    section.pb-5.pt-122.pb-122.bg-black .container .solutions-title {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-top: 0 !important;
        margin-bottom: 24px !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
        padding: 0 !important;
        display: block !important;
        position: relative !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     /* Garantir que o texto venha depois do título - margem mobile igual aos outros textos (12px) */
    section.pb-5.pt-122.pb-122.bg-black .container .solutions-text {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        font-size: 16px !important;
        font-weight: 100 !important;
        line-height: 1.5 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
        padding: 0 !important;
        display: block !important;
        position: relative !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     /* Fallback para seletores mais genéricos - margem mobile 12px */
    .solutions-title {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-top: 0 !important;
        margin-bottom: 24px !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
        padding: 0 !important;
        display: block !important;
        position: relative !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     .solutions-text {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        font-size: 16px !important;
        font-weight: 100 !important;
        line-height: 1.5 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
        padding: 0 !important;
        display: block !important;
        position: relative !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     /* Soluções com .content-align-faq: alinhar ao FAQ/CTA (mesma distância), sem margem extra */
    section.pb-5.pt-122.pb-122.bg-black .container.solutions-header-container.content-align-faq .solutions-title,
    section.pb-5.pt-122.pb-122.bg-black .container.solutions-header-container.content-align-faq .solutions-text {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
     /* Container dos cards de soluções */
    section.pb-5.pt-122.pb-122.bg-black .container-fluid {
        padding-top: 0 !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-top: 0 !important;
    }
     /* Cards de soluções */
    .col-12.col-lg-4.col-md-6.col-sm-12.mb-4,
    .col-12.col-lg-4.col-md-6.col-sm-12.mt-lg-104 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: clamp(60px, 8vh, 120px) !important;
        margin-bottom: 32px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
     .agency-title,
     body h3.agency-title {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        font-size: 30px !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     .campaigns-custom-text {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     /* ============================================
       SEÇÃO DE CONTATO (GRADIENTE)
       ============================================ */
    section.py-4.text-white {
        padding-left: 55px !important;
    }
     section.py-4.text-white .container {
        padding-left: 0 !important;
    }
     section.py-4.text-white .ms-auto {
        padding-left: 0 !important;
    }
     .contact-section-title {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 24px !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
        padding-left: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     .contact-section-button {
        width: auto !important;
        margin-left: 0 !important;
    }
     /* ============================================
       SEÇÃO FAQ
       ============================================ */
    .faq-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
     /* FAQ alinhado com .content-align-faq (mesmo recuo que CTA/Soluções) */
     .faq-section .container-fluid {
        margin-left: clamp(16px, 5vw, 60px) !important;
        margin-right: clamp(16px, 4vw, 48px) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: calc(100vw - clamp(16px, 5vw, 60px) - clamp(16px, 4vw, 48px)) !important;
    }
     .faq-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
     .faq-section .col-12 {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
     body .faq-title {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        font-size: 32px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     .faq-subtitle {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 32px !important;
        padding: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     .faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 32px !important;
        padding: 0 !important;
    }
     .faq-question {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        font-size: 18px !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
        padding: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     .faq-answer {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        padding: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
     /* ============================================
       IMAGENS - SEMPRE RESPONSIVAS
       ============================================ */
    img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
     .img-fluid {
        max-width: 100% !important;
        height: auto !important;
    }
     /* ============================================
       TEXTO - SEMPRE QUEBRÁVEL
       ============================================ */
    h1, h2, h3, h4, h5, h6,
    p, span, div, a, button {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
     /* ============================================
       REMOVER FLEX ROW EM MOBILE
       ============================================ */
    .d-flex.flex-row {
        flex-direction: column !important;
    }
     /* ============================================
       ESPAÇAMENTOS ADICIONAIS
       ============================================ */
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
     .container-fluid.px-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
     .container-fluid.px-4 {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
     /* Garantir que nada fique sobreposto */
    * {
        z-index: auto !important;
    }
     /* Exceções apenas para modais e dropdowns */
    .modal,
    .offcanvas,
    .dropdown-menu,
    .select2-dropdown {
        z-index: 1055 !important;
    }
}
 /* ============================================
   MOBILE PEQUENO (até 480px)
   ============================================ */
@media (max-width: 480px) {
    .container,
    .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
     /* Manter alinhamento FAQ/CTA: sem padding extra */
    .faq-section .container-fluid,
    .contact-cta-section .container-fluid,
    .contact-cta-section .contact-cta-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
     body .half-below-text h1,
     body .half-below-text h1.h1 {
        font-size: clamp(32px, 9vw, 40px) !important;
        letter-spacing: 0.03em !important;
    }
     .stat-number-15,
    .stat-number-1000,
    .stat-number-50,
    .stat-number-80 {
        font-size: 48px !important;
    }
     .stat-text-15,
    .stat-text-1000,
    .stat-text-50,
    .stat-text-80 {
        font-size: 13px !important;
    }
     body .solutions-title {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }
     .solutions-text {
        font-size: 14px !important;
        font-weight: 100 !important;
        margin-top: 0 !important;
    }
     section.pb-5.pt-122.pb-122.bg-black .container {
        padding-bottom: 24px !important;
    }
     body .column1-title,
    body .column2-title,
    body .column3-title {
        font-size: 20px !important;
    }
     .column1-text,
    .column2-text,
    .column3-text {
        font-size: 13px !important;
    }
     .agency-title,
     body h3.agency-title {
        font-size: 30px !important;
    }
     .campaigns-custom-text {
        font-size: 13px !important;
    }
     .intro-title-text {
        font-size: 26px !important;
    }
     body .contact-section-title {
        font-size: 20px !important;
    }
     /* ============================================
       FAQ - MOBILE PEQUENO
       ============================================ */
    body .faq-title {
        font-size: 28px !important;
    }
     .faq-subtitle {
        font-size: 14px !important;
        margin-bottom: 24px !important;
    }
     body .faq-question {
        font-size: 16px !important;
    }
     .faq-answer,
     .faq-section h3.faq-answer {
        font-size: 14px !important;
    }
     .faq-item {
        margin-bottom: 24px !important;
    }
}
 /* Estilos para seção de CTA de contato - margem de 135px em telas pequenas */
.contact-cta-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* CTA: wrapper e row sem gutter para título/botão/FAQ na mesma linha de referência */
.contact-cta-section .container-fluid,
.contact-cta-section .contact-cta-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.contact-cta-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
/* Alinhamento pelo .content-align-faq no col-12; conteúdo sem margem extra */
 .contact-cta-section .contact-cta-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ============================================
   MOBILE - CTA de contato e footer
   ============================================ */
@media (max-width: 991.98px) {
    .contact-cta-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .contact-cta-section .contact-cta-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
    }
    .contact-section-title {
        font-size: clamp(18px, 4vw, 24px) !important;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
        text-align: left !important;
        padding-top: 24px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .footer-bottom .footer-copyright,
    .footer-bottom .footer-privacy-link,
    .footer-bottom .footer-logo-link {
        position: static !important;
        transform: none !important;
        left: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .footer-bottom .footer-privacy-link {
        width: auto !important;
        max-width: 100% !important;
        text-align: left !important;
    }
    /* Mobile: ordem = Logo (1) → Política de Privacidade (2) → Todos os direitos (3) */
    .footer-bottom .footer-logo-link {
        order: 1;
    }
    .footer-bottom .footer-privacy-link {
        order: 2;
    }
    .footer-bottom .footer-copyright {
        order: 3;
    }
    .footer-custom .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Mobile: footer mais próximo da borda esquerda (igual aos outros textos) */
@media (max-width: 991.98px) {
    .footer-custom .container-fluid.footer-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .footer-custom .footer-col,
    .footer-custom .footer-col-1,
    .footer-custom .footer-col-2,
    .footer-custom .footer-col-3,
    .footer-custom .footer-col-4,
    .footer-custom .row > div {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

@media (max-width: 576px) {
    .contact-cta-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Mobile: 8px de padding nas laterais do bloco Soluções completas em Marketing de Influência */
@media (max-width: 991.98px) {
    section.pb-5.pt-122.pb-122.bg-black .container.solutions-header-container.content-align-faq,
    section.pb-5.pt-122.pb-122.bg-black .container.solutions-header-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Desktop: container da seção Soluções sem padding (mantém layout original) */
@media (min-width: 992px) {
    section.pb-5.pt-122.pb-122.bg-black .container.solutions-header-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* ============================================
   OVERRIDE _astro: h2 das três colunas (não 96px)
   Seletores de alta especificidade para vencer h2:not(.h1):not(.h3)...
   ============================================ */
.row.g-4.pb-5 h2.column1-title,
.row.g-4.pb-5 h2.column2-title,
.row.g-4.pb-5 h2.column3-title {
    font-size: 21px !important;
    line-height: 120% !important;
    letter-spacing: -0.01em !important;
}
@media (max-width: 768px) {
    .row.g-4.pb-5 h2.column1-title,
    .row.g-4.pb-5 h2.column2-title,
    .row.g-4.pb-5 h2.column3-title {
        font-size: 28px !important;
        line-height: 130% !important;
    }
}
@media (max-width: 576px) {
    .row.g-4.pb-5 h2.column1-title,
    .row.g-4.pb-5 h2.column2-title,
    .row.g-4.pb-5 h2.column3-title {
        font-size: 24px !important;
        line-height: 135% !important;
    }
}
@media (max-width: 480px) {
    .row.g-4.pb-5 h2.column1-title,
    .row.g-4.pb-5 h2.column2-title,
    .row.g-4.pb-5 h2.column3-title {
        font-size: 20px !important;
    }
}

/* ============================================
   OVERRIDE _astro: h2 das perguntas do FAQ (não 96px)
   Apenas .faq-question; o título .faq-title permanece como está.
   Especificidade máxima + .faq-question.h3 para vencer h2:not(.h3) do _astro.
   ============================================ */
section.faq-section .container-fluid .row .col-12 .faq-item h2.faq-question,
.faq-section .faq-item h2.faq-question.h3,
.faq-section .faq-item h2.faq-question {
    font-size: clamp(18px, 2.5vw, 24px) !important;
    line-height: 110% !important;
    font-weight: 300 !important;
}
@media (max-width: 768px) {
    section.faq-section .container-fluid .row .col-12 .faq-item h2.faq-question,
    .faq-section .faq-item h2.faq-question.h3,
    .faq-section .faq-item h2.faq-question {
        font-size: clamp(16px, 2.5vw, 22px) !important;
    }
}
@media (max-width: 480px) {
    section.faq-section .container-fluid .row .col-12 .faq-item h2.faq-question,
    .faq-section .faq-item h2.faq-question.h3,
    .faq-section .faq-item h2.faq-question {
        font-size: 16px !important;
    }
}

/* Forçar 30px nos títulos Agência/Insights/etc. — vence _astro (96px/64px) e qualquer herança */
body section.bg-black .container-fluid .home-products-row h3.agency-title,
body section .home-products-row .col-12 h3.agency-title,
body .agency-title.agency-title,
h3.agency-title.agency-title {
    font-size: 30px !important;
}