/* 
 * main.css - Base de Estilos Móveis União
 * Contém resets, variáveis e estilos globais baseados no layout.
 */

/* =========================================================================
   ## Variáveis CSS (Design System)
========================================================================== */
:root {
    /* Cores Principais baseadas na imagem */
    --color-primary-dark: #315b71;
    /* Azul esverdeado escuro (Backgrounds, Textos escuros) */
    --color-primary-light: #527581;
    /* Variação mais clara do azul */
    --color-accent-gold: #d68a00;
    /* Laranja/Dourado (Logo, Destaques, Ícones) */
    --color-gold-2: #e9cfa0;
    /* Laranja/Dourado (Logo, Destaques, Ícones) */
    --color-whatsapp: #25D366;
    /* Verde WhatsApp */

    /* Cores de Fundo (Backgrounds) */
    --bg-light: #fdfcf9;
    /* Fundo geral muito claro, quase branco */
    --bg-cream: #f4eee9;
    /* Fundo creme das seções */
    --bg-sand: #e9cf9f;
    /* Fundo areia/bege mais escuro */
    --color-cream: #dfc8a5;
    /* Fundo cinza */
    --bg-gray: #f2f2f2;
    /* Adicionando variável para o texto do botão */

    /* Cores de Texto */
    --text-dark: #2a3a42;
    /* Cor padrão para textos escuros */
    --text-light: #ffffff;
    /* Cor para textos sobre fundos escuros */
    --text-muted: #6c757d;
    /* Textos secundários */

    /* Tipografia */
    /* Importando a fonte Montserrat (carregada via enqueue.php) */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Tamanhos de Fonte */
    --fs-xs: 0.75rem;
    /* 12px */
    --fs-sm: 0.875rem;
    /* 14px */
    --fs-base: 1rem;
    /* 16px */
    --fs-md: 1.125rem;
    /* 18px */
    --fs-lg: 1.25rem;
    /* 20px */
    --fs-xl: 1.5rem;
    /* 24px */
    --fs-xxl: 2rem;
    /* 32px */
    --fs-display: 3rem;
    /* 48px */

    /* Espaçamentos (Spacings) */
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 1rem;
    /* 16px */
    --space-4: 1.5rem;
    /* 24px */
    --space-5: 2rem;
    /* 32px */
    --space-6: 3rem;
    /* 48px */
    --space-7: 4rem;
    /* 64px */
    --space-8: 6rem;
    /* 96px */

    /* Curvas de Borda (Border Radius) */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-pill: 9999px;

    /* Sombras (Box Shadows) */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* =========================================================================
   ## Resets Modernos e Globais
========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* Rolagem suave para âncoras */
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* =========================================================================
   ## Tipografia Base
========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-3);
}

h1 {
    font-size: var(--fs-display);
}

h2 {
    font-size: var(--fs-xxl);
}

h3 {
    font-size: var(--fs-xl);
}

h4 {
    font-size: var(--fs-lg);
}

h5 {
    font-size: var(--fs-md);
}

p {
    margin-bottom: var(--space-3);
}

a {
    color: var(--color-accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================================================
   ## Utilitários Base (Complementam o Bootstrap)
========================================================================== */
.text-primary-dark {
    color: var(--color-primary-dark) !important;
}

.text-accent-gold {
    color: var(--color-accent-gold) !important;
}

.bg-primary-dark {
    background-color: var(--color-primary-dark) !important;
}

.bg-accent-gold {
    background-color: var(--color-accent-gold) !important;
}

.bg-cream {
    background-color: var(--bg-cream) !important;
}

.bg-sand {
    background-color: var(--bg-sand) !important;
}

/* Botões Customizados Base */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--text-light);
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =========================================================================
   ## Componentes e Layout Padronizado (Classes Globais)
   Reutilizáveis em qualquer nova seção para manter a harmonia do layout.
========================================================================== */

/* Espaçamento padrão para seções do site */
.section-padding {
    padding: var(--space-8) 0;
}

.section-padding-solucoes {
    padding: var(--space-8) 0 0;
}

/* Título Principal de Seção (Sempre o mesmo tamanho para harmonia) */
.section-title {
    font-size: var(--fs-xl);
    color: var(--color-primary-dark);
    line-height: 1.2;
    font-weight: 800;
}

/* Subtítulo de Seção */
.section-subtitle {
    font-size: var(--fs-base);
    color: var(--color-primary-dark);
    font-weight: 500;
    opacity: 0.8;
}

/* Lista Padrão de Características (Com ícones) */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--fs-base);
    color: var(--color-primary-dark);
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: var(--space-5) 0;
    }

    .section-title {
        font-size: var(--fs-xl);
    }
}

