/* ==========================================================================
   DESIGN SYSTEM - GRUPO PETROBULL ARAXÁ
   ========================================================================== */

:root {
    --primary: #37367c;         /* Royal Blue/Indigo from Logo */
    --primary-light: #4d4cb4;   /* Lighter Royal Blue */
    --primary-dark: #21204d;    /* Darker Royal Blue */
    --secondary: #ec3237;       /* Vibrant Red from Logo */
    --secondary-hover: #cf2227; /* Darker Red */
    --accent: #ec3237;          /* Accent mapped to Brand Red (no yellow) */
    --accent-dark: #cf2227;

    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;

    /* Text colors */
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #ffffff;
    --text-gray: #94a3b8;
    --text-slate: #cbd5e1;

    /* Layout styling (clean & modern) */
    --border-radius: 6px;
    --transition-smooth: all 0.3s ease;

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);

    /* Carbon & Neon Tech System */
    --dark-tech: #111026;
    --dark-tech-mid: #1a1940;
    --dark-tech-surface: rgba(17, 16, 38, 0.85);
    --neon-red: rgba(236, 50, 55, 0.7);
    --neon-blue: rgba(77, 76, 180, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-surface: rgba(255, 255, 255, 0.03);
    --tech-grid-line: rgba(77, 76, 180, 0.12);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    50%       { opacity: 0.8; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

@keyframes neon-flicker {
    0%, 100% { box-shadow: 0 0 8px var(--neon-red), 0 0 20px var(--neon-blue); }
    50%       { box-shadow: 0 0 4px var(--neon-red), 0 0 10px var(--neon-blue); }
}

@keyframes card-glare {
    0%   { left: -150%; }
    100% { left: 150%; }
}

/* ==========================================================================
   GLOBAL RESET & PREMIUM FOUNDATIONS
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 105px; /* Ajustado para acomodar a logo maior de 85px */
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}

.center {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

section {
    padding: 90px 0;
    position: relative;
}

/* ==========================================================================
   TECH UTILITY CLASSES
   ========================================================================== */

/* Blueprint grid background — subtle engineering feel */
.tech-grid-bg {
    background-image:
        linear-gradient(var(--tech-grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--tech-grid-line) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Carbon fibre diagonal stripe overlay */
.carbon-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.012) 0px,
        rgba(255,255,255,0.012) 2px,
        transparent 2px,
        transparent 8px
    );
    pointer-events: none;
    z-index: 0;
}

/* Pulse dot — 24h status indicator */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Neon border glow — wraps dark-glass panels */
.neon-border {
    position: relative;
}
.neon-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--border-radius) + 2px);
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-red));
    z-index: -1;
    animation: neon-flicker 4s ease-in-out infinite;
}

/* Technical corner markers (+) */
.tech-corners {
    position: relative;
}
.tech-corners::before,
.tech-corners::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: var(--secondary);
    border-style: solid;
    opacity: 0.5;
}
.tech-corners::before {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
}
.tech-corners::after {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
}

/* ==========================================================================
   TYPOGRAPHY & BRAND COLORS
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: var(--primary);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-red {
    color: var(--secondary) !important;
}

.text-gold {
    color: var(--secondary) !important; /* Mapeado para vermelho vivo da marca */
}

.section-subtitle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.text-center .section-subtitle {
    justify-content: center;
}

/* Tracinho sutil da marca antes do subtítulo */
.section-subtitle::before {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    flex-shrink: 0;
}

/* Em cabeçalhos centralizados, tracinho dos dois lados */
.text-center .section-subtitle::after {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    flex-shrink: 0;
}

.section-title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title.text-white {
    color: var(--text-light);
}

.section-description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.text-description {
    font-size: 15.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--text-light) !important;
}

.btn-whatsapp:hover {
    background-color: #1ebe56;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-red {
    background-color: var(--secondary);
    color: var(--text-light) !important;
}

.btn-red:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.2);
}

.btn-blue {
    background-color: var(--primary);
    color: var(--text-light) !important;
}

.btn-blue:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.2);
}

.btn-outline-blue {
    border: 1px solid var(--primary);
    background-color: transparent;
    color: var(--primary) !important;
}

.btn-outline-blue:hover {
    background-color: var(--primary);
    color: var(--text-light) !important;
    border-color: var(--primary);
}

.btn-outline-dark {
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--text-dark) !important;
}

.btn-outline-dark:hover {
    background-color: var(--bg-light);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 11.5px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   MAIN NAVIGATION
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 105px; /* Aumentado para acomodar a logo de 85px sem cortar */
}

.logo-link {
    padding: 7px 0 0 0;
    display: inline-block;
}

.logo-img {
    height: 85px; /* Tamanho da logo de 85px conforme solicitado para desktop */
    width: auto;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 28px;
    cursor: pointer;
}

.nav-menu ul {
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius);
    text-decoration: none;
}

.nav-menu a:hover {
    color: var(--secondary);
    background-color: var(--bg-light);
}

.nav-menu a.active {
    color: var(--text-light);
    background-color: var(--primary);
}

/* Agrupa menu + redes sociais à direita */
.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 18px;
    border-left: 1px solid var(--border-color);
}

.header-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.header-social a:hover {
    background-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

/* Bandeiras (Minas Gerais e Brasil) no topo */
.header-flags {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-left: 18px;
    border-left: 1px solid var(--border-color);
}
.header-flags img {
    height: 22px;
    width: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
    display: block;
}

/* ==========================================================================
   HERO / BANNER CAROUSEL (100% WIDTH, CLEAN BANNER ONLY)
   ========================================================================== */

.hero-section {
    width: 100%;
    position: relative;
    padding: 0;
    background-color: var(--bg-light);
}

/* Banner levemente mais baixo, sem distorcer (recorte suave) e com teto em telas grandes */
.hero-section .owl-carousel .owl-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Styling Owl Carousel Custom Navigation & Dots */
.owl-theme .owl-nav {
    margin-top: 0;
}

.owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(55, 54, 124, 0.4) !important;
    color: #ffffff !important;
    border: none;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 20;
    margin: 0;
    padding: 0;
}

.owl-theme .owl-nav .owl-prev {
    left: 20px;
}

