/* =========================================
   DESIGN SYSTEM & VARIABLES - GRUPO CONNECT
========================================= */
:root {
    /* Approved Design System Colors */
    --primary: #0B56C4;
    /* Azul principal */
    --bg-dark: #083A8C;
    /* Azul escuro/base */
    --bg-navy-deep: #072C6A;
    /* Azul profundo */
    --bg-very-dark: #031B3F;
    /* Azul muito escuro */
    --secondary: #F2C400;
    /* Amarelo principal */
    --secondary-hover: #FFE082;
    /* Amarelo claro para hover */
    --secondary-highlight: #FFD11A;
    /* Amarelo destaque */
    --whatsapp: #25D366;
    /* Verde WhatsApp */
    --whatsapp-hover: #1EBE5D;
    /* Verde WhatsApp Hover */
    --bg-light: #F3F6FA;
    /* Fundo claro */
    --bg-soft: #F7FAFF;
    /* Fundo suave */
    --white: #FFFFFF;
    --text-primary: #0B1F3A;
    /* Texto principal */
    --text-secondary: #5F6F86;
    /* Texto secundário */
    --border: #DDE7F3;
    /* Borda */

    /* Typography */
    --font-family-title: 'Montserrat', sans-serif;
    --font-family-body: 'Inter', sans-serif;

    /* Shadows - Unified standard design system shadows */
    --shadow-sm: 0 2px 5px rgba(8, 58, 140, 0.04);
    --shadow-md: 0 6px 16px rgba(8, 58, 140, 0.06);
    --shadow-lg: 0 15px 35px rgba(8, 58, 140, 0.08);
    --shadow-premium: 0 25px 50px rgba(7, 44, 106, 0.12);

    /* Spacings */
    --container-width: 1200px;
    /* Standard premium wide container */
}

/* =========================================
   RESET & CORE BASE
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    font-family: var(--font-family-body);
}

p,
span,
li,
a,
iframe,
input {
    font-family: var(--font-family-body);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-eyebrow,
.step-num {
    font-family: var(--font-family-title);
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 900;
    color: var(--bg-dark);
}

.btn,
.nav-link,
.drawer-link {
    font-family: var(--font-family-title);
}

.text-yellow {
    color: var(--secondary);
}

.text-blue-highlight {
    color: var(--primary);
}

/* Section Spacing */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(28px, 3.2vw, 38px);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.35;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-top: 10px;
    overflow: visible;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* =========================================
   ACCESSIBILITY & FOCUS SYSTEMS
========================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* =========================================
   BUTTON SYSTEMS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    min-height: 54px;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    opacity: 0;
}

.btn-whatsapp:hover::after {
    left: 125%;
    opacity: 1;
    transition: all 0.75s ease-in-out;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-yellow {
    background-color: var(--secondary);
    color: var(--bg-navy-deep) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-yellow:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff !important;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--bg-dark) !important;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
    background-color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Top Utility Bar */
.top-bar {
    background-color: var(--secondary);
    color: var(--bg-navy-deep);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    max-height: 40px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.top-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-bar-container span {
    font-family: var(--font-family-title);
}

.top-bar-container .separator {
    color: rgba(7, 44, 106, 0.35);
    font-weight: 900;
}

.main-header.scrolled .top-bar {
    max-height: 0;
    padding: 0;
    border: none;
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 9.5px;
        letter-spacing: 0.8px;
        padding: 8px 0;
        max-height: none;
        /* Evita quebra truncada */
        overflow: visible;
    }

    .top-bar-container {
        justify-content: center;
        gap: 6px 12px;
    }

    .top-bar-container .separator {
        display: none;
        /* Oculta separador vertical no mobile para evitar quebra feia */
    }
}

/* =========================================
   HEADER PREMIUM & NAV BAR
========================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #072C6A;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5px 0;
}

.main-header.scrolled {
    background-color: #072C6A;
    box-shadow: var(--shadow-lg);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled .header-container {
    height: 70px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled .logo-img {
    height: 44px;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header-cta {
    min-height: 44px;
    padding: 0 24px;
    font-size: 13.5px;
    font-weight: 800;
    background-color: var(--secondary);
    color: var(--bg-navy-deep) !important;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(242, 196, 0, 0.2);
    transition: all 0.25s ease;
}

.btn-header-cta:hover {
    background-color: var(--secondary-hover);
    color: var(--bg-navy-deep) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 196, 0, 0.3);
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content: center;
    padding: 0;
    z-index: 1010;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   OFFCANVAS DRAWER (MOBILE NAV)
========================================= */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-navy-deep);
    z-index: 1005;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
    right: 0;
}

.drawer-header {
    display: none;
    /* Done via top close button */
}

.drawer-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
}

.drawer-body {
    flex-grow: 1;
}

.drawer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.drawer-link:hover,
.drawer-link.active {
    color: var(--secondary);
    padding-left: 8px;
}

.drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.drawer-cta .btn {
    width: 100%;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   HERO CONNECT SECTION
========================================= */
.hero {
    position: relative;
    padding: 210px 0 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    color: #ffffff;
    padding-bottom: 0;
    position: relative;
    z-index: 10;
    max-width: 550px;
    /* Prevent text from overlaying products on the right */
    width: 100%;
}

.hero-eyebrow {
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-size: clamp(36px, 4.8vw, 56px);
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-title span.highlight {
    background: linear-gradient(135deg, #FFE082 0%, #FFD400 60%, #FFB800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(17px, 1.8vw, 20px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 18px;
    line-height: 1.45;
}

.hero-description {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 38px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.hero-actions-mobile {
    display: none !important;
}

/* =========================================
   HERO CONNECT SECTION - SLIDER & ASSETS
========================================= */
.hero-battery-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-visual-wrapper {
    position: absolute;
    aspect-ratio: 16 / 9;
}

/* Cover behavior mimicking background-size: cover with center right positioning */
@media (min-aspect-ratio: 16/9) {
    .hero-visual-wrapper {
        width: 100%;
        height: auto;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-visual-wrapper {
        height: 100%;
        width: auto;
        right: 0;
        top: 0;
        transform: none;
    }
}

.hero-battery-slider {
    position: absolute;
    left: 50.000%;
    top: 42.963%;
    width: 27.273%;
    height: 40.181%;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-battery-slider:hover {
    transform: translateY(-10px);
}

/* Subtle glow behind the battery on hover */
.hero-battery-slider::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(11, 86, 196, 0.35) 0%, rgba(255, 209, 26, 0.1) 60%, rgba(0, 0, 0, 0) 80%);
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.9);
}

.hero-battery-slider:hover::before {
    opacity: 1;
    transform: scale(1.15);
}

.hero-battery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.hero-battery-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-product img,
.hero-battery img,
.product-hero img {
  filter:
    drop-shadow(0 26px 34px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 18px rgba(242, 196, 0, 0.16));
  transform: translateY(6px);
}

/* Para uma sombra no “chão”: */
.hero-product::after,
.hero-battery::after,
.product-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 70%;
  height: 24px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,0,0,0.45), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

/* =========================================
   APPLICATION CATALOG SECTION
 ========================================= */
/* =========================================
   APPLICATION CATALOG SECTION
 ========================================= */
.applications-section {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid rgba(8, 58, 140, 0.04);
}

.applications-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.applications-section .section-header h2 {
    font-family: var(--font-family-title);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #072C6A;
    margin-bottom: 12px;
}

.applications-section .section-header p {
    font-family: var(--font-family-body);
    font-size: 15px;
    color: #718096;
}

.apps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.app-item {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-item:hover {
    transform: translateY(-5px);
}

.app-icon-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: var(--secondary-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(242, 196, 0, 0.18);
}

.app-item:hover .app-icon-circle {
    transform: scale(1.05);
}

.app-icon-circle img {
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-icon-circle img.img-carro {
    width: 94px;
}

.app-icon-circle img.img-moto {
    width: 98px;
}

.app-icon-circle img.img-caminhao {
    width: 108px;
}

.app-icon-circle img.img-startstop {
    width: 94px;
}

.app-icon-circle img.img-som {
    width: 94px;
}

.app-icon-circle img.img-solar {
    width: 98px;
}

.app-item:hover .app-icon-circle img {
    transform: scale(1.05);
}

.app-title {
    font-family: var(--font-family-title);
    font-size: 15px;
    font-weight: 700;
    color: #072C6A;
    margin-top: 16px;
    transition: color 0.25s ease;
    text-transform: none !important;
    letter-spacing: normal;
}

.app-item:hover .app-title {
    color: #0B56C4;
}

/* Responsiveness */
@media (max-width: 991px) {
    .apps-container {
        gap: 30px;
    }

    .app-icon-circle {
        width: 110px;
        height: 110px;
    }

    .app-icon-circle img.img-carro {
        width: 80px;
    }

    .app-icon-circle img.img-moto {
        width: 84px;
    }

    .app-icon-circle img.img-caminhao {
        width: 92px;
    }

    .app-icon-circle img.img-startstop {
        width: 80px;
    }

    .app-icon-circle img.img-som {
        width: 80px;
    }

    .app-icon-circle img.img-solar {
        width: 84px;
    }
}

@media (max-width: 768px) {
    .applications-section {
        padding: 50px 0;
    }

    .apps-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }

    .app-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .apps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .app-icon-circle {
        width: 90px;
        height: 90px;
    }

    .app-icon-circle img.img-carro {
        width: 64px;
    }

    .app-icon-circle img.img-moto {
        width: 68px;
    }

    .app-icon-circle img.img-caminhao {
        width: 76px;
    }

    .app-icon-circle img.img-startstop {
        width: 64px;
    }

    .app-icon-circle img.img-som {
        width: 64px;
    }

    .app-icon-circle img.img-solar {
        width: 68px;
    }
}

/* =========================================
   VAREJO & ATACADO SECTIONS
========================================= */
#baterias,
#varejo,
#atacado {
    overflow: visible !important;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    overflow: visible !important;
}

.split-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 51, 128, 0.1) 0%, rgba(7, 28, 75, 0.35) 100%);
    pointer-events: none;
}