/* Extra small devices (phones) */
@media (max-width: 575.98px) {
    .section-padding {
        padding: var(--space-4) 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: var(--fs-sm);
    }
}

/* =========================================================================
   ## Header e Navegação Suspendida
========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px 0;
    /* Espaçamento levemente reduzido para elegância */
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    /* Permite clicar no que está atrás se o header estiver vazio */
}

/* Estado Scrolled do Header */
.site-header.scrolled {
    background-color: rgba(49, 91, 113, 0.98);
    /* var(--color-primary-dark) com alta opacidade */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: var(--shadow-lg);
}

.header-inner {
    position: relative;
    padding: 10px 10px;
    pointer-events: auto;
    /* Reativa cliques nos elementos internos */
}

/* Logo no Header */
.header-logo {
    max-width: 300px;
    /* Igual ao tamanho que estava no Hero */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-logo {
    max-width: 220px;
    /* Diminui o container do logo ao scrollar */
}

.site-header.scrolled .header-logo img {
    max-height: 45px;
    /* Diminui a altura do logo */
    filter: brightness(0) invert(1);
    /* Torna o logo branco para contraste no fundo escuro */
}

.header-logo img {
    max-height: 60px;
    width: auto;
}


.header-logo-fallback {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-gold-2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menu Toggle (Botão Suspenso) */



.menu-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--color-primary-dark);
    color: var(--color-gold-2);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2100;
    border: 1px solid rgba(233, 207, 160, 0.2);
    /* Borda sutil para definir melhor no fundo escuro */
}

.site-header.scrolled .menu-toggle {
    background-color: var(--color-accent-gold);
    /* Muda a cor do botão para destaque no scroll */
    color: var(--text-light);
    padding: 8px 18px;
}

.site-header.scrolled .menu-text {
    color: var(--text-light);
}

.site-header.scrolled .hamburger-inner,
.site-header.scrolled .hamburger-inner::before,
.site-header.scrolled .hamburger-inner::after {
    background-color: var(--text-light);
}

.menu-toggle:hover {
    transform: translateY(-2px);
    background-color: #2a434d;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.menu-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--color-gold-2);
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--color-gold-2);
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: '';
    top: -8px;
    left: 0;
}

.hamburger-inner::after {
    content: '';
    top: 8px;
    left: 0;
}

/* Estado Ativo do Botão */
.menu-toggle.active {
    background-color: var(--color-accent-gold);
}

.menu-toggle.active .hamburger-inner {
    background-color: transparent;
}

.menu-toggle.active .hamburger-inner::before {
    transform: rotate(45deg);
    top: 0;
    background-color: var(--text-light);
}

.menu-toggle.active .hamburger-inner::after {
    transform: rotate(-45deg);
    top: 0;
    background-color: var(--text-light);
}

.menu-toggle.active .menu-text {
    color: var(--text-light);
}

/* Links de Voltar no Header */
.header-back-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary-dark);
    color: var(--color-gold-2) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(233, 207, 160, 0.2);
    cursor: pointer;
    z-index: 2100;
    line-height: 1;
}

.header-back-link:hover {
    transform: translateY(-2px);
    background-color: #2a434d;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--text-light) !important;
}

.site-header.scrolled .header-back-link {
    background-color: var(--color-accent-gold);
    color: var(--text-light) !important;
    padding: 8px 20px;
}

