/* ============================================================
   CSS Variables — Gráfica Batista Design System
   ============================================================ */
:root {
    --primary-blue: #1565A8;
    --primary-blue-dark: #0f4b7e;
    --btn-primary: #111111;
    --btn-primary-hover: #2a2a2a;
    --whatsapp-green: #25D366;
    --text-dark: #1a1a1a;
    --text-gray: #4A4A4A;
    --text-light: #737373;
    --bg-light: #F7F8FA;
    --bg-white: #ffffff;
    --bg-dark: #0a0a0a;
    --border-color: #E5E7EB;

    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.06);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 72px;
}

@media (max-width: 768px) {
    body { padding-top: 64px; }
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

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

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--btn-primary);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

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

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-blue);
    border-color: var(--bg-white);
}

.btn-outline-full {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
    width: 100%;
    font-size: 0.85rem;
}

.btn-outline-full:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background-color: rgba(21, 101, 168, 0.04);
}

.btn-ghost-white {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.btn-ghost-white:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

.btn-large  { padding: 16px 36px; font-size: 0.95rem; }
.btn-giant  {
    padding: 20px 44px;
    font-size: 1.1rem;
    border-radius: 10px;
    animation: pulse-btn 2.5s infinite;
}

@keyframes pulse-btn {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(0, 0, 0, 0.35); }
    70%  { transform: scale(1.02); box-shadow: 0 0 0 14px rgba(0, 0, 0, 0); }
    100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(0, 0, 0, 0); }
}

/* ============================================================
   Header
   ============================================================ */
.header {
    background-color: var(--primary-blue);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    transition: height 0.3s ease;
}

.header.scrolled .header-content { height: 60px; }

.logo-link { text-decoration: none; }

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.logo-text { display: flex; flex-direction: column; }

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--bg-white);
    line-height: 1;
}

/* Navigation */
.mobile-menu-btn { display: none; }

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

.main-nav ul {
    display: flex;
    gap: 8px;
    list-style: none;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--bg-white);
    background-color: rgba(255, 255, 255, 0.15);
}

.header .btn-outline {
    background-color: var(--bg-white);
    color: var(--primary-blue);
    border-color: var(--bg-white);
    padding: 9px 20px;
    font-size: 0.82rem;
    border-radius: 6px;
    font-weight: 700;
}

.header .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.88);
    color: var(--primary-blue);
    border-color: var(--bg-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   Hero Banner — Imagem completa, largura total
   ============================================================ */
.hero-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-banner-picture {
    display: block;
    width: 100%;
}

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

.trust-badges {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.badge {
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

/* ============================================================
   Section Titles
   ============================================================ */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 56px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

/* ============================================================
   Counter Banner
   ============================================================ */
.counter-banner {
    background: var(--bg-light);
    padding: 14px 0;
    border-top: 3px solid var(--primary-blue);
    border-bottom: 1px solid var(--border-color);
}

.counter-intro {
    text-align: center;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.counter-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.counter-headline {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.2;
}

.counter-subtext {
    display: none;
}

.counter-grid {
    display: flex;
    justify-content: center;
    gap: 0;
}

.counter-item {
    border-right: 1px solid var(--border-color);
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.counter-item:last-child { border-right: none; }

.counter-value {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 2px;
    margin-bottom: 0;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
    color: var(--primary-blue);
}

.counter-suffix {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-gray);
    line-height: 1;
    margin-left: 1px;
}

.counter-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 2px;
    margin-bottom: 0;
}

.counter-desc {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.65;
    max-width: 240px;
}

/* ============================================================
   Marquee — Logo Wall de Clientes
   ============================================================ */
.marquee-section {
    background: #111111;
    padding: 16px 0;
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    display: none;
}

.marquee-track {
    display: flex;
    align-items: center;
    animation: marquee 42s linear infinite;
    width: max-content;
}

.marquee-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    flex-shrink: 0;
}

.marquee-logo-item img {
    height: 80px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    opacity: 0.92;
    transition: opacity 0.3s ease;
}

.marquee-logo-item img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .marquee-section { padding: 10px 0; }
    .marquee-logo-item {
        padding: 0 28px;
    }
    .marquee-logo-item img {
        height: 56px;
        max-width: 150px;
    }
}

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

@media (max-width: 768px) {
    .marquee-track { animation-duration: 22s; }
}

/* ============================================================
   Contrast Section (Comprar de fora vs Batista)
   ============================================================ */
.contrast-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contrast-card {
    padding: 36px;
    border-radius: 16px;
}

.wrong-way {
    background-color: #fff8f8;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.right-way {
    background-color: #f4fbf6;
    border: 2px solid rgba(34, 197, 94, 0.25);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.contrast-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.contrast-list {
    list-style: none;
}

.contrast-list li {
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.wrong-way .contrast-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: 700;
    font-size: 0.85rem;
}

.right-way .contrast-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
    font-size: 0.85rem;
}

.right-way .contrast-list li { color: var(--text-dark); }

/* ============================================================
   Products Section (vitrine de sacolas etc)
   ============================================================ */
.products-section {
    padding: 48px 0;
    background: #111111;
}

.products-section .section-title {
    color: #ffffff;
}

.products-section .btn-outline-full {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
}

.products-section .btn-outline-full:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #ffffff;
}