.owl-theme .owl-nav .owl-next {
    right: 20px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background-color: var(--secondary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(236, 50, 55, 0.3);
    transform: translateY(-50%) scale(1.08);
}

.owl-theme .owl-nav .owl-prev:hover {
    transform: translateY(-50%) scale(1.08) translateX(-2px);
}

.owl-theme .owl-nav .owl-next:hover {
    transform: translateY(-50%) scale(1.08) translateX(2px);
}

/* Dots — minimalista, direto sobre a imagem (sem pílula de fundo) */
.owl-theme .owl-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center;
    gap: 9px;
    z-index: 20;
    margin-top: 0;
}

.owl-theme .owl-dots .owl-dot {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    outline: none !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0;
    background: rgba(255, 255, 255, 0.7) !important;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
    border-radius: 10px;
    display: block;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #ffffff !important;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 26px;
    border-radius: 10px;
    background: var(--secondary) !important;
}

/* Banner principal: setas só no desktop, dots só no mobile */
@media(min-width: 768px) {
    .hero-section .owl-dots { display: none !important; }
}
@media(max-width: 767px) {
    .hero-section .owl-nav { display: none !important; }
    
    .hero-section .owl-dots {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 15px;
        padding-bottom: 15px;
        justify-content: center;
    }
    
    .hero-section .owl-dots .owl-dot span {
        width: 6px;
        height: 6px;
        background: rgba(10, 22, 40, 0.25) !important;
        box-shadow: none !important;
    }
    
    .hero-section .owl-dots .owl-dot.active span {
        width: 18px;
        background: var(--secondary) !important;
    }
}

/* ==========================================================================
   O GRUPO
   ========================================================================== */

.institutional-section {
    background-color: var(--bg-light);
}

/* Alinha o bloco de imagens ao topo do texto e amplia a separação entre colunas */
.institutional-section .section-grid {
    align-items: start;
}

@media(min-width: 992px) {
    .institutional-section .section-grid {
        gap: 70px;
    }
    .institutional-section .inst-visual {
        padding-left: 20px;
    }
}

.section-grid {
    display: grid;
    align-items: center;
    gap: 40px;
}

@media(min-width: 992px) {
    .section-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.stat-card {
    background-color: var(--bg-white);
    padding: 20px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    border-bottom: 2px solid var(--secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.visual-stack {
    position: relative;
    width: 100%;
    height: 580px;
}

.visual-card {
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.visual-card:hover {
    transform: scale(1.02);
}

.main-visual {
    width: 75%;
    height: 420px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border: 6px solid var(--bg-white);
}

.accent-visual {
    width: 70%;
    height: 320px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 6px solid var(--bg-white);
}

.visual-badge {
    position: absolute;
    bottom: 200px;
    left: -15px;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.visual-badge i {
    font-size: 18px;
    color: var(--accent);
}

.visual-badge span {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */

.services-section {
    background-color: var(--bg-light);
    padding-top: 90px;
    padding-bottom: 90px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255,255,255,0.8);
    overflow: hidden;
    position: relative;
}

/* Barra de marca que cresce no topo ao passar o mouse */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}
.service-card:hover::before { transform: scaleX(1); }

/* Glare — diagonal metallic shine on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -150%;
    width: 60%;
    height: 220%;
    background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.22) 50%, transparent 80%);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 50, 55, 0.45);
    box-shadow: 0 18px 44px rgba(236, 50, 55, 0.14), 0 6px 18px rgba(55, 54, 124, 0.10);
}
.service-card:hover::after {
    left: 150%;
}
.service-card:hover .service-name { color: var(--secondary); }

/* Standardized Icon Boxes across the website */
.service-icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--primary) !important;
    color: #ffffff !important; /* White icon on Blue box */
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transform: skewX(-12deg); /* paralelogramo — sensação de velocidade */
    transition: var(--transition-smooth);
}
.service-icon-box i {
    display: block;
    transform: skewX(12deg); /* mantém o ícone reto */
    transition: var(--transition-smooth);
}
.service-card:hover .service-icon-box {
    background-color: var(--secondary) !important;
    transform: skewX(-16deg) scale(1.04);
    box-shadow: 0 10px 20px rgba(236, 50, 55, 0.3);
}
.service-card:hover .service-icon-box i { transform: skewX(16deg); }

.service-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   UNIDADES (PONTOS DE ATENDIMENTO) - EXPLICIT 4/4 GRID
   ========================================================================== */

.units-section {
    background-color: var(--bg-white);
}

.units-grid {
    display: grid;
    gap: 24px;
}

.unit-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.unit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
    border-color: #cbd5e1;
}

.unit-banner::before {
    content: none;
}

.unit-banner {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    position: relative;
}

.unit-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 58%, rgba(15, 23, 42, 0.36));
}

.card-hours-badge,
.card-feature-badges span {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.card-hours-badge {
    top: 15px;
    right: 15px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-feature-badges {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
}

.card-feature-badges span {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--secondary);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 18px rgba(236, 50, 55, 0.28);
}

.card-feature-badges span i {
    color: #ffffff;
}

.unit-info {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    background-color: var(--bg-white);
}

.unit-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 13px;
    align-self: flex-start;
    box-shadow: none;
    border: 1px solid var(--border-color);
    background-color: #f8fafc;
    color: var(--text-muted);
}

.tag-posto,
.tag-oleo,
.tag-pecas {
    background-color: #f8fafc;
    color: var(--text-muted);
}

.unit-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.3;
    color: var(--primary);
}

.unit-subname {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-muted);
    margin: 0 0 10px;
}

.unit-address {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.unit-address i {
    color: var(--text-gray);
    font-size: 14px;
}

.unit-phone {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}


/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */

.differences-section {
    background-color: var(--bg-light);
}

.dif-visual {
    position: relative;
    width: 100%;
}

.dif-card {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    box-shadow: 0 18px 44px rgba(33, 32, 77, 0.18);
    position: relative;
    overflow: hidden;
}

.dif-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(33, 32, 77, 0.55) 0%, transparent 55%);
    z-index: 1;
}