.split-info {
    overflow: visible !important;
    position: relative;
}

.split-info h2 {
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--bg-dark);
    line-height: 1.35;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 10px 0;
}

.split-info p.intro {
    font-size: 17.5px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-weight: 500;
    line-height: 1.5;
}

.bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 45px;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.bullet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(11, 86, 196, 0.08);
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bg-dark-style .bullet-icon {
    background-color: rgba(255, 212, 0, 0.15);
    color: var(--secondary);
}

.bullet-text h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--bg-dark);
}

.bg-dark-style .bullet-text h4 {
    color: #ffffff;
}

.bullet-text p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.bg-dark-style .bullet-text p {
    color: rgba(255, 255, 255, 0.75);
}

/* =========================================
   INSTITUTIONAL VAREJO SECTION SPECIFIC STYLES
   ========================================= */
#varejo {
    background-color: #F3F6FA;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(11, 86, 196, 0.03) 0%, transparent 45%),
        radial-gradient(circle at 88% 80%, rgba(242, 196, 0, 0.02) 0%, transparent 40%),
        linear-gradient(135deg, #F3F6FA 0%, #EBF2FC 100%);
    padding: 95px 0 115px;
    /* Increased bottom padding for V-divider */
    position: relative;
    overflow: hidden;
}

/* Slanted top transition (Solid State style) */
#varejo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'><polygon points='0,100 100,0 100,100' style='fill:%23F3F6FA;'/></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: translateY(-98%);
    pointer-events: none;
    z-index: 2;
}

/* V-divider bottom transition (Directive style) */
#varejo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 16px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='16' viewBox='0 0 32 16' preserveAspectRatio='none'><polygon points='0,0 16,16 32,0' style='fill:%23EBF2FC;'/></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 5;
    pointer-events: none;
}

#varejo .container {
    max-width: 1200px;
}

#varejo .split-section {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr;
    gap: 75px;
    align-items: center;
}

#varejo .split-img-wrapper {
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(8, 58, 140, 0.06);
    border: 1px solid rgba(8, 58, 140, 0.04);
    background-color: #ffffff;
    padding: 16px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Accent shapes in corners */
#varejo .split-img-wrapper::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 40px;
    height: 40px;
    border-top: 3px solid var(--secondary);
    border-left: 3px solid var(--secondary);
    border-top-left-radius: 10px;
    pointer-events: none;
    transition: all 0.3s ease;
}

#varejo .split-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    border-bottom-right-radius: 10px;
    pointer-events: none;
    transition: all 0.3s ease;
}

#varejo .split-img-wrapper:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 60px rgba(8, 58, 140, 0.12);
}

#varejo .split-img-wrapper:hover::before {
    top: -10px;
    left: -10px;
}

#varejo .split-img-wrapper:hover::after {
    bottom: -10px;
    right: -10px;
}

#varejo .split-img-wrapper img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid rgba(8, 58, 140, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

#varejo .split-info h2 {
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 900;
    color: var(--bg-dark);
    margin-bottom: 18px;
    line-height: 1.25;
}

#varejo .split-info .intro {
    font-size: 16px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#varejo .split-info .main-text {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

#varejo .bullet-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
}

#varejo .bullet-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #ffffff;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(8, 58, 140, 0.04);
    border-left: 3px solid var(--primary);
    box-shadow: 0 4px 15px rgba(8, 58, 140, 0.01);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#varejo .bullet-item:last-child {
    grid-column: span 2;
}

#varejo .bullet-item:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 86, 196, 0.2);
    border-left-color: var(--secondary-hover);
    box-shadow: 0 8px 25px rgba(11, 86, 196, 0.06);
}

#varejo .bullet-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(11, 86, 196, 0.06);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

#varejo .bullet-item:hover .bullet-icon {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

#varejo .bullet-text h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 0;
    text-transform: none;
}

#varejo .complementary-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 35px;
    border-left: 4px solid var(--secondary-hover);
    padding-left: 18px;
    background: rgba(242, 196, 0, 0.04);
    padding-top: 12px;
    padding-bottom: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

#varejo .btn-whatsapp {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

#varejo .text-yellow {
    color: #d1a100;
    font-weight: 800;
}

@media (max-width: 992px) {
    #varejo .split-section {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    #varejo {
        padding: 60px 0;
    }

    #varejo .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #varejo .split-img-wrapper {
        max-width: 450px;
        margin: 0 auto;
        padding: 12px;
    }

    #varejo .split-info h2 {
        text-align: left;
    }

    #varejo .split-info .intro {
        text-align: left;
    }

    #varejo .btn-whatsapp {
        display: flex;
        width: 100%;
        justify-content: center;
    }
}

/* Atacado dark box styling */
.atacado-section {
    background: linear-gradient(135deg, var(--bg-navy-deep) 0%, var(--primary) 100%);
    color: #ffffff;
    border-top: 4px solid var(--secondary);
    border-bottom: 4px solid var(--secondary);
    padding: 110px 0;
}

.atacado-section h2 {
    color: #ffffff;
}

.atacado-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 35px;
    margin-bottom: 45px;
}

.atacado-feat-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.atacado-feat-card:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: var(--secondary);
    transform: translateY(-4px);
}

.atacado-feat-card i {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.atacado-feat-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.atacado-feat-card p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.atacado-section .split-img-wrapper img {
    filter: grayscale(25%) brightness(0.85);
    /* Estilização corporativa temporária para a foto atual */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.atacado-section .split-img-wrapper:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}

.atacado-section .btn-yellow {
    box-shadow: 0 8px 25px rgba(242, 196, 0, 0.3);
    padding: 18px 38px;
    font-size: 16.5px;
    /* CTA com presença forte */
    letter-spacing: 0.5px;
}

.atacado-section .btn-yellow:hover {
    box-shadow: 0 10px 30px rgba(242, 196, 0, 0.45);
}

/* =========================================
   COMMERCIAL BENEFITS MARQUEE
   ========================================= */
.benefits-marquee {
    background-color: #072C6A;
    /* Azul escuro Connect */
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 48px;
    border-bottom: 2px solid var(--secondary);
    z-index: 10;
    position: relative;
}

.benefits-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollBenefitsMarquee 20s linear infinite;
}