.products-section .product-card .btn-outline-full {
    color: #ffffff;
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.products-section .product-card .btn-outline-full:hover {
    background-color: #0d4f8c;
    border-color: #0d4f8c;
    color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

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

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(21, 101, 168, 0.2);
}

.product-image {
    height: 290px;
    overflow: hidden;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img { transform: scale(1.05); }

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info .btn { margin-top: auto; }

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.products-cta { text-align: center; }

/* ============================================================
   Home Services Grid
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(21, 101, 168, 0.25);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(21, 101, 168, 0.1);
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-img-wrap {
    width: 100%;
    height: 190px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(21, 101, 168, 0.07) 0%, rgba(21, 101, 168, 0.14) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-img-placeholder {
    color: rgba(21, 101, 168, 0.35);
}

.disabled-btn {
    opacity: 0.45;
    pointer-events: none;
}

/* ============================================================
   Quality / Trust Section
   ============================================================ */
.quality-section {
    padding: 100px 0;
    background-color: var(--primary-blue);
    color: white;
}

.quality-section .section-title {
    color: white;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.quality-item {
    text-align: center;
    padding: 8px 0;
}

.quality-icon {
    width: 68px;
    height: 68px;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quality-icon svg {
    color: white;
}

.quality-item h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.quality-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ============================================================
   Section Eyebrow
   ============================================================ */
.section-eyebrow {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* ============================================================
   Models Section
   ============================================================ */
.models-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

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

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(21, 101, 168, 0.2);
}

.model-img-wrap {
    width: 100%;
    height: 210px;
    background: linear-gradient(135deg, rgba(21, 101, 168, 0.07) 0%, rgba(21, 101, 168, 0.14) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.model-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.model-card:hover .model-img-wrap img { transform: scale(1.04); }

.model-img-placeholder {
    color: rgba(21, 101, 168, 0.3);
    position: absolute;
}

.model-img-wrap img + .model-img-placeholder { display: none; }

.model-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.model-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: block;
}

.model-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.model-info p {
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.model-card-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-cta-inner {
    padding: 36px 28px;
    text-align: center;
    color: white;
}

.model-cta-inner svg {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 20px;
}

.model-cta-inner h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.model-cta-inner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

/* ============================================================
   How It Works
   ============================================================ */
.how-it-works {
    padding: 48px 0;
    background-color: var(--bg-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-blue-dark));
    opacity: 0.2;
    z-index: 1;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--bg-white);
    padding: 28px 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 4px 16px rgba(21, 101, 168, 0.35);
}

.step-number {
    position: absolute;
    top: 4px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--border-color);
    line-height: 1;
    z-index: -1;
}

.step-card h3 { margin-bottom: 12px; font-size: 1.1rem; }

.step-card p { color: var(--text-gray); font-size: 0.92rem; line-height: 1.65; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    padding: 48px 0;
    background-color: var(--bg-light);
}

.faq-accordion {
    max-width: 780px;
    margin: 0 auto;
}

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

.faq-item:hover { border-color: rgba(21, 101, 168, 0.3); }

.faq-item.active { border-color: var(--primary-blue); }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.4rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-weight: 400;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta {
    padding: 100px 0;
    background-color: #111111;
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    font-size: 2.6rem;
    margin-bottom: 20px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.final-cta p {
    color: #a0a8b4;
    font-size: 1.1rem;
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background-color: #111111;
    color: var(--bg-white);
    padding: 56px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.logo-footer .logo-title { color: var(--bg-white); }

.footer-info p {
    color: #888;
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #888;
    font-size: 0.92rem;
}

.footer-contact strong { color: var(--bg-white); }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #666;
    font-size: 0.85rem;
}

/* ============================================================
   Social Proof bar
   ============================================================ */
.social-proof {
    padding: 40px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* ============================================================
   WhatsApp Float
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    animation: float-wa 3.5s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
    animation-play-state: paused;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
    flex-shrink: 0;
}

@keyframes float-wa {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

/* ============================================================
   Responsive — Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .hero-text h1      { font-size: 2.7rem; }
    .products-grid     { grid-template-columns: repeat(2, 1fr); }
    .contrast-grid     { gap: 24px; }
    .steps-grid        { gap: 20px; }
    .steps-grid::before { display: none; }
    .quality-grid      { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .models-grid       { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Responsive — Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* Header */
    .header-content { height: 64px; }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--bg-white);
        font-size: 1.6rem;
        cursor: pointer;
        padding: 8px;
        line-height: 1;
    }

    .main-nav {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue-dark);
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        z-index: 99;
    }

    .main-nav.open { max-height: 420px; }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 12px 0;
    }

    .main-nav li { width: 100%; }

    .main-nav a {
        display: block;
        padding: 14px 24px;
        font-size: 1rem;
        border-radius: 0;
        color: rgba(255, 255, 255, 0.9);
    }

    .main-nav a:hover,
    .main-nav a.active {
        background-color: rgba(255, 255, 255, 0.12);
        color: var(--bg-white);
    }

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

    /* Hero Banner — corte da parte de baixo vazia no mobile */
    .hero-banner { width: 100%; line-height: 0; }
    .hero-banner-picture { width: 100%; padding: 0; }
    .hero-banner-img { width: 100%; height: auto; border-radius: 0; max-height: 560px; object-fit: cover; object-position: top center; }

    /* Sections */
    .contrast-section,
    .products-section,
    .how-it-works,
    .faq-section,
    .final-cta { padding: 36px 0; }

    .section-title { font-size: 1.7rem; margin-bottom: 40px; }

    /* Grids */
    .contrast-grid  { grid-template-columns: 1fr; }
    .right-way      { transform: none; }
    .products-grid  { grid-template-columns: 1fr; }
    .services-grid  { grid-template-columns: 1fr; }
    .steps-grid     { grid-template-columns: 1fr; }
    .quality-grid   { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .quality-section { padding: 56px 0; }
    .models-grid    { grid-template-columns: 1fr; }
    .models-section { padding: 56px 0; }

    /* Counter */
    .counter-headline { font-size: 0.9rem; }
    .counter-number   { font-size: 1.5rem; }
    .counter-suffix   { font-size: 0.85rem; }
    .counter-desc     { font-size: 0.75rem; }

    /* Counter — mantém 3 colunas lado a lado no mobile */
    .counter-banner { padding: 10px 0; }
    .counter-grid   { gap: 0; }
    .counter-item   {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: none;
        padding: 0 10px;
        padding-bottom: 0;
    }
    .counter-item:last-child { border-right: none; }
    .counter-number { font-size: 1.75rem; }
    .counter-label  { font-size: 10px; letter-spacing: 1px; }

    /* Final CTA */
    .final-cta h2  { font-size: 1.75rem; }
    .final-cta p   { font-size: 1rem; }
    .btn-giant     { padding: 18px 32px; font-size: 1rem; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 24px; }

    /* WhatsApp */
    .whatsapp-float { bottom: 20px; right: 18px; width: 54px; height: 54px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ============================================================
   Responsive — Small Mobile (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.75rem; }
    .section-title { font-size: 1.5rem; }
    .contrast-card { padding: 24px 20px; }
    .service-card  { padding: 24px 20px; }
    .btn { white-space: normal; text-align: center; }
    .btn-large { padding: 14px 20px; font-size: 0.88rem; }
    .hero-subhead-blue { font-size: 1rem; }
    .sub-headline { font-size: 0.92rem; }
    .badge { font-size: 0.76rem; padding: 4px 10px; }
    .trust-badges { gap: 6px; }
}

/* ============================================================
   Carousel Dots (desktop hidden, mobile shown via media query)
   ============================================================ */
.carousel-dots { display: none; }

@media (max-width: 768px) {
    /* Services carousel (index.html) */
    .services-carousel-wrapper {
        overflow: hidden;
        margin-left: -16px;
        margin-right: -16px;
    }
    .services-grid {
        display: flex !important;
        grid-template-columns: unset !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        padding: 0 16px 4px;
        scroll-padding-left: 16px;
    }
    .services-grid::-webkit-scrollbar { display: none; }
    .service-card {
        flex: 0 0 80%;
        margin-right: 20px;
        scroll-snap-align: start;
        min-width: 0;
    }

    /* Edu carousels (sacolas.html) */
    .edu-carousel-wrapper {
        overflow: hidden;
        margin-left: -16px;
        margin-right: -16px;
    }
    .edu-carousel-wrapper .edu-grid-2x2,
    .edu-carousel-wrapper .edu-grid-4col,
    .edu-carousel-wrapper .edu-grid-5col,
    .edu-carousel-wrapper .edu-grid-3col {
        display: flex !important;
        grid-template-columns: unset !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        padding: 0 16px 4px;
        scroll-padding-left: 16px;
    }
    .edu-carousel-wrapper .edu-grid-2x2::-webkit-scrollbar,
    .edu-carousel-wrapper .edu-grid-4col::-webkit-scrollbar,
    .edu-carousel-wrapper .edu-grid-5col::-webkit-scrollbar,
    .edu-carousel-wrapper .edu-grid-3col::-webkit-scrollbar { display: none; }
    .edu-carousel-wrapper .edu-card,
    .edu-carousel-wrapper .size-card {
        flex: 0 0 80%;
        margin-right: 20px;
        scroll-snap-align: start;
        min-width: 0;
    }

    /* Steps carousel (sacolas.html — Como Funciona) */
    .steps-carousel-wrapper {
        overflow: hidden;
        margin-left: -16px;
        margin-right: -16px;
    }
    .steps-carousel-wrapper .steps-grid {
        display: flex !important;
        grid-template-columns: unset !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        padding: 0 16px 4px;
        margin-bottom: 0;
        scroll-padding-left: 16px;
    }
    .steps-carousel-wrapper .steps-grid::before { display: none; }
    .steps-carousel-wrapper .steps-grid::-webkit-scrollbar { display: none; }
    .steps-carousel-wrapper .step-card {
        flex: 0 0 82%;
        margin-right: 16px;
        scroll-snap-align: start;
        min-width: 0;
    }
    .steps-carousel-wrapper .carousel-dots { display: flex; }

    /* Products carousel (sacolas.html) */
    .products-carousel-wrapper {
        overflow: hidden;
        margin-left: -16px;
        margin-right: -16px;
    }
    .products-carousel-wrapper .products-grid {
        display: flex !important;
        grid-template-columns: unset !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        padding: 0 16px 4px;
        margin-bottom: 0;
        scroll-padding-left: 16px;
    }
    .products-carousel-wrapper .products-grid::-webkit-scrollbar { display: none; }
    .products-carousel-wrapper .product-card {
        flex: 0 0 80%;
        margin-right: 20px;
        scroll-snap-align: start;
        min-width: 0;
    }
    .products-carousel-wrapper .carousel-dots { display: flex; }
    .products-section .product-card .btn-outline-full {
        width: 100%;
        white-space: nowrap;
        justify-content: center;
    }

    /* Desativa animação de reveal dentro de carrosséis no mobile
       Impede que o fade/transform execute durante o gesto de swipe */
    .edu-carousel-wrapper [data-reveal],
    .products-carousel-wrapper [data-reveal],
    .steps-carousel-wrapper [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Dots shared styles (shown on mobile) */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        padding: 0;
    }
    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border-color);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: all 0.25s ease;
        flex-shrink: 0;
    }
    .dot.active {
        background: #111;
        width: 20px;
        border-radius: 4px;
    }
}