/* Card flutuante limpo sobre a imagem */
.dif-floating {
    position: relative;
    z-index: 4;
    margin: -46px 24px 0 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 16px 40px rgba(33, 32, 77, 0.16);
    border-left: 4px solid var(--secondary);
}

.dif-floating-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transform: skewX(-12deg); /* paralelogramo — sensação de velocidade */
}
.dif-floating-icon i { transform: skewX(12deg); }

.dif-floating-text { display: flex; flex-direction: column; line-height: 1.25; }
.dif-floating-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}
.dif-floating-text span { font-size: 13px; color: var(--text-muted); }

.differences-list {
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.differences-list li {
    display: flex;
    gap: 15px;
}

/* Standardized icon in Why Choose section */
.dif-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius);
    background-color: var(--primary) !important;
    color: var(--accent) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-sm);
}

.dif-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.dif-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   PROMOÇÕES, EVENTOS E SORTEIOS
   ========================================================================== */

.promo-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--text-light);
    padding: 105px 0;
}

.promo-section .center {
    position: relative;
    z-index: 2;
}

.promo-wave-top,
.promo-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.promo-wave-top { top: -1px; }
.promo-wave-bottom { bottom: -1px; }
.promo-wave-top svg,
.promo-wave-bottom svg { width: 100%; height: 60px; display: block; }
.promo-wave-top svg path,
.promo-wave-bottom svg path { fill: var(--bg-light); }

.promo-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 0.9fr);
    gap: 54px;
    align-items: center;
}

.promo-content .section-title {
    color: var(--text-light);
}

.promo-content .text-description {
    max-width: 560px;
}

.promo-points {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.promo-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--text-slate);
    font-weight: 700;
}

.promo-points i {
    color: var(--secondary);
    font-size: 18px;
}

.promo-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

.promo-actions .btn {
    min-width: 250px;
    padding-left: 28px;
    padding-right: 28px;
    white-space: nowrap;
}

.promo-actions span {
    color: var(--text-slate);
    font-size: 12.5px;
    line-height: 1.45;
}

.promo-carousel-wrap {
    min-width: 0;
    width: 100%;
    max-width: 500px;
    justify-self: center;
    align-self: center;
}

.promo-carousel .owl-stage {
    display: flex;
}

.promo-carousel .owl-item {
    display: flex;
}

.promo-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 10px 24px rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.promo-card img {
    width: 100%;
    aspect-ratio: 4 / 5; /* proporção exata de post do Instagram (1080x1350) */
    height: auto;
    object-fit: cover;
    display: block;
}

.promo-carousel .owl-nav {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.promo-carousel .owl-nav button.owl-prev,
.promo-carousel .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.promo-carousel .owl-nav button i {
    font-size: 28px;
    line-height: 1;
}

.promo-carousel .owl-nav button.owl-prev:hover,
.promo-carousel .owl-nav button.owl-next:hover {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(236, 50, 55, 0.22);
}

@media(max-width: 991px) {
    .promo-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .promo-carousel-wrap {
        max-width: 500px;
        justify-self: center;
    }

    .promo-content .text-description {
        max-width: none;
    }
}

@media(max-width: 767px) {
    .promo-section {
        padding: 72px 0;
    }

    .promo-actions {
        align-items: flex-start;
        flex-direction: column;
    }

}

/* ==========================================================================
   FAQ / PERGUNTAS FREQUENTES
   ========================================================================== */

.faq-section {
    background-color: var(--bg-light); /* Clean grey-blue background */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question i {
    font-size: 18px;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question i {
    color: var(--secondary);
}

.faq-answer {
    padding: 14px 24px 20px 24px;
    display: none;
    border-top: 1px solid transparent;
}

.faq-answer p {
    margin: 0;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    border-top-color: var(--border-color);
}

/* ==========================================================================
   TRABALHE CONOSCO & FORMS
   ========================================================================== */

/* Careers section — azul de marca sóbrio (sem grid técnico/neon) */
.careers-section {
    background: transparent;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    margin: -34px 0;
}

.careers-section::before {
    content: '';
    position: absolute;
    inset: 34px -4vw;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
   
    transform-origin: center;
    border-radius: 0 0 8px 8px;
    z-index: 0;
}

.careers-section > .center {
    position: relative;
    z-index: 1;
}

.careers-section .section-subtitle {
    color: var(--secondary);
}

.careers-section .section-title {
    color: var(--text-light);
}

.text-description.text-gray {
    color: var(--text-gray);
}

.career-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14.5px;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    background: rgba(236, 50, 55, 0.08);
    border-color: rgba(236, 50, 55, 0.25);
    transform: translateX(4px);
}

.benefit-item i {
    color: var(--secondary);
    font-size: 18px;
    flex-shrink: 0;
}

/* Painel do formulário — card sóbrio (sem glassmorphism/neon) */
.careers-form-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--secondary);
}

.form-wrapper h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0;
}

.form-wrapper p {
    color: rgba(255,255,255,0.45);
    font-size: 13.5px;
    margin-bottom: 22px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
    text-align: left;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 18px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.input-icon-wrapper input,
.input-icon-wrapper select {
    padding-left: 46px;
}

.input-icon-wrapper:focus-within i {
    color: var(--secondary);
}

/* Dark glass inputs inside careers form */
.careers-form-box input[type="text"],
.careers-form-box input[type="email"],
.careers-form-box select,
.careers-form-box textarea {
    width: 100%;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    padding: 11px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    transition: var(--transition-smooth);
}

.careers-form-box input[type="text"]::placeholder,
.careers-form-box input[type="email"]::placeholder,
.careers-form-box textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.careers-form-box select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 44px;
    cursor: pointer;
}

.careers-form-box select option {
    background-color: #1a1940;
    color: var(--text-light);
}

/* Mantém espaço para o ícone à esquerda (sobrescreve o padding curto acima) */
.careers-form-box .input-icon-wrapper input,
.careers-form-box .input-icon-wrapper select {
    padding-left: 46px;
}

.careers-form-box input[type="text"]:focus,
.careers-form-box input[type="email"]:focus,
.careers-form-box select:focus,
.careers-form-box textarea:focus {
    border-color: var(--secondary);
    background-color: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 3px rgba(236, 50, 55, 0.15);
}