.back-icon {
    font-size: 1.2rem;
    font-weight: 400;
}

/* Navegação Principal (Dropdown Suspenso) */
.main-navigation {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 250px;
    background: rgba(49, 91, 113, 0.98);
    /* var(--color-primary-dark) com transparência */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2050;
}

.main-navigation.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.main-navigation a {
    display: block;
    color: var(--color-gold-2);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(233, 207, 160, 0.1);
    transition: all 0.3s ease;
}

.main-navigation li:last-child a {
    border-bottom: none;
}

.main-navigation a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.main-navigation .btn-nav {
    margin-top: var(--space-2);
    background-color: var(--color-accent-gold);
    color: var(--text-light) !important;
    text-align: center;
    border-radius: var(--radius-pill);
    border-bottom: none;
}

.main-navigation .btn-nav:hover {
    background-color: var(--text-light);
    color: var(--color-accent-gold) !important;
    padding-left: 0;
}

/* Responsivo */
@media (max-width: 991.98px) {
    .site-header {
        top: 0;
        padding: 15px 0px;
    }


    .main-navigation {
        width: calc(100vw - 30px);
        max-width: 300px;
    }

    .header-logo {
        width: 200px;
    }

    .header-social-top {
        display: none !important;
    }
}

/* =========================================================================
   ## Redes Sociais (Geral)
========================================================================== */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--color-primary-dark);
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.social-icon:hover {
    color: var(--color-accent-gold);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 100%;
    height: auto;
    fill: currentColor;
}

.header-social-top {
    gap: 15px;
}

/* Header Scrolled - Ícones Brancos */
.site-header.scrolled .header-social-top .social-icon {
    color: var(--text-light);
}

.site-header.scrolled .header-social-top .social-icon:hover {
    color: var(--color-gold-2);
}

/* Mobile Menu Social */
.header-social-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.header-social-menu .social-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold-2);
}

.header-social-menu .social-icon:hover {
    color: var(--text-light);
}

/* Footer Social (Agora usando contact-item-new para uniformidade) */
.footer-social-row {
    display: flex;
    gap: var(--space-3);
    align-items: center;
}

.footer-social-row .contact-item-new {
    width: auto;
}

.footer-social-item .contact-icon-circle {
    color: var(--color-primary-dark);
}

.footer-social-item .social-icon {
    width: 18px; /* Ajustado para caber no círculo de 32px */
    height: 18px;
}

.footer-email-new {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

@media (max-width: 991.98px) {
    /* mantém o email visível e bem formatado */
    .footer-email-new {
        display: flex;
        word-break: break-word;
        overflow-wrap: anywhere;
        white-space: normal;
        text-align: center;
    }

   .contact-icon-circle::first {
        display: none;
    }
}


/* =========================================================================
   ## Hero Section (Landing Page)
========================================================================== */
.hero-section {
    position: relative;
    min-height: 600px;
    background-color: var(--bg-light);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
}

.hero-bg-left {
    flex: 0 0 50%;
    background-color: #ffffff;
    height: 100%;
}

.hero-bg-right {
    flex: 0 0 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#heroCarousel {
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.hero-shape-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 81%;
    object-fit: fill;
    object-position: right;
    z-index: 5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 140px;
    padding-bottom: var(--space-6);
}


.hero-logo {
    margin-bottom: var(--space-5);
    max-width: 320px;
    /* Restore size for better visibility */
}

.hero-logo img {
    max-height: 60px;
    /* Force smaller height for logo */
}

.hero-banner {
    position: relative;
    background-color: var(--color-primary-dark);
    color: var(--text-light);
    padding: var(--space-2) var(--space-6) var(--space-2) 0;
    border-radius: 0 100px 100px 0;
    display: block;
    width: calc(100% + 100px);
    /* Extend 100px beyond its 6-column container */
    max-width: none;
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-lg);
    z-index: 15;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100vw;
    background-color: inherit;
}