/* ============================================================
   Banners (geral e sacolas)
   ============================================================ */
.general-banner-section,
.sacolas-banner-section {
    width: 100%;
    line-height: 0;
}

.general-banner-img,
.sacolas-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 769px) {
    .general-banner-img,
    .sacolas-banner-img {
        max-height: 480px;
        object-fit: cover;
        object-position: center 75%;
    }
}

@media (max-width: 768px) {
    .sacolas-banner-img {
        max-height: 240px;
        object-fit: cover;
        object-position: center center;
    }
}

/* ============================================================
   Hero — Páginas de Produto (layout duas colunas)
   ============================================================ */
.hero {
    background: var(--bg-white);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.hero-subhead-blue {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.sub-headline {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    line-height: 0;
    background: var(--bg-light);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   Seções Educacionais (Papel / Alça / Acabamentos / Tamanhos)
   ============================================================ */
.edu-section {
    padding: 64px 0;
}

.edu-section-light { background: var(--bg-light); }
.edu-section-white { background: var(--bg-white); }

.edu-section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    padding-top: 8px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.edu-section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    margin: 14px auto 0;
}

.edu-section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 56px;
}

.edu-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.edu-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.edu-grid-5col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

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

.edu-card {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    background: var(--bg-white);
    transition: var(--transition);
}

.edu-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(21, 101, 168, 0.22);
}