/* Default light inputs for other contexts */
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--text-dark);
    padding: 11px 16px;
    border-radius: var(--border-radius);
    font-size: 14.5px;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    transition: var(--transition-smooth);
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 44px;
    cursor: pointer;
}

select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c0392b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

textarea {
    resize: vertical;
    padding: 11px 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(55, 54, 124, 0.1);
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

/* Compact single-line file input for careers dark form */
.file-upload-compact {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition-smooth);
}
.file-upload-compact:focus-within,
.file-upload-compact:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(236,50,55,0.15);
}
.file-upload-compact .file-input {
    opacity: 0;
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 3;
}
.file-upload-compact .file-label-text {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.06);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--transition-smooth);
    pointer-events: none;
}
.file-upload-compact .file-label-text.has-file {
    color: rgba(255,255,255,0.85);
}
.file-upload-compact .btn-attach {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    pointer-events: none;
    white-space: nowrap;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 6px;
}

.file-upload-trigger {
    background-color: var(--bg-light);
    border: 2px dashed #cbd5e1;
    padding: 24px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.file-upload-trigger i {
    font-size: 34px;
    color: var(--secondary);
    transition: var(--transition-smooth);
}

.file-label-text {
    font-size: 13.5px;
    color: var(--text-muted);
}

.file-input:hover + .file-upload-trigger {
    border-color: var(--secondary);
    background-color: rgba(192, 57, 43, 0.02);
}

.file-input:focus + .file-upload-trigger {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 22, 40, 0.08);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    accent-color: var(--secondary);
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

.form-checkbox label a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.form-feedback {
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-size: 13.5px;
    margin-bottom: 24px;
    display: none;
    font-weight: 600;
}

.form-feedback.success {
    background-color: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #15803d;
}

.form-feedback.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #b91c1c;
}

/* ==========================================================================
   CONTACT SECTION (REDESIGNED CHANNELS GRID - NO FORM)
   ========================================================================== */

.contact-section {
    background-color: var(--bg-white);
}

.contact-channels-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

@media(min-width: 768px) {
    .contact-channels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-channel-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-channel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.contact-channel-card.highlight {
    background-color: rgba(37, 211, 102, 0.04);
    border-color: rgba(37, 211, 102, 0.15);
}

.contact-channel-card.highlight:hover {
    border-color: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.08);
}

/* Standardized Icon in Customer Channels */
.channel-icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--primary) !important;
    color: var(--accent) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-channel-card.highlight .channel-icon-box {
    background-color: #25d366 !important;
    color: var(--text-light) !important;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
}

.contact-channel-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--primary);
}

.contact-channel-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
    flex-grow: 1;
}

.channel-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.channel-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--primary) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.channel-link-btn:hover {
    background-color: var(--primary);
    color: var(--text-light) !important;
    border-color: var(--primary);
}

.channel-link-btn.whatsapp {
    background-color: #25d366;
    color: var(--text-light) !important;
    border-color: #25d366;
}

.channel-link-btn.whatsapp:hover {
    background-color: #1ebe56;
    border-color: #1ebe56;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

/* Faixa social moderna (substitui o callout de Instagram) */
.social-band {
    margin-top: 50px;
    padding: 34px 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    overflow: hidden;
}

.social-band::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 240px;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(236, 50, 55, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.social-band-text { position: relative; z-index: 1; }
.social-band-text h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.social-band-text p {
    color: var(--text-slate);
    font-size: 14.5px;
    margin: 0;
}

.social-band-links {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.sb-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.sb-icon:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(236, 50, 55, 0.3);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #14132e 100%);
    color: var(--text-light);
    padding: 70px 0 30px 0;
    border-top: none;
    position: relative;
    overflow: hidden;
}

/* Faixa de marca estática no topo do rodapé */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 50px;
}

@media(min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 0.9fr 1.1fr;
    }
}

.footer-logo {
    height: 116px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
    display: inline-block;
}

.footer-about {
    font-size: 13.5px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
    border-color: rgba(236, 50, 55, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(236,50,55,0.25);
}
.footer-social a:hover::before {
    opacity: 1;
}
.footer-social a i {
    position: relative;
    z-index: 1;
}

.footer-links h4,
.footer-hours h4,
.footer-sectors h4 {
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
    opacity: 0.7;
}

.footer-links h4::before,
.footer-hours h4::before,
.footer-sectors h4::before {
    content: attr(data-num);
    color: var(--secondary);
    font-size: 10px;
    font-weight: 900;
    margin-right: 8px;
    opacity: 1;
}

.footer-links h4::after,
.footer-hours h4::after,
.footer-sectors h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--secondary), var(--primary-light), transparent);
    opacity: 0.5;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '›';
    color: var(--secondary);
    font-size: 16px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
}
.footer-links a:hover {
    color: rgba(255,255,255,0.85);
    transform: translateX(4px);
}
.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-hours p {
    font-size: 13.5px;
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-hours strong {
    color: var(--accent);
}

.footer-sectors ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-sectors li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}
.footer-sectors li i {
    color: var(--secondary);
    font-size: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}
.footer-bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: var(--secondary);
}