.hero-banner h1 {
    color: var(--color-gold-2);
    font-size: var(--fs-xxl);
    margin-bottom: 0;
    font-weight: 700;
}

.hero-text-gold {
    color: var(--color-accent-gold);
    line-height: 1.2;
    margin-bottom: var(--space-3);
}

.hero-subtext {
    color: var(--color-accent-gold);
    font-size: var(--fs-base);
    max-width: 400px;
    margin-bottom: var(--space-3);
}

.hero-features {
    font-weight: 900;
    color: var(--color-primary-dark);
    font-size: var(--fs-base);
    margin-bottom: var(--space-4);
}

.hero-features p {
    margin-bottom: var(--space-1);
}

/* Estilo específico para o botão WhatsApp com ícone redondo */
.btn-whatsapp {
    position: relative;
    background-color: var(--color-primary-dark) !important;
    color: var(--color-gold-2) !important;
    padding: 15px 40px 15px 65px !important;
    /* Espaço para o ícone na esquerda */
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem !important;
    text-transform: none !important;
    border-radius: 50px !important;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    border: none;
    line-height: 1;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.btn-whatsapp::before {
    content: "";
    position: absolute;
    left: -10px;
    /* Sobreposição para fora do botão */
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    /* SVG do WhatsApp embutido */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.1 0-65.6-8.9-93.7-25.7l-6.7-4-69.6 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-5.5-2.8-23.2-8.5-44.2-27.1-16.4-14.6-27.4-32.6-30.6-38.1-3.2-5.6-.3-8.6 2.5-11.4 2.5-2.5 5.5-6.5 8.3-9.7 2.8-3.2 3.7-5.5 5.5-9.2 1.9-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 13.3 5.7 23.6 9.2 31.7 11.7 13.3 4.2 25.4 3.6 35 2.2 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
}

.btn-whatsapp:hover {
    background-color: #2a434d !important;
    transform: scale(1.02);
    color: #fff !important;
}



/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        display: block;
        margin-top: 80px;
    }

    .hero-bg-wrapper {
        position: relative;
        height: 300px;
        margin-bottom: var(--space-3);
        flex-direction: column;
        display: flex;
    }

    .hero-bg-left {
        display: none;
    }

    .hero-bg-right {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
    }

    .hero-shape-overlay {
        display: none;
    }

    .hero-content {
        text-align: center;
        padding-top: 0;
    }

    .hero-logo {
        margin: 0 auto var(--space-4);
        max-width: 250px;
    }

    .hero-logo img {
        max-height: 50px;
    }

    .hero-banner {
        margin-left: 0;
        padding: var(--space-3) var(--space-3);
        border-radius: var(--radius-md);
        width: 100%;
        max-width: 100%;
        margin-bottom: var(--space-4);
    }

    .hero-banner h1 {
        font-size: var(--fs-lg);
    }

    .hero-banner::before {
        display: none;
    }

    .hero-subtext {
        font-size: var(--fs-md);
        max-width: 100%;
        margin: 0 auto var(--space-4);
    }

    .hero-features {
        font-size: var(--fs-md);
        margin-bottom: var(--space-5);
    }

    .btn-whatsapp {
        width: 90%;
        padding: 15px 20px 15px 60px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 575.98px) {
    .hero-bg-wrapper {
        height: 280px;
    }

    .hero-banner h1 {
        font-size: var(--fs-md);
    }

    .hero-features {
        font-size: var(--fs-base);
    }
}

/* =========================================================================
   ## Pain Point Section (Sobre Nós)
========================================================================== */
.about-pain-section {
    position: relative;
    background-color: #fff0d8;
    overflow: hidden;
    z-index: 2;
}

.about-bg-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-bg-line img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    opacity: 0.8;
}

.about-pain-section .container {
    position: relative;
    z-index: 10;
}

/* Image Stacking Layout */
.image-stack {
    position: relative;
    padding: 0;
    max-width: 550px;
    margin: 0 auto;
    top: -120px;
}