.benefits-marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.benefits-marquee-content span {
    font-family: var(--font-family-title);
    font-size: 13px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    padding: 0 20px;
}

.benefits-marquee-content .marquee-sep {
    color: #FFD11A;
    /* Amarelo Connect */
    font-size: 14px;
    padding: 0 10px;
}

@keyframes scrollBenefitsMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for benefits marquee */
@media (max-width: 768px) {
    .benefits-marquee {
        height: 40px;
    }

    .benefits-marquee-content span {
        font-size: 11px;
        letter-spacing: 1.2px;
        padding: 0 12px;
    }

    .benefits-marquee-content .marquee-sep {
        font-size: 12px;
        padding: 0 6px;
    }
}

/* =========================================
   BRANDS SECTION (INFINITE MARQUEE)
   ========================================= */
.brands-section {
    background-color: #ffffff !important;
    background: #ffffff !important;
    padding: 40px 0 30px;
    /* Mais compacto com título integrado */
    border-bottom: 1px solid var(--border);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.brands-title-container {
    text-align: center;
    margin-bottom: 25px;
}

.brands-title {
    font-family: var(--font-family-title);
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    color: var(--text-secondary);
    opacity: 0.85;
    /* Melhor contraste e presença */
}

.brands-slider {
    width: 100%;
    position: relative;
    padding: 15px 0;
}

.brands-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    /* Reduzido para caber todas na mesma linha */
    max-width: 1140px;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    height: 90px;
    /* Ajustado para melhor proporção na mesma linha */
    width: auto;
    object-fit: contain;
    filter: none;
    /* Colorido por padrão */
    opacity: 1;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 160px;
    /* Reduzido para evitar quebra de linha */
}

.brand-logo img:hover {
    transform: scale(1.06);
}

/* Responsividade para marcas estáticas */
@media (max-width: 768px) {
    .brand-logo img {
        height: 75px;
        max-width: 130px;
    }

    .brands-track {
        gap: 30px;
    }
}

/* =========================================
   BENEFITS SECTION ("POR QUE COMPRAR")
========================================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 51, 128, 0.15);
}

.benefit-card:hover::before {
    background-color: var(--secondary);
    width: 6px;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background-color: rgba(11, 86, 196, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--bg-dark);
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   HOW IT WORKS (DUAL TRACK SYSTEM)
========================================= */
.tracks-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 35px;
}

.workflow-track {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.workflow-track:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.workflow-track.track-retail {
    border-top: 5px solid var(--primary);
}

.workflow-track.track-wholesale {
    border-top: 5px solid var(--secondary);
}

.track-header {
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}

.track-header i {
    font-size: 38px;
    margin-bottom: 12px;
}

.track-retail .track-header i {
    color: var(--primary);
}

.track-wholesale .track-header i {
    color: var(--secondary-hover);
}

.track-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-top: 10px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
}

/* Connecting dashed line */
.steps-list::before {
    content: '';
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 23px;
    width: 2px;
    border-left: 2px dashed var(--border);
    z-index: 1;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
    padding: 5px 0;
}

.step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 2px solid var(--border);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-item:hover .step-num {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: scale(1.08);
}

.step-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 4px;
    margin-top: 10px;
}

.step-info p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   PROVA SOCIAL (GOOGLE REVIEWS)
========================================= */
.reviews-section {
    text-align: center;
    padding: 95px 0;
    background: transparent;
    position: relative;
}

.reviews-section .logo-center {
    max-width: 170px;
    margin: 0 auto 25px;
    opacity: 0.95;
    filter: drop-shadow(0 4px 10px rgba(8, 58, 140, 0.05));
}

.overall-rating {
    margin-bottom: 55px;
}

.overall-rating h3 {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 950;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.overall-rating .stars {
    color: #FFB300;
    font-size: 26px;
    letter-spacing: 3px;
    margin-bottom: 14px;
    text-shadow: 0 2px 4px rgba(255, 179, 0, 0.15);
}

.overall-rating p {
    font-size: 15.5px;
    color: var(--text-secondary);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.review-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 35px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

/* Quote icon decoration (PrimeDental style) */
.review-card::before {
    content: '“';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 80px;
    font-family: 'Georgia', serif;
    color: rgba(11, 86, 196, 0.04);
    line-height: 1;
    font-weight: bold;
    pointer-events: none;
    z-index: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 86, 196, 0.2);
    box-shadow: var(--shadow-md);
}

.review-card .google-icon {
    position: absolute;
    top: 35px;
    right: 30px;
    width: 22px;
    height: auto;
    opacity: 0.85;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.reviewer-initial {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.reviewer-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 3px;
}

.reviewer-info span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.review-stars {
    color: #FFB300;
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 3px;
    position: relative;
    z-index: 2;
}

.review-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* =========================================
   QUEM SOMOS SECTION
========================================= */
.about-flex {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(28px, 3.2vw, 38px);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0 40px;
}

.about-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--bg-dark);
}

.about-list-item i {
    color: var(--secondary-hover);
    font-size: 16px;
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* =========================================
   CTA FINAL DIVIDIDO (SPLIT CTA BOX)
========================================= */
section:has(.dual-cta-container) {
    position: relative;
    padding-top: 150px !important;
    background-color: #F3F6FA;
}

/* Slanted top transition (Solid State style) */
section:has(.dual-cta-container)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'><polygon points='0,100 100,0 100,100' style='fill:%23F3F6FA;'/></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: translateY(-98%);
    pointer-events: none;
    z-index: 2;
}

.dual-cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.cta-box {
    border-radius: 32px;
    padding: 80px 60px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(7, 44, 106, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    min-height: 390px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(4, 27, 68, 0.5);
}

.cta-box.cta-retail {
    background: linear-gradient(135deg, rgba(11, 86, 196, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%),
        url('assets/imagens/cta-final-varejo.webp') center center / cover no-repeat;
    border-top: 5px solid var(--secondary);
}

.cta-box.cta-wholesale {
    background: linear-gradient(135deg, rgba(11, 86, 196, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%),
        url('assets/imagens/cta-final-atacado.webp') center center / cover no-repeat;
    border-top: 5px solid var(--secondary);
}

.cta-box>div,
.cta-box .btn {
    position: relative;
    z-index: 2;
}

.cta-box h3 {
    color: #ffffff;
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    max-width: 100%;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 1.2vw, 16px);
    margin-bottom: 24px;
    line-height: 1.5;
    max-width: 100%;
}

.cta-box .btn {
    align-self: center;
    width: 100%;
    max-width: 290px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(255, 209, 26, 0.2);
}

.cta-box .btn:hover {
    box-shadow: 0 12px 30px rgba(255, 209, 26, 0.35);
}

.cta-box .btn i {
    margin-right: 8px;
}

/* =========================================
   FOOTER SECTION
========================================= */
.site-footer {
    background-color: var(--bg-very-dark);
    color: #ffffff;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.1fr 0.9fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 12px;
    width: 100%;
    transition: all 0.3s ease;
}

.footer-btn.btn-wpp:hover {
    background-color: var(--whatsapp);
    border-color: var(--whatsapp);
    color: #ffffff;
}

.footer-btn.btn-call:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--secondary);
    color: var(--bg-navy-deep);
    transform: translateY(-2px);
}

.footer-seo-container {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    margin-top: 40px;
}

.footer-seo-content p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-seo-content p strong {
    color: rgba(255, 255, 255, 0.92);
}

.footer-seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    margin-top: 15px;
}

.footer-seo-tags span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    margin-right: 6px;
}

.footer-seo-tags a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 30px;
    /* Modern pill style */
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-seo-tags a:hover {
    background-color: var(--secondary);
    color: var(--bg-navy-deep) !important;
    border-color: var(--secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 196, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    margin-top: 35px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* =========================================
   FLOATING CTA (PULSATING & ACCESSIBLE)
========================================= */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: #ffffff !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 18px rgba(34, 197, 94, 0.45);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.float-whatsapp:hover {
    transform: scale(1.08) translateY(-2px);
    background-color: var(--whatsapp-hover);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.6);
}