@media(min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom a {
    color: var(--text-gray);
    margin: 0 10px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--secondary);
    text-decoration: none;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up-active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE LAYOUTS & BREAKPOINTS
   ========================================================================== */

@media(min-width: 1200px) {
    .units-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(min-width: 768px) and (max-width: 1199px) {
    .units-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media(max-width: 991px) {
    body {
        padding-top: 74px; /* Header thinner on mobile */
    }
    
    .header-container {
        height: 74px;
    }

    .logo-img {
        height: 48px;
    }

    /* No mobile: nav vira dropdown e redes sociais ficam só no rodapé */
    .header-right {
        display: contents;
    }
    .header-social,
    .header-flags {
        display: none;
    }

    section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .section-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .text-description {
        font-size: 15px;
    }

    .section-grid {
        gap: 32px;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 24px;
        border-bottom: 1px solid rgba(0,0,0,0.02);
        border-radius: 0;
    }
    
    .nav-menu a:hover {
        background-color: var(--bg-light);
    }
    
    .nav-menu a.active {
        background-color: rgba(10, 22, 40, 0.05);
        color: var(--secondary);
        border-left: 4px solid var(--secondary);
    }
    
    .visual-stack {
        height: 460px;
        margin-top: 20px;
    }
    
    .main-visual {
        width: 70%;
        height: 340px;
    }
    
    .accent-visual {
        width: 65%;
        height: 280px;
        bottom: 0;
    }
    
    .visual-badge {
        bottom: 160px;
        left: -10px;
        padding: 10px 16px;
        z-index: 10;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-form-box {
        padding: 24px;
        margin-top: 30px;
    }

    /* Diferenciais empilham (section-grid já vira 1 coluna) */

    /* Avaliações: botão com respiro */
    .reviews-section { padding: 60px 0; }

    /* Rodapé em 2 colunas no tablet */
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   HELPERS ADICIONAIS
   ========================================================================== */

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

.section-grid.align-start {
    align-items: flex-start;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-google {
    background-color: var(--secondary);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(236, 50, 55, 0.25);
}
.btn-google:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(236, 50, 55, 0.35);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: transparent;
    color: #fff !important;
}
.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ==========================================================================
   AVALIAÇÕES GOOGLE (logo abaixo do carrossel)
   ========================================================================== */

.reviews-section {
    background-color: var(--bg-light);
    padding: 70px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Carrossel de depoimentos */
.reviews-carousel { margin-bottom: 40px; }
.reviews-carousel .owl-stage { display: flex; }
.reviews-carousel .owl-item { display: flex; height: auto; }

.review-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 26px;
    transition: var(--transition-smooth);
    width: 100%;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(55, 54, 124, 0.2);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 700;
}
.review-stars-sm { color: #fbbc05; font-size: 12px; letter-spacing: 1px; }
.review-google { margin-left: auto; color: #4285f4; font-size: 20px; }

.review-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Botão "Veja mais no Google" (pílula branca, estilo referência) */
.reviews-btn-wrap { text-align: center; }

.btn-google-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.btn-google-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.btn-google-pill .g-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

/* ==========================================================================
   PARCEIROS (MARQUEE DE LOGOS)
   ========================================================================== */

.partners-section {
    background-color: var(--bg-white);
    padding: 70px 0;
    overflow: hidden;
}
.partners-section .section-header { margin-bottom: 35px; }

.partners-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee 32s linear infinite;
}
.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    flex-shrink: 0;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
}
.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ==========================================================================
   BLOG / NOVIDADES (home + listagem)
   ========================================================================== */

.blog-section { background-color: var(--bg-white); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(55, 54, 124, 0.14);
    border-color: rgba(55, 54, 124, 0.2);
}

.blog-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-media img { transform: scale(1.05); }

.blog-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.blog-card-title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: none;
}
.blog-card-title a { color: var(--primary); text-decoration: none; }
.blog-card-title a:hover { color: var(--secondary); }

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}
.blog-card-link {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}
.blog-card-link i { transition: transform 0.25s ease; }
.blog-card-link:hover i { transform: translateX(4px); }

.blog-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}
.blog-empty i { font-size: 46px; color: var(--text-gray); display: block; margin-bottom: 14px; }

/* Páginas internas do blog */
.blog-page { padding: 70px 0; background-color: var(--bg-white); }
.blog-page-header { text-align: center; margin-bottom: 50px; }
.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 24px;
}
.blog-back:hover { color: var(--secondary); }

.post-detail { max-width: 820px; margin: 0 auto; }
.post-cover {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 28px;
    max-height: 440px;
}
.post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-meta i { color: var(--secondary); }
.post-title { font-size: 32px; line-height: 1.2; margin-bottom: 20px; }
.post-body { font-size: 16px; color: var(--text-dark); line-height: 1.8; }
.post-body p { margin: 0 0 18px; }
.post-body img { max-width: 100%; height: auto; border-radius: 6px; margin: 10px 0; }
.post-body h2, .post-body h3 { margin: 28px 0 12px; }

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}
.blog-pagination a,
.blog-pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.blog-pagination a:hover { background-color: var(--bg-light); }
.blog-pagination .current {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ==========================================================================
   PÁGINAS INTERNAS - HERO E ESTRUTURA
   ========================================================================== */

.page-hero {
    padding: 110px 0 70px;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(236, 50, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(77, 76, 180, 0.25) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}
.page-hero .hero-kicker {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    background: rgba(236, 50, 55, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid rgba(236, 50, 55, 0.2);
}
.page-hero .hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.page-hero .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-slate);
    font-weight: 500;
}
.page-hero .breadcrumb-nav a {
    color: var(--text-slate);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.page-hero .breadcrumb-nav a:hover {
    color: var(--text-light);
}
.page-hero .breadcrumb-nav i {
    font-size: 10px;
    color: var(--text-gray);
}
.page-hero .breadcrumb-nav strong {
    color: var(--text-light);
    font-weight: 600;
}

/* ==========================================================================
   POLÍTICA DE PRIVACIDADE
   ========================================================================== */

.policy-section {
    padding: 70px 0;
    background-color: var(--bg-light);
}
.policy-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 60px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}
.policy-card .contentPolicy__titulo {
    margin-top: 40px;
    font-size: 22px;
}
.policy-card .contentPolicy__titulo:first-child {
    margin-top: 0;
}
.policy-card .contentPolicy__texto {
    font-size: 15px;
}
.policy-card .contentPolicy__texto:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .policy-card {
        padding: 30px 22px;
    }
    .policy-card .contentPolicy__titulo {
        font-size: 19px;
        margin-top: 30px;
    }
}

/* ==========================================================================
   BLOG / LISTAGEM COM SIDEBAR
   ========================================================================== */

.blog-list-section, .blog-detail-section {
    padding: 70px 0;
    background-color: var(--bg-light);
}
.blog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}
.blog-main {
    min-width: 0;
}
.blog-main .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.blog-card-media {
    position: relative;
}
.blog-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--secondary);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 11px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 5;
    transition: var(--transition-smooth);
}
.blog-card:hover .blog-card-badge {
    background-color: var(--primary);
    transform: translateY(-2px);
}