.image-stack-top {
    width: 350px;
    height: 300px;
    position: relative;
    z-index: 1;
    margin-right: -20%;
}

.image-stack-bottom {
    width: 350px;
    height: 300px;
    position: absolute;
    top: 250px;
    right: 0px;
    z-index: 2;
}

.rounded-large {
    border-radius: 40px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.1;
    box-shadow: var(--shadow-lg);
}

/* Content Styling */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.about-content .feature-list li {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.about-content .feature-list li>span:not(.icon-prohibited) {
    flex: 1;
}

.icon-prohibited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #ff3b30;
    /* More vibrant red */
    border-radius: 50%;
    position: relative;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.icon-prohibited::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #ff3b30;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.about-highlight h3 {
    font-size: var(--fs-xl);
    color: var(--color-primary-dark);
    font-weight: 800;
    line-height: 1.3;
    text-align: start;
}

.about-final {
    font-size: var(--fs-xl);
    color: var(--color-primary-dark);
    font-weight: 800;
    line-height: 1.3;
    text-align: start;
}

/* Decoration Elements (Light Logos) */
.about-pain-section::before,
.about-pain-section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

.about-pain-section::before {
    top: -50px;
    left: -100px;
}

.about-pain-section::after {
    bottom: -50px;
    right: -100px;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .about-pain-section {
        margin: 0;
    }

    .image-stack {
        max-width: 320px;
        margin-bottom: 10px;
        top: 0;
        display: flex;
        justify-content: center;
        height: 340px;
    }

    .image-stack-top {
        width: 220px;
        height: 250px;
        margin-right: -10%;
        left: -60px;
    }

    .image-stack-bottom {
        width: 220px;
        height: 250px;
        top: 130px !important;
        right: 20px;
    }

    .about-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-content .feature-list {
        display: inline-block;
        text-align: left;
        margin: 0 auto var(--space-5) auto;
        padding-left: 0;
        list-style: none;
        display: flex;
        gap: 15px;
    }


    .about-content .feature-list li {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    .about-bg-line {
        display: none;
    }

    .about-content h2,
    .about-highlight h3,
    .about-final,
    .section-subtitle {
        text-align: center !important;
        width: 100%;
    }



    .icon-prohibited {
        margin-right: 10px;
    }
}

@media (max-width: 575.98px) {
    .image-stack {
        max-width: 280px;
        height: 320px;
    }

    .image-stack-top,
    .image-stack-bottom {
        width: 180px;
        height: 200px;
    }

    .image-stack-bottom {
        top: 80px;
    }
}

/* =========================================================================
   ## Diferenciais Section
========================================================================== */
.diferenciais-section {
    background-color: var(--bg-gray);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.diferenciais-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 8px 8px 8px 0px;
    box-shadow: var(--shadow-sm);
}

.diferenciais-icon svg {
    width: 100%;
    height: 100%;
}

.diferenciais-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991.98px) {
    .diferenciais-section {
        text-align: center;
        padding: var(--space-6) 0;
    }

    .diferenciais-section .feature-list li {
        justify-content: center;
        text-align: left;
    }

    .diferenciais-image {
        max-width: 180px;
        margin-top: var(--space-4);
    }
}


/* =========================================================================
   ## Soluções Section
========================================================================== */

.solucoes-section {
    background: url('../images/fundo_solucoes.svg') no-repeat center center var(--bg-gray);
    background-size: cover;
    position: relative;
    overflow: visible;
    z-index: 2;
    margin-bottom: 0px;
}

.solucoes-image {
    width: 100%;
    height: 600px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    top: 100px;
    z-index: 3;
}

@media (max-width: 991.98px) {
    .solucoes-section {
        text-align: center;
        padding-top: var(--space-4);
    }

    .solucoes-image {
        height: 300px;
        top: 0;
        margin-bottom: var(--space-3);
    }

    .solucoes-section .text-end {
        text-align: center !important;
    }
}

@media (max-width: 575.98px) {
    .solucoes-image {
        height: 280px;
    }
}