/* =========================================
   ANIMATIONS & EFFECTS
========================================= */
.pulse-cta {
    animation: pulse-ring 2.5s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Scroll Fade-In classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Delay modifiers */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES (MOBILE-FIRST)
========================================= */

/* Tablets / Medium Viewports */
@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }

    .desktop-nav {
        display: none;
    }

    .btn-header-cta {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .logo-img {
        height: 40px;
    }

    .main-header {
        padding: 5px 0;
    }

    /* Hero layout collapse */
    .hero {
        padding: 160px 0 60px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-bg-img {
        object-position: 70% center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        padding-bottom: 0;
    }

    .hero-actions-desktop {
        display: none !important;
    }

    .hero-actions-mobile {
        display: flex !important;
        justify-content: center;
        width: 100%;
        margin-top: 30px;
        position: relative;
        z-index: 10;
        pointer-events: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-battery-slider-wrapper {
        position: relative;
        width: 100%;
        max-width: 364px;
        aspect-ratio: 1378 / 1142;
        margin: 40px auto 0 auto;
        display: block;
        z-index: 5;
        overflow: visible;
        pointer-events: auto;
    }

    .hero-visual-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        transform: none !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
    }

    .hero-battery-slider {
        position: relative;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
    }

    .hero-battery-slider::before {
        display: none;
    }

    .hero-battery-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Swipable Carousel for Catalog on Tablets & Mobile */
    .catalog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        margin-top: 25px;
        padding: 10px 20px 25px 20px;
        margin-left: -20px;
        margin-right: -20px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .catalog-grid::-webkit-scrollbar {
        height: 6px;
    }

    .catalog-grid::-webkit-scrollbar-track {
        background: rgba(8, 58, 140, 0.04);
        border-radius: 3px;
    }

    .catalog-grid::-webkit-scrollbar-thumb {
        background: rgba(8, 58, 140, 0.15);
        border-radius: 3px;
    }

    .catalog-card {
        flex: 0 0 250px;
        scroll-snap-align: start;
        padding: 30px 20px;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
        order: -1;
    }

    .split-info {
        text-align: center;
    }

    .split-info .bullet-list {
        align-items: stretch;
        max-width: 480px;
        margin: 0 auto 35px auto;
        text-align: left;
    }

    .split-info .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: inline-flex;
    }

    .atacado-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tracks-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 20px;
    }

    .about-flex {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .dual-cta-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobiles / Compact Viewports */
@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 140px 0 45px 0;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16.5px;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        padding: 0 5px;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .hero-actions .btn {
        width: auto;
        flex: 1;
        padding: 12px 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cta-box {
        padding: 45px 25px;
        min-height: 300px;
    }

    .cta-box h3 {
        font-size: 24px;
    }

    .cta-box .btn {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-col iframe {
        height: 180px;
    }

    .float-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 28px;
    }
}

/* =========================================
   RESTRUCTURING STYLES (PORTFOLIO, CANAIS, CONFIANÇA/PROCESSO)
   ========================================= */

/* Bloco 2: Portfólio Integrado */
.brands-section {
    padding: 50px 0 45px;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-top: 1px solid rgba(11, 86, 196, 0.05);
    border-bottom: 1px solid rgba(11, 86, 196, 0.05);
    width: 100%;
    overflow: hidden;
}

.brands-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    width: max-content;
    margin: 0;
    animation: marquee 25s linear infinite;
}

.brands-row:hover {
    animation-play-state: paused;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    flex: 0 0 auto;
}

.brand-item img {
    max-width: 130px;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brands-promo-text {
    text-align: center;
    margin-top: 32px;
    font-family: var(--font-family-title);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary, #0B56C4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.brands-promo-text::before,
.brands-promo-text::after {
    content: '';
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(11, 86, 196, 0.15), transparent);
    flex-grow: 1;
    max-width: 150px;
}

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

@media (max-width: 980px) {
    .brands-row {
        gap: 40px;
    }

    .brand-item {
        flex: 0 0 auto;
    }

    .brand-item img {
        max-width: 110px;
        max-height: 38px;
    }
}

@media (max-width: 560px) {
    .brands-row {
        gap: 30px;
    }

    .brand-item {
        flex: 0 0 auto;
    }

    .brand-item img {
        max-width: 90px;
        max-height: 32px;
    }
    }

    .brands-promo-text {
        font-size: 11px;
        letter-spacing: 1px;
        margin-top: 24px;
        gap: 8px;
    }

    .brands-promo-text::before,
    .brands-promo-text::after {
        max-width: 60px;
    }
}

/* Bloco 4: Canais Comerciais */
.canais-comerciais-section {
    padding: 95px 0 115px;
    /* Increased bottom padding for V-divider */
    background-color: #ffffff;
    background-image:
        linear-gradient(90deg, rgba(11, 86, 196, 0.012) 1px, transparent 1px),
        linear-gradient(0deg, rgba(11, 86, 196, 0.012) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(11, 86, 196, 0.02) 0%, transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #F1F5F9 100%);
    background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
    position: relative;
}

.canais-comerciais-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 16px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='16' viewBox='0 0 32 16' preserveAspectRatio='none'><polygon points='0,0 16,16 32,0' style='fill:%23F1F5F9;'/></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 5;
    pointer-events: none;
}

.canais-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
}

.canal-card {
    border-radius: 32px;
    padding: 65px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.canal-card h3 {
    font-size: clamp(24px, 2.7vw, 32px);
    font-weight: 900;
    margin: 20px 0 15px;
    line-height: 1.25;
}

.canal-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-family-title);
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.canal-desc {
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 35px;
}

.canal-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
    width: 100%;
}

.canal-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 500;
}

.canal-features-list li i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 15px;
}

/* Theme Varejo (Light Card) */
.canal-varejo {
    background-color: #ffffff;
    border: 1px solid rgba(8, 58, 140, 0.06);
    box-shadow: 0 4px 6px rgba(8, 58, 140, 0.01), 0 15px 35px rgba(8, 58, 140, 0.04);
}

/* Top accent bar */
.canal-varejo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
}

.canal-varejo:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(8, 58, 140, 0.08);
    border-color: rgba(11, 86, 196, 0.25);
}

.canal-varejo .canal-badge {
    background-color: rgba(11, 86, 196, 0.08);
    color: var(--primary);
}

.canal-varejo h3 {
    color: var(--bg-dark);
}

.canal-varejo .text-blue-highlight {
    color: var(--primary);
    font-weight: 900;
}

.canal-varejo .canal-desc {
    color: var(--text-secondary);
}

.canal-varejo .canal-features-list li {
    color: var(--text-primary);
    align-items: center;
}

.canal-varejo .canal-features-list li i {
    color: var(--primary);
    background-color: rgba(11, 86, 196, 0.06);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.canal-varejo .btn-whatsapp {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

/* Theme Atacado (Dark Card) */
.canal-atacado {
    background: linear-gradient(135deg, var(--bg-navy-deep) 0%, var(--primary) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 50px rgba(5, 26, 59, 0.3);
}

/* Top accent bar */
.canal-atacado::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-hover);
}

/* Subtle amber visual glow */
.canal-atacado::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 209, 26, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.canal-atacado:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 209, 26, 0.35);
    box-shadow: inset 0 0 0 1px rgba(255, 209, 26, 0.15), 0 25px 60px rgba(4, 27, 68, 0.45);
}

.canal-atacado .canal-badge {
    background-color: rgba(255, 209, 26, 0.12);
    color: var(--secondary-hover);
}

.canal-atacado h3 {
    color: #ffffff;
}

.canal-atacado .canal-desc {
    color: rgba(255, 255, 255, 0.85);
}

.canal-atacado .canal-features-list li {
    color: rgba(255, 255, 255, 0.95);
    align-items: center;
}