/* Filtros de Contexto do Blog */
.blog-context-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 14px 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}
.context-filter-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-muted);
}
.context-filter-badge strong {
    color: var(--primary);
    margin-left: 4px;
}
.clear-filters-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    transition: var(--transition-smooth);
}
.clear-filters-btn:hover {
    color: var(--secondary-hover);
    transform: translateX(2px);
}

/* Modificações e Melhorias no Blog Vazio */
.blog-main .blog-empty {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.blog-main .blog-empty h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 15px;
    margin-bottom: 8px;
}
.blog-main .blog-empty p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 20px;
    line-height: 1.6;
}
.mt-15 { margin-top: 15px !important; }

/* Barra Lateral (Sidebar) */
.blog-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sidebar-block {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}
.sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

/* Busca na Sidebar */
.sidebar-search-form {
    display: flex;
    position: relative;
}
.sidebar-search-form input {
    width: 100%;
    height: 46px;
    padding: 10px 48px 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}
.sidebar-search-form input:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(55, 54, 124, 0.1);
}
.sidebar-search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 36px;
    height: 36px;
    border: none;
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.sidebar-search-form button:hover {
    background-color: var(--secondary);
}

/* Lista de Categorias */
.sidebar-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.sidebar-cat-list li a i {
    font-size: 11px;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}
.sidebar-cat-list li a:hover {
    color: var(--primary);
    border-color: rgba(55, 54, 124, 0.25);
    background-color: var(--bg-white);
    transform: translateX(4px);
}
.sidebar-cat-list li.active a {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-light);
}
.sidebar-cat-list li.active a i {
    color: var(--text-light);
}

/* Últimas Novidades */
.sidebar-recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sidebar-recent-list li a {
    display: flex;
    gap: 14px;
    text-decoration: none;
    align-items: center;
}
.sidebar-recent-list .recent-img-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.sidebar-recent-list .recent-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.sidebar-recent-list li a:hover .recent-img-wrapper img {
    transform: scale(1.08);
}
.sidebar-recent-list .recent-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sidebar-recent-list .recent-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
    margin: 0;
    transition: var(--transition-smooth);
}
.sidebar-recent-list li a:hover .recent-text h4 {
    color: var(--secondary);
}
.sidebar-recent-list .recent-text span {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Bloco CTA Sidebar */
.sidebar-block.cta-block {
    background: linear-gradient(135deg, var(--dark-tech) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 30px 24px;
}
.sidebar-block.cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(236, 50, 55, 0.2) 0%, transparent 60%);
    pointer-events: none;
}
.sidebar-block.cta-block .cta-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(236, 50, 55, 0.15);
    border: 1px solid rgba(236, 50, 55, 0.3);
    color: var(--secondary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.sidebar-block.cta-block h3 {
    color: var(--text-light);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}
.sidebar-block.cta-block p {
    font-size: 13.5px;
    color: var(--text-slate);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* ==========================================================================
   PÁGINA DE DETALHE DO POST
   ========================================================================== */

.post-detail-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}
.post-detail-title {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 24px;
}

/* Relacionados */
.related-posts-section {
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}
.related-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
    padding-left: 14px;
}
.related-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

/* ==========================================================================
   PORTAL CONECTA (ENDOMARKETING)
   ========================================================================== */

/* Banner de Evento do Conecta */
.conecta-banner-section {
    width: 100%;
    position: relative;
    padding: 0;
    background-color: var(--bg-light);
}
.conecta-banner-section .owl-carousel .owl-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Breadcrumb do Conecta */
.conecta-breadcrumb-bar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}
.conecta-breadcrumb-bar .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.conecta-breadcrumb-bar .breadcrumb-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.conecta-breadcrumb-bar .breadcrumb-nav a:hover {
    color: var(--primary);
}
.conecta-breadcrumb-bar .breadcrumb-nav i {
    font-size: 10px;
    color: var(--text-gray);
}
.conecta-breadcrumb-bar .breadcrumb-nav strong {
    color: var(--text-dark);
    font-weight: 600;
}

.conecta-section {
    padding: 70px 0;
    background-color: var(--bg-light);
}
.conecta-content-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.conecta-header-box {
    text-align: center;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
}
.conecta-header-box .conecta-badge {
    margin: 0 auto 24px;
}

/* Modo com imagem de prêmio: imagem menor alinhada SÓ com o título; texto abaixo full width */
.conecta-header-box--prize {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "titles image"
        "body   body";
    column-gap: 32px;
    align-items: start;
    text-align: left;
}
.conecta-header-box--prize .conecta-h-titles { grid-area: titles; }
.conecta-header-box--prize .conecta-header-prize { grid-area: image; align-self: start; }
.conecta-header-box--prize .conecta-h-body { grid-area: body; }

.conecta-header-box--prize .conecta-badge { margin: 0 0 15px; display: block; }
.conecta-header-box--prize .conecta-event-title,
.conecta-header-box--prize .conecta-event-subtitle,
.conecta-header-box--prize .conecta-intro-text,
.conecta-header-box--prize .conecta-body-text {
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}
.conecta-header-box--prize .conecta-divider { margin: 26px 0; }

.conecta-header-prize img {
    width: 100%;
    max-width: 140px;
    height: auto;
    margin: 0 0 30px 0;
    border-radius: 10px;
    /* box-shadow: var(--shadow-md); */
    display: block;
}

/* Responsivo: empilha — título, texto e por último a imagem (tamanho normal) */
@media (max-width: 900px) {
    .conecta-header-box--prize {
        grid-template-columns: 1fr;
        grid-template-areas:
            "titles"
            "body"
            "image";
        text-align: center;
    }
    .conecta-header-box--prize .conecta-badge { margin: 0 auto 18px; }
    .conecta-header-box--prize .conecta-event-title,
    .conecta-header-box--prize .conecta-event-subtitle,
    .conecta-header-box--prize .conecta-intro-text,
    .conecta-header-box--prize .conecta-body-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .conecta-header-box--prize .conecta-divider { margin: 26px auto; }
    .conecta-header-prize { margin: 26px auto 0; }
    .conecta-header-prize img { max-width: 420px; margin: 0 auto; }
}
.conecta-event-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 12px;
    text-align: center;
}
.conecta-event-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 24px;
    text-align: center;
}
.conecta-intro-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.conecta-divider {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    max-width: 100%;
    margin: 30px auto;
}
.conecta-body-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.conecta-body-text p {
    margin-bottom: 14px;
}