/* =========================================================================
   ## Passos Section
========================================================================== */

.passos-section {
    background: url('../images/fundo_passos.png') repeat;
    overflow-x: hidden;
}

.passos-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--color-accent-gold);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

/* Novo estilo para ícones com número sobreposto na sessão de passos */
.step-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.step-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-icon-wrapper .step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-accent-gold);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
    z-index: 2;
}

.passos-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 40px;
    display: block;
}

@media (min-width: 992px) {
    .passos-image {
        width: 70vw;
        max-width: none;
        height: 400px;
        border-radius: 40px 0 0 40px;
    }
}

@media (max-width: 991.98px) {
    .passos-section {
        text-align: center;
    }

    .passos-section .feature-list li {
        justify-content: center;
        text-align: left;
    }

    .passos-image {
        max-width: 100%;
        height: 350px;
        margin-top: var(--space-5);
    }
}

/* =========================================================================
   ## Ondas Section
========================================================================== */

.fundo-ondas {
    background: url('../images/fundo_ondas.png') no-repeat center center var(--bg-gray);
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 2;
    padding: var(--space-8) 0;
}

.ondas-first-part {
    position: relative;
    width: 100%;
}

.ondas-bg-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    margin-top: 50px;
}

.ondas-bg-line img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.fundo-ondas .container {
    position: relative;
    z-index: 10;
}

.ondas-content {
    color: var(--color-primary-dark);
}

.ondas-title {
    font-size: var(--fs-xl);
    line-height: 1.2;
    font-weight: 500;
}

.ondas-benefits {
    font-size: var(--fs-base);
}

.ondas-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ondas-list li {
    font-weight: 400;
    margin-bottom: var(--space-1);
    opacity: 0.8;
}

.ondas-highlight h3 {
    font-size: var(--fs-xl);
    color: var(--color-primary-dark);
    font-weight: 800;
    line-height: 1.2;
}

.ondas-image-container {
    position: relative;
}

.ondas-image-container img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 991.98px) {
    .ondas-bg-line {
        display: none;
    }

    .ondas-content {
        text-align: center;
        margin-bottom: var(--space-4);
    }

    .ondas-title,
    .ondas-highlight h3 {
        font-size: var(--fs-xl);
    }

    .ondas-image-container {
        max-width: 350px;
        margin: 0 auto;
    }

    .ondas-list {
        display: inline-block;
        text-align: left;
    }

    .ondas-list li {
        text-align: center;
    }

    .fundo-ondas {
        padding: var(--space-4) 0;
    }
}

.ondas-cta {
    padding-top: 200px;
}

.ondas-cta-subtitle {
    font-size: var(--fs-xl);
    color: var(--color-primary-light);
    font-weight: 700;
    line-height: 1.2;
}

.ondas-cta-info {
    font-size: var(--fs-base);
    color: var(--color-primary-dark);
    opacity: 0.8;
}

.ondas-cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
}

.ondas-cta-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 600;
    color: var(--color-primary-dark);
    text-align: left;
}

.cta-check {
    width: 18px;
    height: 18px;
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1400px) {
    .ondas-cta {
        padding-top: 150px;
    }
}

@media (max-width: 991.98px) {
    .ondas-cta {
        padding-top: 100px;
    }

    .ondas-cta-list {
        align-items: center;
    }

    .ondas-cta-list li {
        font-size: var(--fs-base);
    }
}


/* =========================================================================
   ## Footer Section
========================================================================== */
.site-footer {
    background-color: var(--color-primary-dark);
    padding: var(--space-5) 0;
    position: relative;
    overflow: hidden;
}

/* Decorações de Fundo (Efeito Marca d'água Sutil) */
.footer-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-30%);
    width: 380px;
    opacity: 0.12;
    /* Aumentado para visibilidade */
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: soft-light;
    /* Efeito de mistura suave com o azul */
}

.decoration-left {
    left: -100px;
}

.decoration-right {
    right: -100px;
}

.footer-star {
    width: 100%;
    height: auto;
}