.canal-atacado .canal-features-list li i {
    color: var(--secondary-hover);
    background-color: rgba(255, 209, 26, 0.12);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.canal-atacado .btn-yellow {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(255, 209, 26, 0.2);
}

.canal-atacado .text-yellow {
    color: var(--secondary-hover) !important;
    font-weight: 900;
}

/* Bloco 5: Confiança e Processo */
/* Bloco 5: Confiança e Processo */
.por-que-connect-section {
    background: #ffffff;
    padding: 95px 0 60px;
    position: relative;
    overflow: hidden;
}

.como-comprar-section {
    background-color: #ffffff;
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

/* V-divider bottom transition (Directive style) */
#confianca-processo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 16px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='16' viewBox='0 0 32 16' preserveAspectRatio='none'><polygon points='0,0 16,16 32,0' style='fill:%23ffffff;'/></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 5;
    pointer-events: none;
}

/* V-divider bottom transition for Como Comprar */
.como-comprar-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 16px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='16' viewBox='0 0 32 16' preserveAspectRatio='none'><polygon points='0,0 16,16 32,0' style='fill:%23072C6A;'/></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 5;
    pointer-events: none;
}

.benefits-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 70px;
}

.benefit-card-compact {
    background: linear-gradient(135deg, #ffffff 0%, #F9FAFB 100%);
    border: 1px solid rgba(8, 58, 140, 0.05);
    border-radius: 24px;
    padding: 42px 32px;
    box-shadow: 0 5px 25px rgba(8, 58, 140, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.benefit-card-compact::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    background: transparent;
    border-right: 2px solid transparent;
    border-bottom: 2px solid transparent;
    transition: all 0.35s ease;
}

.benefit-card-compact:nth-child(1):hover::after {
    border-color: var(--primary);
}

.benefit-card-compact:nth-child(2):hover::after {
    border-color: var(--secondary-hover);
}

.benefit-card-compact:nth-child(3):hover::after {
    border-color: var(--bg-navy-deep);
}

/* Accent top borders for each card */
.benefit-card-compact:nth-child(1) {
    border-top: 4px solid var(--primary);
}

.benefit-card-compact:nth-child(2) {
    border-top: 4px solid var(--secondary-hover);
}

.benefit-card-compact:nth-child(3) {
    border-top: 4px solid var(--bg-navy-deep);
}

.benefit-card-compact:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 86, 196, 0.2);
    box-shadow: 0 15px 35px rgba(8, 58, 140, 0.06);
}

.benefit-icon-compact {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(11, 86, 196, 0.06);
    border: 1px solid rgba(11, 86, 196, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card-compact:hover .benefit-icon-compact {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: scale(1.05) rotate(5deg);
}

.benefit-card-compact h3 {
    font-size: 16.5px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-card-compact p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-secondary);
}

.workflow-header-container {
    text-align: center;
    margin-bottom: 50px;
    border-top: none;
    padding-top: 10px;
}

.workflow-header-container h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.workflow-header-container p {
    font-size: 15.5px;
    color: var(--text-secondary);
}

.tracks-container-horizontal {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-track-horizontal {
    padding: 30px 0;
    position: relative;
}

.track-header-horizontal {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(8, 58, 140, 0.08);
    padding-bottom: 15px;
}

.track-header-horizontal i {
    font-size: 24px;
    color: var(--primary);
}

.track-header-horizontal h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stepper-horizontal-container {
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.stepper-line {
    position: absolute;
    top: 42px;
    /* Center of the 64px circle (32px) + wrapper padding (10px) */
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background-color: var(--border);
    z-index: 1;
}

.stepper-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 25%;
    padding: 0 15px;
}

.stepper-circle-wrap {
    position: relative;
    margin-bottom: 20px;
    background-color: #ffffff;
    /* Matches section background to mask line */
    border-radius: 50%;
    padding: 10px;
}

.stepper-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stepper-circle i {
    font-size: 24px;
    color: var(--primary);
}

.stepper-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--bg-navy-deep);
    font-weight: 800;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.stepper-step:hover .stepper-circle {
    transform: scale(1.1);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.stepper-step:hover .stepper-circle i {
    color: var(--secondary);
}

.stepper-info h5 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0.2px;
}

.stepper-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 220px;
    margin: 0 auto;
    font-weight: 500;
}

/* Horizontal Image-based Promo Banner */
.horizontal-divider-banner-img-link {
    display: block;
    margin: 20px 0 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    line-height: 0;
    max-width: 100%;
}

.horizontal-divider-banner-img-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(8, 58, 140, 0.15);
}

.banner-revendedor-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Horizontal Promo Banner */
.horizontal-divider-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--bg-navy-deep) 0%, var(--primary) 100%);
    border-radius: 20px;
    padding: 30px 40px;
    margin: 50px 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    gap: 24px;
}

.horizontal-divider-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 209, 26, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 22px;
}

.banner-content i {
    font-size: 34px;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.banner-text h4 {
    font-family: var(--font-family-title);
    font-size: 17px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.banner-text p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-banner-cta {
    min-height: 48px;
    padding: 0 28px;
    font-size: 13.5px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* =========================================
   RESPONSIVIDADE CANAIS E CONFIANÇA
   ========================================= */
@media (max-width: 991px) {
    .canais-grid {
        gap: 25px;
    }

    .canal-card {
        padding: 40px 30px;
    }

    .stepper-line {
        display: none;
    }

    .stepper-steps {
        flex-direction: column;
        gap: 32px;
        position: relative;
        padding-left: 20px;
    }

    .stepper-steps::before {
        content: '';
        position: absolute;
        left: 42px;
        /* center of 64px circle + padding */
        top: 20px;
        bottom: 20px;
        width: 2px;
        border-left: 2px dashed rgba(8, 58, 140, 0.18);
        background: transparent;
        z-index: 1;
        pointer-events: none;
    }

    .stepper-step {
        width: 100%;
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 0;
        z-index: 2;
    }

    .stepper-circle-wrap {
        margin-bottom: 0;
        margin-right: 20px;
        padding: 10px;
    }

    .stepper-info h5 {
        margin-bottom: 4px;
    }

    .stepper-info p {
        margin: 0;
        max-width: none;
    }

    .horizontal-divider-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 25px 20px;
        margin: 35px 0;
        gap: 20px;
    }

    .banner-content {
        flex-direction: column;
        gap: 15px;
    }

    .btn-banner-cta {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .canais-comerciais-section {
        padding: 50px 0;
    }

    .canais-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .benefits-grid-compact {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .benefit-card-compact {
        padding: 25px;
    }

    .workflow-header-container {
        padding-top: 40px;
    }
}

/* =========================================
   FAIXA DE BENEFÍCIOS RÁPIDOS (PÓS-HERO)
   ========================================= */
.quick-benefits-bar {
    background: #083A8C;
    border-bottom: 3px solid var(--yellow-cta, #FFD11A);
    padding: 14px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.quick-benefits-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 120px,
            rgba(255, 255, 255, 0.03) 120px,
            rgba(255, 255, 255, 0.03) 121px);
    pointer-events: none;
}

.quick-benefits-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 8px;
}

.quick-benefits-container::-webkit-scrollbar {
    display: none;
}

/* Reset list semantics while preserving layout */
.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 8px;
}

.benefit-item-quick {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffffff;
    white-space: nowrap;
    padding: 6px 18px;
    flex-shrink: 0;
    position: relative;
}

.benefit-item-quick+.benefit-item-quick::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
}

.benefit-item-quick i {
    color: var(--yellow-cta, #FFD11A);
    font-size: 15px;
    flex-shrink: 0;
}

/* =========================================
   SEÇÃO ATENDIMENTO — VAREJO × ATACADO
   ========================================= */
.atendimento-section {
    padding: 80px 0;
    background: #F3F6FA;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(11, 86, 196, 0.06);
}

.atendimento-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary, #0B56C4), var(--yellow-cta, #FFD11A), var(--blue-primary, #0B56C4));
}

.atendimento-header {
    text-align: center;
    margin-bottom: 48px;
}

.atendimento-header h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--blue-dark, #072C6A);
    margin-bottom: 12px;
    line-height: 1.2;
}