/* Formulário de Participação Conecta Centralizado e Maior */
.conecta-form-wrapper-centered {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 50px 60px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    width: 100%;
}
.conecta-form-wrapper-centered::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}
.conecta-form-wrapper-centered h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
}
.conecta-form-wrapper-centered p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 35px;
    text-align: center;
}

/* Estilo do Formulário Light e Maior */
.conecta-form-wrapper-centered .form-group label {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}
.conecta-form-wrapper-centered input[type="text"],
.conecta-form-wrapper-centered input[type="email"],
.conecta-form-wrapper-centered select,
.conecta-form-wrapper-centered textarea {
    width: 100%;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 14px 18px;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    transition: var(--transition-smooth);
}
.conecta-form-wrapper-centered input[type="text"]::placeholder,
.conecta-form-wrapper-centered input[type="email"]::placeholder,
.conecta-form-wrapper-centered textarea::placeholder {
    color: var(--text-gray);
}
.conecta-form-wrapper-centered input:focus,
.conecta-form-wrapper-centered textarea:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(55, 54, 124, 0.1);
}
.conecta-form-wrapper-centered .input-icon-wrapper input,
.conecta-form-wrapper-centered .input-icon-wrapper select {
    padding-left: 46px;
}
.conecta-form-wrapper-centered .text-area-icon textarea {
    padding-left: 46px;
    min-height: 150px;
    resize: vertical;
}
.conecta-form-wrapper-centered .text-area-icon i {
    top: 24px;
}
.conecta-form-wrapper-centered .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 13.5px;
    color: var(--text-muted);
    text-align: left;
}
.conecta-form-wrapper-centered .form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}
.conecta-form-wrapper-centered .form-checkbox label {
    cursor: pointer;
    line-height: 1.4;
    font-size: 13.5px;
    text-transform: none;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: normal;
}
.btn-block.btn-lg {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
}

/* Feedback/Status Styles */
.form-feedback {
    display: none;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}
.form-feedback.success {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}
.form-feedback.error {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/* Spinner e Animações */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

/* Conecta Empty State (Sem Evento Ativo) */
.conecta-empty-state {
    max-width: 680px;
    margin: 40px auto;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.conecta-empty-state .empty-icon-box {
    width: 80px;
    height: 80px;
    background-color: rgba(55, 54, 124, 0.06);
    border: 1px solid rgba(55, 54, 124, 0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
}
.conecta-empty-state h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.conecta-empty-state .lead-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 14px;
}
.conecta-empty-state .description-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}
.conecta-empty-state .empty-actions {
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   RESPONSIVO DETALHADO — TELEFONES
   ========================================================================== */

/* Smartphones (≤ 767px) */
@media(max-width: 767px) {
    section { padding: 52px 0; }
    .center { padding: 0 20px; }

    .section-title { font-size: 26px; }
    .section-subtitle { font-size: 11px; letter-spacing: 1px; }
    .section-description { font-size: 14px; margin-bottom: 32px; }
    .text-description { font-size: 14.5px; }
    .section-grid { gap: 28px; }

    /* Grids viram coluna única */
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }

    /* Quem somos: visual abaixo do texto, alturas menores */
    .visual-stack { height: 400px; margin-top: 10px; }
    .main-visual { width: 70%; height: 300px; }
    .accent-visual { width: 65%; height: 240px; }
    .visual-badge { left: -10px; bottom: 140px; padding: 10px 16px; z-index: 10; }
    .visual-badge span { font-size: 11px; }

    /* Estatísticas: lado a lado compactas */
    .stat-num { font-size: 28px; }
    .stat-label { font-size: 10px; }

    /* Serviços */
    .service-card { padding: 26px; }

    /* Diferenciais */
    .dif-card h3 { font-size: 22px; }

    /* Parceiros */
    .partners-track { gap: 36px; }
    .partner-logo { height: 42px; }

    /* Avaliações */
    .reviews-section { padding: 52px 0; }
    .reviews-carousel { margin-bottom: 32px; }
    .btn-google-pill { font-size: 14px; padding: 12px 22px; }

    /* Blog */

    /* FAQ */
    .faq-question { font-size: 15px; padding: 16px 18px; }
    .faq-answer { padding: 0 18px 16px; }

    /* Trabalhe conosco */
    .careers-section {
        padding: 76px 0;
        margin: -18px 0;
    }
    .careers-section::before {
        inset: 18px -6vw;
        transform: skewY(-1.4deg);
    }
    .careers-form-box { padding: 22px; }
    .form-wrapper h3 { font-size: 20px; }

    /* Contato (já em 1 coluna abaixo de 768) */
    .contact-channel-card { padding: 28px 24px; }
    .social-band {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        margin-top: 36px;
        gap: 20px;
    }
    .social-band-links { justify-content: center; }

    /* Blog — páginas internas */
    .blog-page { padding: 52px 0; }
    .post-title { font-size: 26px; }
    .post-body { font-size: 15.5px; }

    .blog-layout-grid { grid-template-columns: 1fr; gap: 30px; }
    .blog-sidebar { position: static; order: 2; }
    .blog-main { order: 1; }
    .blog-main .blog-grid { grid-template-columns: 1fr; }
    .post-detail-card { padding: 24px; }
    .post-detail-title { font-size: 26px; }
    
    /* Conecta */
    .conecta-layout-grid { grid-template-columns: 1fr; gap: 30px; }
    .conecta-info-box, .conecta-form-box { padding: 24px; }
    .conecta-event-title { font-size: 26px; }
    .conecta-empty-state { padding: 40px 20px; }

    /* Rodapé empilhado */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Smartphones pequenos (≤ 575px) */
@media(max-width: 575px) {
    section { padding: 44px 0; }
    .center { padding: 0 18px; }

    .section-title { font-size: 23px; line-height: 1.25; }
    .section-description { margin-bottom: 28px; }

    /* Empilha os pares de campos do formulário */
    .form-row { flex-direction: column; gap: 0; }

    /* Estatísticas empilhadas em largura total */
    .stats-grid { grid-template-columns: 1fr; gap: 12px; }
    .stat-card { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px; }
    .stat-num { margin-bottom: 0; }


    /* Quem somos */
    .visual-stack { height: 340px; }
    .main-visual { height: 260px; width: 70%; }
    .accent-visual { height: 200px; width: 65%; }
    .visual-badge { left: -10px; bottom: 110px; }

    /* Diferenciais */

    /* Avaliações */
    .review-card { padding: 22px; }

    /* Blog */

    /* Parceiros */
    .partner-logo { height: 38px; }
    .partners-track { gap: 30px; }

    /* Contato */
    .contact-channel-card h3 { font-size: 17px; }

    /* Blog & Conecta */
    .page-hero { padding: 70px 0 50px; }
    .page-hero .hero-title { font-size: 28px; }
    .post-detail-title { font-size: 22px; }
    .conecta-event-title { font-size: 22px; }
}

/* Telas muito estreitas (≤ 400px) */
@media(max-width: 400px) {
    .center { padding: 0 14px; }
    .logo-img { height: 42px; }
    .section-title { font-size: 21px; }
    .service-card,
    .careers-form-box { padding: 18px; }
    .stat-num { font-size: 26px; }
    .btn { padding: 11px 18px; font-size: 12.5px; }
}

/* ==========================================================================
   CONECTA — header só com logo centralizada + footer minimalista
   ========================================================================== */

.main-header--center .header-container {
    justify-content: center;
}
.logo-link--static {
    cursor: default;
}

.main-footer--minimal {
    text-align: center;
}
.main-footer--minimal .footer-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.main-footer--minimal .footer-minimal__text {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0;
}
.main-footer--minimal .footer-minimal__copy {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    margin: 0;
}

/* ==========================================================================
   EFEITOS SUTIS (micro-interações discretas)
   ========================================================================== */

/* Acessibilidade: respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .partners-track { animation: none !important; }
}

/* Mural de parceiros: cinza → cor ao passar o mouse */
.partner-logo img {
    filter: grayscale(1);
    opacity: 0.6;
    transition: filter 0.35s ease, opacity 0.35s ease;
}
.partner-logo:hover img {
    filter: none;
    opacity: 1;
}

/* Entrada escalonada e discreta dos serviços (sem atrapalhar o hover) */
.services-grid .service-card:nth-child(2) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.10s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.20s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.25s; }
.services-grid .service-card:hover { transition-delay: 0s; }

/* Lift sutil onde faltava */
.fleet-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.fleet-card:hover { transform: translateY(-4px); }

.app-store-btns,
.stat-card,
.benefit-item { will-change: transform; }

/* Zoom suave na capa do card de diferencial */
.dif-card { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease; }
.dif-card:hover { transform: translateY(-4px) scale(1.01); }

/* Foco visível discreto para teclado (acessibilidade) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Setas/links com micro-deslize ao passar o mouse */
.blog-card-link:hover i,
.btn-blue:hover i,
.channel-link-btn:hover i { transition: transform 0.25s ease; }

/* ==========================================================================
   CONECTA — Mural de palpites (engajamento)
   ========================================================================== */

.conecta-palpites {
    max-width: 1140px;
    margin: 40px auto 0;
}
.conecta-palpites-head {
    text-align: center;
    margin-bottom: 28px;
}
.conecta-palpites-title {
    font-size: 26px;
    margin: 4px 0 8px;
    color: var(--primary);
}
.conecta-palpites-head p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin: 0;
}