.edu-card-icon {
    color: var(--primary-blue);
    margin-bottom: 16px;
    display: block;
}

.edu-card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.tag-default  { background: #f0f2f5; color: #666; }
.tag-blue     { background: rgba(21,101,168,0.1); color: var(--primary-blue); }
.tag-gold     { background: rgba(184,134,11,0.12); color: #B8860B; }
.tag-green    { background: rgba(45,106,79,0.12); color: #2d6a4f; }
.tag-darkgold { background: rgba(139,105,20,0.12); color: #7a5c10; }

.edu-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.edu-card p {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 10px;
}

.edu-card-ideal,
.edu-card-padrão {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    display: block;
}

.edu-card-photo {
    width: calc(100% + 56px);
    height: 190px;
    background: var(--bg-light);
    border-radius: 0;
    margin: -28px -28px 22px;
    overflow: hidden;
}

.edu-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

/* Tamanhos cards */
.size-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-white);
    text-align: center;
    transition: var(--transition);
    box-shadow: none;
}

.size-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border-color: transparent;
}

.size-visual {
    padding: 0;
    display: block;
    background: transparent;
    border-bottom: none;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.size-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.size-body { padding: 22px 20px; }

.size-badge {
    display: inline-block;
    background: rgba(21,101,168,0.1);
    color: var(--primary-blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.size-body h3 { font-size: 1.1rem; margin-bottom: 8px; }

.size-dims {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: rgba(21,101,168,0.07);
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 12px;
}

.size-body p {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.size-ideal {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    font-style: italic;
}

.size-note-box {
    background: #e8f0fe;
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    padding: 18px 24px;
    margin-top: 40px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.size-note-icon { color: var(--primary-blue); flex-shrink: 0; margin-top: 2px; }

.size-note-box p {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* Seção Óticas */
.oticas-section {
    padding: 64px 0;
}

.oticas-cta {
    margin-top: 32px;
    display: inline-flex;
}

.oticas-section h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.oticas-intro {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 48px;
    max-width: 720px;
}

.oticas-grid {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 48px;
    align-items: start;
}

.oticas-benefits {
    list-style: none;
}

.oticas-benefits li {
    padding: 12px 0 12px 28px;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.oticas-benefits li:last-child { border-bottom: none; }

.oticas-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1rem;
}

.oticas-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: rgba(255,255,255,0.04);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oticas-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px;
}

.oticas-urgency {
    background: var(--primary-blue);
    color: white;
    border-radius: 10px;
    padding: 22px 32px;
    margin-top: 48px;
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.65;
    font-weight: 500;
}

/* ============================================================
   Responsive para novas seções
   ============================================================ */
@media (max-width: 1024px) {
    .hero-container { gap: 40px; }
    .edu-grid-4col  { grid-template-columns: repeat(2, 1fr); }
    .edu-grid-5col  { grid-template-columns: repeat(3, 1fr); }
    .oticas-grid    { gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }

    .hero           { padding: 56px 0; }
    .hero-container { grid-template-columns: 1fr; gap: 32px; }
    .hero-text h1   { font-size: 2rem; }
    .hero-image-wrapper { order: -1; }

    .edu-section          { padding: 36px 0; }
    .edu-grid-2x2         { grid-template-columns: 1fr; }
    .edu-grid-4col        { grid-template-columns: 1fr; }
    .edu-grid-5col        { grid-template-columns: repeat(2, 1fr); }
    .edu-grid-3col        { grid-template-columns: 1fr; }
    .edu-section-title    { font-size: 1.6rem; }
    .edu-section-subtitle { margin-bottom: 36px; }

    .oticas-section { padding: 44px 0; }
    .oticas-grid    { grid-template-columns: 1fr; gap: 32px; }
    .oticas-section h2 { font-size: 1.6rem; }
}

/* ============================================================
   Keyframe Animations
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-44px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(44px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.90); }
    to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   Scroll-Reveal System
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal="fadeInUp"]    { transform: translateY(36px); }
[data-reveal="fadeInLeft"]  { transform: translateX(-44px); }
[data-reveal="fadeInRight"] { transform: translateX(44px); }
[data-reveal="scaleIn"]     { transform: scale(0.90); }
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ============================================================
   Hero Home — Full-width overlay
   ============================================================ */
.hero-home {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.hero-home .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 56px;
    padding-bottom: 56px;
    max-width: 860px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.90);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.text-blue-light { color: #4db8ff; }

.hero-home .hero-sub {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.hero-home .hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-trust span::before {
    content: '✓';
    color: #72b8f5;
    font-weight: 700;
}

/* Hero compacto — páginas de produto (sacolas, etc.) */
.hero-compact {
    min-height: 56vh;
}

@media (min-width: 769px) {
    .hero-compact {
        min-height: 72vh;
    }
    .hero-compact .hero-bg-img {
        object-position: center top;
        transform: scale(1.10);
        transform-origin: center top;
    }
    .hero-compact .hero-content {
        max-width: 1200px;
    }
    .hero-compact .hero-title,
    .hero-compact .hero-actions,
    .hero-compact .hero-trust {
        max-width: 50%;
    }
}
.hero-compact .hero-content {
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 1200px;
    text-align: left;
    align-items: flex-start;
}
.hero-compact .hero-eyebrow {
    font-size: 0.62rem;
    margin-bottom: 16px;
}
.hero-compact .hero-title {
    font-size: clamp(1.5rem, 3.2vw, 2.4rem);
    margin-bottom: 16px;
}
.hero-compact .hero-sub {
    font-size: clamp(0.85rem, 1.4vw, 0.98rem);
    margin-bottom: 22px;
}
.hero-compact .hero-actions {
    gap: 10px;
    margin-bottom: 22px;
    justify-content: flex-start;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero-cta-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.2px;
}
.hero-compact .hero-actions .btn {
    padding: 10px 22px;
    font-size: 0.82rem;
}
.hero-compact .hero-trust {
    justify-content: flex-start;
}
.hero-compact .hero-trust span {
    font-size: 0.75rem;
}

/* Hero trust bar — fora da section, abaixo da sacola no mobile */
.hero-trust-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 20px;
    background: #0f1e33;
}

.hero-trust-bar span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-trust-bar span::before {
    content: '✓';
    color: #72b8f5;
    font-weight: 700;
}

@media (min-width: 769px) {
    .hero-trust-bar {
        position: relative;
        z-index: 2;
        margin-top: -64px;
        background: transparent;
        justify-content: flex-start;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px 24px;
    }
}

@media (max-width: 768px) {
    .hero-home { min-height: 92vh; }
    .hero-home .hero-content { padding-top: 60px; padding-bottom: 60px; }
    .hero-title { font-size: 2rem; letter-spacing: -0.5px; }
    .hero-trust { gap: 12px; }
    .hero-trust span { font-size: 0.78rem; }
    .hero-home .hero-actions { flex-direction: column; align-items: center; }
    .hero-home .hero-actions .btn { width: 100%; max-width: 320px; }

    .hero-compact { min-height: 50vh; }
    .hero-compact .hero-content { padding-top: 36px; padding-bottom: 36px; }
    .hero-compact .hero-title { font-size: 1.5rem; }
}

/* ============================================================
   Section Dark — fundo preto para seções de destaque
   ============================================================ */
.section-dark {
    background-color: #111111;
}

.section-dark .section-title,
.section-dark h2 {
    color: #ffffff;
}

.section-dark h3 {
    color: #ffffff;
}

.section-dark p,
.section-dark .oticas-intro {
    color: rgba(255, 255, 255, 0.70);
}

.section-dark .step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.section-dark .step-card h3 { color: #ffffff; }
.section-dark .step-card p  { color: rgba(255, 255, 255, 0.65); }

.section-dark .step-number {
    color: rgba(255, 255, 255, 0.07);
}

.section-dark .steps-grid::before {
    background: linear-gradient(to right, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
}

.section-dark .oticas-benefits li {
    color: rgba(255, 255, 255, 0.78);
    border-bottom-color: rgba(255, 255, 255, 0.10);
}

.section-dark .oticas-urgency {
    background: var(--bg-white);
    color: var(--text-gray);
    border-color: rgba(0, 0, 0, 0.08);
}

/* ============================================================
   Desktop overrides — counter menor e marquee escuro/prata
   ============================================================ */
@media (min-width: 769px) {
    /* Counter banner — compacto no desktop */
    .counter-headline { font-size: 1.05rem; margin-bottom: 0; }
    .counter-intro    { margin-bottom: 6px; }
    .counter-number   { font-size: 2rem; }
    .counter-suffix   { font-size: 1.1rem; }

    /* Linha separadora entre marquee e products-section no desktop */
    .products-section {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }
}

/* ============================================================
   Hero Pattern — dot grid overlay
   ============================================================ */
.hero-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 1;
    pointer-events: none;
}
.hero-pattern .hero-content { z-index: 2; }

/* ============================================================
   Testimonials Section
   ============================================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

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

.testimonials-carousel-wrapper {
    overflow: visible;
}

.testimonial-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(21, 101, 168, 0.22);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.testimonial-company {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .testimonials-section { padding: 48px 0; }
    .testimonials-carousel-wrapper {
        overflow: hidden;
        margin-left: -16px;
        margin-right: -16px;
    }
    .testimonials-carousel-wrapper .testimonials-grid {
        display: flex !important;
        grid-template-columns: unset !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        padding: 0 16px 4px;
        scroll-padding-left: 16px;
    }
    .testimonials-carousel-wrapper .testimonials-grid::-webkit-scrollbar { display: none; }
    .testimonials-carousel-wrapper .testimonial-card {
        flex: 0 0 82%;
        margin-right: 18px;
        scroll-snap-align: start;
        min-width: 0;
    }
    .testimonials-carousel-wrapper .carousel-dots { display: flex; }
}

/* ============================================================
   Óticas — Spec Card (substitui SVG placeholder)
   ============================================================ */
.oticas-spec-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.oticas-spec-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #c9a84c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
    width: fit-content;
}

.oticas-spec-card h4 {
    color: white !important;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.oticas-spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.oticas-spec-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.oticas-spec-list li:first-child { padding-top: 0; }
.oticas-spec-list li:last-child { border-bottom: none; padding-bottom: 0; }

.oticas-spec-icon {
    width: 36px;
    height: 36px;
    background: rgba(21,101,168,0.35);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #72b8f5;
}

.oticas-spec-text strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.oticas-spec-text span {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    line-height: 1.4;
    display: block;
}

.oticas-spec-footer {
    margin-top: 24px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 10px;
    padding: 14px 18px;
    color: #c9a84c;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

/* ============================================================
   Classes utilitárias — substituem inline styles do HTML
   ============================================================ */
.products-section-lead {
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    margin-top: -36px;
    margin-bottom: 48px;
    font-size: 0.98rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.final-cta-footnote {
    margin-top: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0;
}

/* ============================================================
   Botão Azul — override do btn-primary preto para CTAs azuis
   ============================================================ */
.btn.btn-blue {
    background-color: var(--primary-blue) !important;
    color: #fff !important;
}

.btn.btn-blue:hover {
    background-color: var(--primary-blue-dark) !important;
    box-shadow: 0 8px 24px rgba(21, 101, 168, 0.4) !important;
}

/* ============================================================
   Banner hero mobile — mostrar apenas as 4 sacolas de cima
   ============================================================ */
@media (max-width: 768px) {
    .hero-compact .hero-bg-img {
        object-position: center top;
        object-fit: cover;
    }
}