/* Conteúdo Central */
.footer-container {
    position: relative;
    z-index: 10;
}

.footer-title {
    color: var(--text-light);
    font-size: var(--fs-xxl);
    /* Mantendo padrão do layout */
    font-weight: 700;
    margin-bottom: 2px;
    /* Espaçamento mínimo */
    text-transform: none;
}

.footer-slogan {
    color: var(--text-light);
    font-size: var(--fs-md);
    font-weight: 400;
    margin-bottom: 0;
}

/* WhatsApp CTA - Refinado */
.footer-whatsapp-cta {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
}

.footer-wa-link-new {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    transition: transform 0.3s ease;
    gap: 12px;
}

.footer-wa-link-new:hover {
    transform: scale(1.02);
    color: var(--text-light);
}

.footer-wa-icon-large {
    width: 48px;
    /* Tamanho mais equilibrado */
    height: 48px;
}

.footer-wa-icon-large svg {
    width: 100%;
    height: 100%;
}

.footer-wa-text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.wa-line-1,
.wa-line-2 {
    font-weight: 700;
    font-size: var(--fs-base);
    /* Tamanho padrão base */
    line-height: 1.2;
}

/* Contatos Rápidos - Refinado */
.footer-contacts-new {
    margin-top: var(--space-4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4); /* Reduzido de space-7 para caber tudo em uma linha */
    flex-wrap: wrap;
}

.contact-item-new {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-light);
    font-weight: 600;
    font-size: var(--fs-base);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-new:hover {
    color: var(--color-accent-gold);
}

.contact-item-new:hover .contact-icon-circle {
    background-color: var(--color-accent-gold);
    color: var(--text-light);
}


.contact-icon-circle {
    background-color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    transition: all 0.3s ease;
}


.contact-icon-circle svg {
    width: 18px; /* Padronizado para 18px */
    height: 18px;
}


.contact-number-new {
    font-size: var(--fs-base);
    font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 767.98px) {
    .site-footer {
        padding: var(--space-6) 0;
    }

    .footer-decoration {
        width: 180px;
        opacity: 0.05;
    }

    .footer-wa-link-new {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-wa-text-group {
        text-align: center;
    }

    .footer-wa-icon-large {
        width: 50px;
        height: 50px;
    }

    .footer-contacts-new {
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
        margin-top: var(--space-4);
    }

    .footer-social-row {
        justify-content: center;
        width: 100%;
    }

    .contact-item-new {
        width: 100%;
        justify-content: center;
    }



    .footer-title {
        font-size: var(--fs-xl);
    }
}


/* =========================================================================
   ## Blog — Listagem de Posts (home.php)
========================================================================== */

.blog-archive {
    background-color: var(--bg-light);
    padding-top: 200px;
}

/* Grid de cards: 3 colunas em desktop */
.grid-blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

/* Card individual */
.blog-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Thumbnail */
.blog-card__thumb-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.blog-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__thumb {
    transform: scale(1.05);
}

/* Placeholder quando não há thumbnail */
.blog-card__thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-sand));
}

/* Body do card */
.blog-card__body {
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Badge de categoria */
.blog-card__category {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-gold);
    margin-bottom: var(--space-2);
}

/* Título do card */
.blog-card__title {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.3;
    margin-bottom: var(--space-2);
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card__title a:hover {
    color: var(--color-accent-gold);
}

/* Resumo do post */
.blog-card__excerpt {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: var(--space-3);
}

/* Rodapé do card */
.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: var(--space-3);
    border-top: 1px solid rgba(49, 91, 113, 0.1);
}

.blog-card__date {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    font-weight: 500;
}

/* Botão "Ver mais" do card */
.blog-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary-dark);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--color-primary-dark);
    transition: all 0.3s ease;
}

.blog-card__btn:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-gold-2);
}

/* Mensagem quando não há posts */
.blog-empty {
    text-align: center;
    color: var(--text-muted);
    padding: var(--space-7) 0;
    font-size: var(--fs-lg);
}