/* Feed estilo comentários (Facebook/Instagram) */
.palpite-feed {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.palpite-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.palpite-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.palpite-bubble {
    position: relative;
    flex: 1 1 auto;
    background: #f0f2f5;
    border-radius: 4px 18px 18px 18px;
    padding: 12px 18px;
    min-width: 0;
}
.palpite-author {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2px;
}
.palpite-local {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}
.palpite-text {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.55;
    word-break: break-word;
}

/* Destaque ao inserir um novo palpite via AJAX */
.palpite-item--new .palpite-bubble {
    animation: palpiteIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 2px rgba(236, 50, 55, 0.25);
}
@keyframes palpiteIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
    .conecta-palpites-title { font-size: 22px; }
}

/* ==========================================================================
   CONECTA — Layout dividido (texto/form à esquerda, comentários à direita)
   ========================================================================== */

.conecta-split {
    display: flex;
    align-items: stretch;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Coluna esquerda (texto + formulário) ocupa o maior espaço */
.conecta-split .conecta-content-container--split {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    margin: 0;
}

/* Coluna direita (comentários) — mais fina, altura igual à esquerda com scroll interno */
.conecta-palpites--side {
    flex: 0 0 340px;
    max-width: 340px;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 24px 20px;
}
.conecta-palpites--side .conecta-palpites-head {
    margin-bottom: 18px;
    flex-shrink: 0;
}
.conecta-palpites--side .conecta-palpites-title { font-size: 20px; }
.conecta-palpites--side .conecta-palpites-head p { font-size: 13px; }

/* O feed rola dentro da coluna, terminando na altura da esquerda */
.conecta-palpites--side .palpite-feed {
    flex: 1 1 auto;
    min-height: 0;
    padding-top: 10px;
    overflow-y: auto;
    padding-right: 8px;
    gap: 16px;
}
.conecta-palpites--side .palpite-feed::-webkit-scrollbar { width: 6px; }
.conecta-palpites--side .palpite-feed::-webkit-scrollbar-thumb {
    background: rgba(55, 54, 124, 0.25);
    border-radius: 3px;
}
/* Na coluna estreita o balão não estica à toa */
.conecta-palpites--side .palpite-bubble { flex: 0 1 auto; }

/* Responsivo: empilha e a coluna de comentários volta a fluir normalmente */
@media (max-width: 900px) {
    .conecta-split {
        flex-direction: column;
    }
    .conecta-palpites--side {
        flex-basis: auto;
        max-width: none;
        width: 100%;
        margin-top: 8px;
    }
    .conecta-palpites--side .palpite-feed {
        overflow: visible;
        max-height: none;
    }
    .conecta-palpites--side .palpite-bubble { flex: 1 1 auto; }
}