.atendimento-header p {
    font-size: 16px;
    color: var(--text-secondary, #555);
    max-width: 560px;
    margin: 0 auto;
}

.atendimento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Coluna Varejo (clara) --- */
.atendimento-col {
    border-radius: 16px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.atendimento-col:hover {
    transform: translateY(-4px);
}

.atendimento-col-varejo {
    background: #ffffff;
    border: 2px solid #e8eef8;
    box-shadow: 0 8px 40px rgba(11, 86, 196, 0.1);
}

.atendimento-col-varejo:hover {
    box-shadow: 0 16px 60px rgba(11, 86, 196, 0.16);
    border-color: var(--blue-primary, #0B56C4);
}

.atendimento-col-atacado {
    background: linear-gradient(135deg, var(--bg-navy-deep) 0%, var(--primary) 100%);
    border: 2px solid rgba(255, 209, 26, 0.2);
    box-shadow: 0 8px 40px rgba(7, 44, 106, 0.35);
}

.atendimento-col-atacado:hover {
    box-shadow: 0 16px 60px rgba(7, 44, 106, 0.5);
    border-color: rgba(255, 209, 26, 0.5);
}

/* Stripe decoration */
.atendimento-col::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.atendimento-col-varejo::after {
    background: var(--blue-primary, #0B56C4);
}

.atendimento-col-atacado::after {
    background: #ffffff;
}

/* Badge */
.atend-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    width: fit-content;
}

.atend-badge-varejo {
    background: rgba(11, 86, 196, 0.08);
    color: var(--blue-primary, #0B56C4);
    border: 1px solid rgba(11, 86, 196, 0.2);
}

.atend-badge-atacado {
    background: rgba(255, 209, 26, 0.15);
    color: var(--yellow-cta, #FFD11A);
    border: 1px solid rgba(255, 209, 26, 0.3);
}

/* Titles */
.atend-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.atendimento-col-varejo .atend-title {
    color: var(--blue-dark, #072C6A);
}

.atendimento-col-atacado .atend-title {
    color: #ffffff;
}

.atend-title span {
    display: block;
}

.atendimento-col-varejo .atend-title span {
    color: var(--blue-primary, #0B56C4);
}

.atendimento-col-atacado .atend-title span {
    color: var(--yellow-cta, #FFD11A);
}

/* Description */
.atend-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.atendimento-col-varejo .atend-desc {
    color: var(--text-secondary, #555);
}

.atendimento-col-atacado .atend-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* Feature list */
.atend-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.atend-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.4;
}

.atendimento-col-varejo .atend-features li {
    color: var(--text-primary, #1a1a2e);
}

.atendimento-col-atacado .atend-features li {
    color: rgba(255, 255, 255, 0.9);
}

.atend-features li i {
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.atendimento-col-varejo .atend-features li i {
    color: var(--blue-primary, #0B56C4);
}

.atendimento-col-atacado .atend-features li i {
    color: var(--yellow-cta, #FFD11A);
}

/* CTA button wrapper */
.atend-cta-wrap {
    margin-top: auto;
    padding-top: 8px;
}

/* =========================================
   FLUXO VISUAL — AVALIAÇÕES → CTA FINAL
   ========================================= */
.section-prova-social {
    background-color: var(--white);
    padding: 80px 0 60px;
    color: var(--text-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-prova-social .overall-rating h3 {
    color: var(--text-primary);
}

.section-prova-social .overall-rating p {
    color: var(--text-secondary);
}

.pre-cta-title {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 8px;
}

.pre-cta-title h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--blue-dark, #072C6A);
    margin-bottom: 6px;
}

.pre-cta-title p {
    font-size: 15px;
    color: var(--text-secondary, #555);
}

/* =========================================
   RESPONSIVIDADE — NOVOS COMPONENTES
   ========================================= */
@media (max-width: 991px) {
    .atendimento-grid {
        gap: 20px;
    }

    .atendimento-col {
        padding: 36px 30px;
    }
}

@media (max-width: 768px) {

    /* Benefits bar — scroll horizontal no mobile */
    .quick-benefits-bar {
        padding: 10px 0;
    }

    .quick-benefits-container {
        justify-content: flex-start;
        padding: 0 16px;
    }

    .benefit-item-quick {
        font-size: 12px;
        padding: 4px 14px;
        gap: 6px;
    }

    .benefit-item-quick i {
        font-size: 13px;
    }

    /* Atendimento — stack vertical no mobile */
    .atendimento-section {
        padding: 60px 0;
    }

    .atendimento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .atendimento-col {
        padding: 32px 24px;
    }

    .atendimento-col-atacado {
        order: -1;
        /* Atacado primeiro no mobile para impacto */
    }

    .atendimento-header {
        margin-bottom: 36px;
    }

    .section-prova-social {
        padding: 60px 0 40px;
    }
}

@media (max-width: 480px) {
    .benefit-item-quick {
        font-size: 11px;
        padding: 4px 10px;
        gap: 5px;
    }

    .atendimento-col {
        padding: 28px 20px;
        gap: 18px;
    }
}

/* ==========================================================================
   GRUPO CONNECT — AJUSTES DE FINO ACABAMENTO & ACABAMENTO PREMIUM
   ========================================================================== */

/* --- 1. FAIXA DE BENEFÍCIOS RÁPIDOS (PÓS-HERO) --- */
.quick-benefits-bar {
    padding: 18px 0 !important;
    /* Aumenta a altura da faixa */
}

.benefit-item-quick {
    font-size: 14.5px !important;
    /* Textos maiores no desktop */
    font-weight: 700 !important;
    padding: 6px 26px !important;
    /* Espaçamento mais confortável */
}

.benefit-item-quick i {
    font-size: 18px !important;
    /* Ícones maiores no desktop */
}

/* --- 2. FAIXA DE MARCAS (CONCLUÍDO) --- */

/* --- 3. CARDS DE APLICAÇÃO (SLIDER) --- */
.app-card .app-title {
    color: #051A3B !important;
    /* Azul marinho escuro de altíssimo contraste */
    font-size: 15px !important;
    font-weight: 900 !important;
}

.app-card .app-cta {
    color: #128A42 !important;
    /* Verde mais escuro de excelente contraste no fundo claro */
    font-weight: 900 !important;
    font-size: 11.5px !important;
}

/* --- 4. SEÇÃO "COMO POSSO SER ATENDIDO?" (LAYOUT EDITORIAL PREMIUM) --- */
.atend-horizontal-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.atend-card-horizontal {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 480px;
}

.atend-card-varejo {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.atend-card-varejo:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 86, 196, 0.15);
    box-shadow: var(--shadow-lg);
}

.atend-card-atacado {
    background: linear-gradient(135deg, var(--bg-navy-deep) 0%, var(--bg-very-dark) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-md);
}

.atend-card-atacado:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 209, 26, 0.3);
    box-shadow: var(--shadow-lg);
}

.atend-card-content {
    flex: 1.1;
    padding: 64px 64px 64px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 3;
}

.atend-micro-label {
    font-family: var(--font-family-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.atend-micro-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.atend-card-varejo .atend-micro-label {
    color: var(--primary);
}

.atend-card-varejo .atend-micro-label::before {
    background-color: var(--primary);
}

.atend-card-atacado .atend-micro-label {
    color: var(--secondary-hover);
}

.atend-card-atacado .atend-micro-label::before {
    background-color: var(--secondary-hover);
}

.atend-micro-label i {
    display: none;
    /* Oculta ícone padrão para manter mais limpo, usando o dot customizado */
}

.atend-title {
    font-family: var(--font-family-title);
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 800;
    margin: 0;
    line-height: 1.25;
    text-transform: none;
    letter-spacing: -0.02em;
}

.atend-card-varejo .atend-title {
    color: var(--text-primary);
}

.atend-card-atacado .atend-title {
    color: #ffffff;
}

.atend-subtext {
    font-family: var(--font-family-body);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
}

.atend-card-varejo .atend-subtext {
    color: var(--text-secondary);
}

.atend-card-atacado .atend-subtext {
    color: rgba(255, 255, 255, 0.75);
}

.atend-features-horizontal {
    list-style: none;
    padding: 0;
    margin: 4px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.atend-features-horizontal li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-family-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.atend-card-varejo .atend-features-horizontal li {
    color: var(--text-primary);
}

.atend-card-atacado .atend-features-horizontal li {
    color: rgba(255, 255, 255, 0.9);
}

.atend-features-horizontal li i {
    font-size: 17px;
    flex-shrink: 0;
}

.atend-card-varejo .atend-features-horizontal li i {
    color: var(--primary);
}

.atend-card-atacado .atend-features-horizontal li i {
    color: var(--secondary-hover);
}

.atend-card-image-wrap {
    flex: 0.9;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.atend-card-image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.atend-card-varejo .atend-card-image-wrap::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
}

.atend-card-atacado .atend-card-image-wrap::after {
    background: linear-gradient(to right, rgba(4, 25, 61, 0.4) 0%, rgba(4, 25, 61, 0) 100%);
}

.atend-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.atend-card-horizontal:hover .atend-card-img {
    transform: scale(1.04);
}

/* --- 5. POR QUE A CONNECT + COMO COMPRAR --- */
#confianca-processo {
    padding: 80px 0 90px !important;
    /* Compacta espaçamento superior e inferior da seção */
}

.benefits-grid-compact {
    margin-bottom: 50px !important;
    /* Reduz espaço entre diferenciais e fluxo de compra */
}

.benefit-card-compact {
    border: 1px solid rgba(8, 58, 140, 0.08) !important;
    /* Borda levemente mais definida */
    box-shadow: 0 8px 30px rgba(8, 58, 140, 0.04) !important;
    /* Sombra sutil premium */
}

.benefit-card-compact:hover {
    box-shadow: 0 16px 40px rgba(8, 58, 140, 0.08) !important;
}

.benefit-icon-compact {
    width: 58px !important;
    /* Ícone levemente mais encorpado */
    height: 58px !important;
    font-size: 22px !important;
    background-color: rgba(11, 86, 196, 0.08) !important;
    /* Um pouco mais presente */
    border: 1px solid rgba(11, 86, 196, 0.16) !important;
}

.workflow-header-container {
    padding-top: 10px !important;
    /* Reduzido após a remoção do border-top */
    margin-bottom: 35px !important;
}

/* --- 6. AVALIAÇÕES GOOGLE --- */
.reviews-section {
    padding: 50px 0 !important;
    /* Compacta o padding vertical da seção */
}

.overall-rating {
    margin-bottom: 35px !important;
    /* Aproxima título e estrelas dos cards */
}

.overall-rating h3 {
    margin-bottom: 8px !important;
}

.overall-rating .stars {
    margin-bottom: 10px !important;
}

.reviews-section .logo-center {
    margin-bottom: 15px !important;
    /* Aproxima a logo do título */
}

/* --- 7. CTA FINAL & RESPONSIVIDADE --- */
section:has(.dual-cta-container) {
    padding-top: 130px !important;
    /* Levemente reduzido no desktop */
}

/* --- MEDIA QUERIES RESPONSIVAS --- */
@media (max-width: 768px) {

    /* Faixa de benefícios no mobile continua compacta com scroll horizontal */
    .quick-benefits-bar {
        padding: 12px 0 !important;
    }

    .benefit-item-quick {
        font-size: 12.5px !important;
        padding: 4px 14px !important;
    }

    .benefit-item-quick i {
        font-size: 14.5px !important;
    }

    /* CTA Final no mobile */
    section:has(.dual-cta-container) {
        padding-top: 80px !important;
        padding-bottom: 60px !important;
    }

    /* Outros espaçamentos móveis */
    #confianca-processo {
        padding: 60px 0 65px !important;
    }

    .reviews-section {
        padding: 50px 0 !important;
    }
}

@media (max-width: 480px) {
    .benefit-item-quick {
        font-size: 11.5px !important;
        padding: 4px 10px !important;
    }
}

/* --- RESPONSIVIDADE DOS CARDS HORIZONTAIS DE ATENDIMENTO --- */
@media (max-width: 991px) {
    .atend-card-horizontal {
        flex-direction: column !important;
        min-height: auto !important;
    }

    .atend-card-content {
        padding: 48px 32px !important;
        gap: 20px !important;
    }

    .atend-card-image-wrap {
        height: 320px !important;
        width: 100% !important;
        min-width: auto !important;
        order: 2 !important;
        /* Mantém texto em cima e imagem embaixo no mobile */
    }

    .atend-card-img {
        position: relative !important;
        height: 100% !important;
    }

    .atend-card-varejo .atend-card-image-wrap::after {
        background: none !important;
    }

    .atend-card-atacado .atend-card-image-wrap::after {
        background: linear-gradient(to bottom, #051A3B 0%, rgba(5, 26, 59, 0) 30%) !important;
    }
}

@media (max-width: 576px) {
    .atend-card-content {
        padding: 36px 24px !important;
        gap: 18px !important;
    }

    .atend-card-image-wrap {
        height: 240px !important;
    }
}

/* --- SEAMLESS MARQUEE TICKER BAR --- */
.marquee-bar {
    background: linear-gradient(180deg, #093170 0%, var(--bg-navy-deep, #072C6A) 50%, #051A3B 100%);
    padding: 18px 0;
    overflow: hidden;
    display: flex;
    position: relative;
    z-index: 10;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 28s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    /* Mantém o espaçamento exato entre os blocos duplicados */
}

.marquee-group span {
    font-family: var(--font-family-title);
    font-size: 13.5px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.marquee-group i {
    color: var(--secondary, #FFD11A);
    /* Raio amarelo da marca */
    font-size: 13px;
    margin: 0 10px;
    filter: drop-shadow(0 0 4px rgba(255, 209, 26, 0.3));
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   GRUPO CONNECT — CUSTOM HERO BUTTONS STYLE (SKILLINE REPLICA)
   ========================================================================== */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-actions .btn {
    text-transform: none;
    /* Keep original capitalization */
    border-radius: 8px;
    /* Square styling matching the reference */
    padding: 14px 24px;
    /* py-3.5 px-6 */
    font-size: 16px;
    /* text-base */
    font-weight: 700;
    /* font-bold */
    letter-spacing: normal;
    min-height: unset;
    /* override global min-height */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
    /* Subtle black shadow behind */
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hero-actions .btn:hover {
    transform: scale(1.05);
}

.hero-actions .btn-whatsapp {
    background-color: #10B981 !important;
    /* Tailwind green-500 */
    color: #ffffff !important;
}

.hero-actions .btn-whatsapp:hover {
    background-color: #059669 !important;
    /* Tailwind green-600 */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3) !important;
}

/* Disable the background shine effect specifically on the hero buttons to stay consistent with skilline */
.hero-actions .btn-whatsapp::after {
    display: none !important;
}

.hero-actions .btn-outline-yellow {
    background-color: transparent !important;
    border: 2px solid #FFD11A !important;
    /* Brighter brand yellow border */
    color: #FFD11A !important;
    /* Brighter brand yellow text */
}

.hero-actions .btn-outline-yellow:hover {
    background-color: #FFD11A !important;
    color: var(--bg-navy-deep) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3) !important;
}

.hero-actions .btn svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

/* ==========================================================================
   GRUPO CONNECT — CUSTOM CARD BUTTONS STYLE (PRIME DENTAL REPLICA)
   ========================================================================== */
.btn-card-varejo {
    background-color: var(--primary, #0B56C4) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    text-transform: none !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    min-height: unset !important;
    padding: 14px 24px !important;
    box-shadow: none !important;
    /* completely flat, no glow/shadow */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-card-varejo:hover {
    background-color: var(--bg-dark, #083A8C) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08) !important;
}

.btn-card-atacado {
    background-color: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 12px !important;
    text-transform: none !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    min-height: unset !important;
    padding: 14px 24px !important;
    box-shadow: none !important;
    /* completely flat, no glow/shadow */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-card-atacado:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    transform: translateY(-2px) !important;
}

/* ==========================================================================
   GRUPO CONNECT — FINAL CTA SECTION (BLUE GRADIENT BACKGROUND)
   ========================================================================== */
.final-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-navy-deep) 0%, var(--bg-very-dark) 100%);
}

.final-cta-section .pre-cta-title h2,
.final-cta-section .pre-cta-title h3 {
    color: #ffffff !important;
}

.final-cta-section .pre-cta-title p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ==========================================================================
   GRUPO CONNECT — QUALITY SECTION (POR QUE CHAMAR A CONNECT)
   ========================================================================== */
.quality-section {
    background: linear-gradient(to bottom, rgba(3, 27, 63, 0.96) 0%, rgba(7, 44, 106, 0.98) 100%), url('assets/hero/fundo-hero.webp') center center / cover no-repeat;
    color: #ffffff;
    padding: 70px 0 75px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.quality-section h2 {
    color: #ffffff;
    font-size: clamp(24px, 2.5vw, 32px);
    margin-bottom: 12px;
    font-weight: 900;
    text-transform: none;
    font-family: var(--font-family-title);
    letter-spacing: 0.3px;
    line-height: 1.25;
}

.quality-section h2 .text-brand-red {
    color: #ffffff;
}

.quality-section h2 .text-brand-yellow {
    color: var(--secondary);
}

/* Subtitle below quality section title */
.quality-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 400;
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.65;
    font-family: var(--font-family-body);
}

.quality-section h3,
.quality-section p.subtitle,
.quality-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.quality-grid {
    display: flex;
    justify-content: center;
    gap: 30px 40px;
    flex-wrap: wrap;
    max-width: 1180px;
    margin: 0 auto 40px;
}

.quality-item {
    flex: 1 1 200px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quality-item h3,
.quality-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 7px;
    text-transform: none;
    letter-spacing: 0.2px;
    line-height: 1.35;
}

.quality-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--font-family-body);
}

/* Support text line below h4 in quality items */
.quality-support {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    margin-top: 0 !important;
}

.quality-icon {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 14px;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quality-icon:hover {
    transform: scale(1.1);
    background-color: var(--secondary);
    color: var(--bg-dark);
    box-shadow: 0 12px 24px rgba(255, 196, 0, 0.25);
}

.quality-section .btn-whatsapp {
    margin-top: 30px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .quality-icon {
        width: 68px;
        height: 68px;
        font-size: 24px;
    }

    .quality-item {
        width: 100% !important;
    }
}

/* =========================================
   GRUPO CONNECT — SEÇÃO SOBRE NÓS
   ========================================= */
.about-section {
    background-color: var(--bg-soft);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: var(--container-width, 1200px) !important;
}

.about-image-banner-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.about-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsiveness */
@media (max-width: 991px) {
    .about-section {
        padding: 50px 0;
    }
}




/* ==========================================================================
   GRUPO CONNECT — REFINAMENTO RESPONSIVO FINAL
   (quality grid, stepper, reviews, CTA final)
   ========================================================================= */

/* Quality grid: CSS Grid para perfeito alinhamento e largura total */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .quality-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 28px 20px !important;
        max-width: 680px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .quality-item {
        width: 100% !important;
    }

    .quality-subtitle {
        font-size: 14.5px !important;
        padding: 0 16px;
        color: rgba(255, 255, 255, 0.85) !important;
        /* Brilho de texto aprimorado para contraste */
    }
}

@media (max-width: 480px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 100% !important;
        gap: 24px 12px !important;
        padding: 0 8px;
    }

    .quality-item {
        width: 100% !important;
    }

    .quality-section {
        padding: 50px 0 55px;
    }
}

/* Textos pequenos e ícones da seção Por que comprar com a Connect */
.quality-support {
    color: rgba(255, 255, 255, 0.85) !important;
    /* Aumenta contraste da descrição pequena */
    font-size: 13px !important;
    /* Maior e mais legível */
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

/* Corrigir alinhamento da linha pontilhada vertical do stepper no Como comprar */
@media (max-width: 991px) {
    .stepper-steps::before {
        left: 62px !important;
        /* Centralizado perfeitamente com os círculos de 64px */
    }
}

@media (max-width: 576px) {
    .stepper-steps {
        padding-left: 20px !important;
    }

    .stepper-steps::before {
        left: 57px !important;
        /* Centralizado perfeitamente com os círculos de 54px */
    }

    .stepper-info h5 {
        font-size: 14.5px;
    }

    .stepper-info p {
        font-size: 13px !important;
    }

    .stepper-circle {
        width: 54px;
        height: 54px;
    }

    .stepper-circle i {
        font-size: 20px;
    }

    .horizontal-divider-banner {
        padding: 20px 16px;
        margin: 25px 0;
    }

    .horizontal-divider-banner-img-link {
        margin: 25px 0 !important;
        border-radius: 12px !important;
    }

    .banner-text h4 {
        font-size: 15px;
    }

    .banner-text p {
        font-size: 13.5px;
    }

    .workflow-header-container h3 {
        font-size: 20px;
    }

    /* Espaçamentos verticais mais adequados no mobile */
    .como-comprar-section {
        padding: 40px 0 50px !important;
    }

    .about-section {
        padding: 50px 0 !important;
    }

    .stat-label {
        font-size: 12px !important;
        /* Maior legibilidade nos stats */
    }
}

/* Títulos: Prevenir quebras de layout e letras órfãs */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: clamp(22px, 5.5vw, 28px) !important;
        line-height: 1.25 !important;
    }

    .atendimento-header h2 {
        font-size: clamp(22px, 5.5vw, 28px) !important;
        line-height: 1.25 !important;
    }

    .atend-title {
        font-size: clamp(20px, 5.5vw, 26px) !important;
        line-height: 1.25 !important;
    }
}

/* Reviews: garantir que 3 cards não esmagam em telas médias */
@media (max-width: 860px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 540px) {
    .reviews-grid {
        grid-template-columns: 1fr !important;
        max-width: 380px;
    }

    .overall-rating h3 {
        font-size: 15px;
    }
}

/* Final CTA section: empilha os boxes e trata os títulos */
@media (max-width: 768px) {
    .cta-box h3 {
        font-size: clamp(20px, 5.5vw, 26px) !important;
        margin-bottom: 12px !important;
        line-height: 1.25 !important;
    }
}

@media (max-width: 680px) {
    .dual-cta-container {
        grid-template-columns: 1fr !important;
        max-width: 450px;
        margin: 0 auto;
        gap: 30px;
    }

    .cta-box {
        min-height: 310px !important;
        padding: 45px 30px !important;
    }

    .cta-box h3 {
        font-size: 24px !important;
        max-width: 100%;
    }

    .cta-box p {
        font-size: 14px !important;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* Aprimoramento de contraste dos botões do Hero para WCAG AA */
.hero-actions .btn-whatsapp {
    background-color: #128A42 !important;
    /* Deixa verde-marca de alto contraste */
}

.hero-actions .btn-whatsapp:hover {
    background-color: #0b7035 !important;
}

/* Ajuste fino de contraste no rodapé */
.footer-seo-content p {
    color: rgba(255, 255, 255, 0.6) !important;
    /* Melhora contraste do texto de SEO */
}

/* Remove o gap extra que a barra quick-benefits deixa antes da quality section */
.quick-benefits-bar+.quality-section,
.atendimento-section+.quality-section {
    margin-top: 0;
}

/* AJUSTE CTA FINAL — remover excesso de overlay azul dentro dos cards */

.dual-cta-container .cta-box,
.final-cta .cta-box,
.cta-final .cta-box,
.cta-box {
    background-blend-mode: normal !important;
}

/* Clareia/remover camada azul interna sobre as imagens */
.dual-cta-container .cta-box::before,
.dual-cta-container .cta-box::after,
.final-cta .cta-box::before,
.final-cta .cta-box::after,
.cta-final .cta-box::before,
.cta-final .cta-box::after,
.cta-box::before,
.cta-box::after {
    background: rgba(3, 27, 63, 0.08) !important;
    opacity: 1 !important;
}

/* Se ainda ficar azul demais, use esta versão mais limpa */
/*
.dual-cta-container .cta-box::before,
.dual-cta-container .cta-box::after,
.final-cta .cta-box::before,
.final-cta .cta-box::after,
.cta-final .cta-box::before,
.cta-final .cta-box::after,
.cta-box::before,
.cta-box::after {
background: rgba(3, 27, 63, 0.08) !important;
}
*/

/* Mantém texto legível mesmo com menos overlay */
.dual-cta-container .cta-box h3,
.dual-cta-container .cta-box p,
.final-cta .cta-box h3,
.final-cta .cta-box p,
.cta-final .cta-box h3,
.cta-final .cta-box p,
.cta-box h3,
.cta-box p {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}