/* Paginação */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--space-5);
}

.blog-pagination .nav-links {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-primary-dark);
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background-color: var(--color-primary-dark);
    color: var(--color-gold-2);
}

/* Responsivo blog */
@media (max-width: 991.98px) {
    .grid-blog {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-archive {
        padding-top: 150px;
    }
}

@media (max-width: 575.98px) {
    .grid-blog {
        grid-template-columns: 1fr;
    }
}


/* =========================================================================
   ## Blog — Single Post (single.php)
========================================================================== */

.single-post {
    background-color: var(--bg-light);
    padding-top: 100px;
}

/* Badge de categoria */
.single-post__category {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-gold);
    margin-bottom: var(--space-2);
}

/* Título do post */
.single-post__title {
    font-size: var(--fs-xxl);
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-3);
    line-height: 1.2;
}

/* Meta (data e autor) */
.single-post__meta {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid rgba(49, 91, 113, 0.15);
}

/* Conteúdo do post */
.single-post__content {
    font-size: var(--fs-base);
    color: var(--text-dark);
    line-height: 1.8;
}

.single-post__content p {
    margin-bottom: var(--space-4);
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
    color: var(--color-primary-dark);
    margin-top: var(--space-5);
    margin-bottom: var(--space-3);
}

.single-post__content ul,
.single-post__content ol {
    padding-left: var(--space-5);
    margin-bottom: var(--space-4);
}

.single-post__content li {
    margin-bottom: var(--space-2);
}

.single-post__content img {
    border-radius: var(--radius-md);
    max-width: 100%;
    height: auto;
    margin: var(--space-4) 0;
}

.single-post__content blockquote {
    border-left: 4px solid var(--color-accent-gold);
    padding-left: var(--space-4);
    margin: var(--space-5) 0;
    font-style: italic;
    color: var(--text-muted);
}

/* Imagem destacada (coluna lateral) */
.single-post__featured-img {
    position: sticky;
    top: 100px;
}

.single-post__featured-img-el {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Botão voltar ao blog */
.single-post__back {
    margin-top: var(--space-6);
}

.btn-back-blog {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary-dark);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--color-primary-dark);
    transition: all 0.3s ease;
}

.btn-back-blog:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-gold-2);
}

/* Título seção relacionados */
.single-post__related-title {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(49, 91, 113, 0.15);
}

/* Grid de posts relacionados (3 colunas igual ao blog) */
.grid-relacionados {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-3);
    margin-bottom: var(--space-5);
}

/* Responsivo single */
@media (max-width: 991.98px) {
    .single-post__title {
        font-size: var(--fs-xl);
    }

    .single-post__featured-img {
        position: relative;
        top: auto;
        margin-top: var(--space-4);
    }

    .grid-relacionados {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .single-post__title {
        font-size: var(--fs-lg);
    }

    .grid-relacionados {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   ## GSAP Animation Utilities (Premium & Fast)
========================================================================== */

/* Mascaramento de texto para efeito Reveal */
.split-line {
    overflow: hidden;
    vertical-align: bottom;
    display: block;
}

.split-line>span {
    display: inline-block;
    will-change: transform;
}

/* Revelação de imagem (Sutil: Fade + Zoom) */
.gsap-image-reveal {
    opacity: 0;
    will-change: transform, opacity;
}


/* =========================================================================
   ## Diferenciais - Layout do SVG
========================================================================== */

.diferenciais-visual {
    position: relative;
    display: inline-block;
    max-width: 450px;
    width: 100%;
}

.diferenciais-visual svg g[transform*="translate(94.43"] {
    transform-box: fill-box;
    transform-origin: center;
    animation: sparkle-pulse 0.7s infinite ease-in-out;
}

@keyframes sparkle-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.85;
    }
}

@media (max-width: 767px) {
    .diferenciais-visual {
        max-width: 300px;
        margin: 0 auto;
    }

    .diferenciais-visual svg {
        width: 300px;
        height: 300px;
    }
}