:root {
    --bg-primary: #0a0f0f;
    --bg-secondary: #0f1a1a;
    --bg-tertiary: #152525;
    --accent: #0d9488;
    --accent-hover: #0f766e;
    --accent-glow: rgba(13, 148, 136, 0.25);
    --text-primary: #f0fdfa;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: #1a2e2e;
    --success: #14b8a6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background animado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(13, 148, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(13, 148, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 20s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Grid pattern sutil */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(13, 148, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 148, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 15, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(26, 46, 46, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(10, 15, 15, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(13, 148, 136, 0.1);
    border-bottom-color: rgba(13, 148, 136, 0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: width 0.4s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo span {
    color: var(--accent);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
    margin: -25px 0;
}

.footer-logo {
    display: inline-block;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.btn-cta:active {
    transform: translateY(-1px) scale(0.98);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1rem;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 9;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }
    nav.mobile-open {
        right: 0;
    }
    nav .nav-links {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    nav .nav-links li {
        border-bottom: 1px solid rgba(26, 46, 46, 0.5);
    }
    nav .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 600;
    }
    nav .btn-cta {
        display: block !important;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 8;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Hero - Layout split fora da curva */
.hero {
    padding: 120px 2rem 100px;
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 60%);
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-content { text-align: left; }

.hero-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(13, 148, 136, 0.15);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(15px);
    animation: heroReveal 0.6s ease 0.1s forwards;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.7s ease 0.2s forwards;
}

.hero h1 .accent {
    position: relative;
    background: linear-gradient(135deg, #0d9488, #5eead4, #99f6e4, #5eead4, #0d9488);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroAccentShimmer 6s ease-in-out infinite;
}

.hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0d9488, #5eead4, #0d9488, transparent);
    background-size: 200% 100%;
    animation: heroUnderlineSlide 3s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes heroAccentShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes heroUnderlineSlide {
    0%, 100% { background-position: -100% 0; }
    50% { background-position: 200% 0; }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.7s ease 0.35s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.7s ease 0.5s forwards;
}

@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: heroReveal 0.8s ease 0.4s forwards;
}

.hero-showcase {
    padding: 2.5rem;
    background: linear-gradient(165deg, rgba(15, 26, 26, 0.6) 0%, rgba(10, 15, 15, 0.9) 100%);
    border-radius: 28px;
    border: 1px solid rgba(13, 148, 136, 0.2);
    overflow: hidden;
}

.hero-showcase-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, transparent 70%);
    animation: heroGlowPulse 5s ease-in-out infinite;
}

.hero-showcase-border {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, rgba(13, 148, 136, 0.4) 25%, rgba(13, 148, 136, 0.6) 50%, rgba(13, 148, 136, 0.4) 75%, transparent 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderMove 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes borderMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.hero-image-wrap {
    position: relative;
    margin-bottom: 1.5rem;
    perspective: 1200px;
    background: transparent;
}

.hero-img-placeholder {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    opacity: 0.7;
}

.hero-img-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-product-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    transform-style: preserve-3d;
    transform-origin: center center;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 40px rgba(13, 148, 136, 0.2));
    animation: heroImgFloat 6s ease-in-out infinite;
    transition: transform 0.5s ease;
}

.hero-image-wrap:hover .hero-product-img,
.hero-image-wrap:hover .hero-img-placeholder {
    animation-play-state: paused;
}

.hero-image-wrap:hover .hero-product-img {
    transform: translateY(-8px) rotateY(5deg) scale(1.05);
}

@keyframes heroImgFloat {
    0%, 100% { transform: translateY(0) rotateY(-2deg) rotateX(2deg); }
    50% { transform: translateY(-12px) rotateY(2deg) rotateX(-1deg); }
}

.hero-stats-pills {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.hero-pill {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    padding: 0.4rem 1rem;
    background: rgba(13, 148, 136, 0.12);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 100px;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.hero-pill:hover {
    background: rgba(13, 148, 136, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.hero-produtos-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.25rem 0.5rem;
    text-align: center;
}

.hero-produto-tag {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-produto-tag:not(:last-child)::after {
    content: ' · ';
    margin-left: 0.25rem;
    color: var(--text-muted);
}

.hero-marcas {
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}


.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--text-primary);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(13, 148, 136, 0.3);
    transform: translateY(-2px);
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    display: inline-block;
    animation: checkPulse 2s ease-in-out infinite;
}

.badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.1), transparent);
    transition: left 0.5s;
}

.badge:hover::after {
    left: 100%;
}

.badge:hover {
    border-color: var(--accent);
    background: rgba(13, 148, 136, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    margin-left: 0.5rem;
    box-shadow: 0 0 8px var(--success);
    animation: statusBlink 2s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 80px 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Oferta B2B */
.oferta-b2b {
    background: linear-gradient(135deg, rgba(15, 26, 26, 0.95) 0%, rgba(26, 34, 50, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    margin: 4rem auto;
    max-width: 1200px;
    border: 1px solid rgba(13, 148, 136, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(13, 148, 136, 0.1);
}

.oferta-b2b::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.oferta-b2b h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--accent), #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefits-list li::before {
    content: "→";
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefits-list li:hover::before {
    transform: translateX(5px);
}

.benefits-list li:hover {
    background: rgba(13, 148, 136, 0.1);
    transform: translateX(5px);
    border-left-color: #5eead4;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.1);
}

/* Marcas */
.marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.marca-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(26, 26, 26, 0.8) 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.marca-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.marca-card:hover::before {
    opacity: 1;
}

.marca-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.2);
    background: linear-gradient(135deg, rgba(15, 26, 26, 0.95) 0%, rgba(26, 34, 50, 0.9) 100%);
}

.marca-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-top: 1rem;
}

/* Catálogo + Autopflege - fora da curva */
.catalogo-section {
    padding: 100px 2rem;
}

.catalogo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.catalogo-brand {
    text-align: left;
}

.catalogo-brand-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.catalogo-brand-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.catalogo-brand-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.catalogo-brand-list {
    list-style: none;
    margin-bottom: 1.25rem;
}

.catalogo-brand-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.catalogo-brand-check {
    color: var(--accent);
    font-weight: 700;
}

.catalogo-brand-marcas {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.catalogo-downloads {
    background: linear-gradient(165deg, rgba(15, 26, 26, 0.7) 0%, rgba(10, 15, 15, 0.9) 100%);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.catalogo-downloads::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.4), transparent);
}

.catalogo-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.catalogo-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.catalogo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    perspective: 1000px;
}

.catalogo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: linear-gradient(165deg, rgba(15, 26, 26, 0.9) 0%, rgba(10, 15, 15, 0.95) 100%);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.catalogo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.catalogo-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(13, 148, 136, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(13, 148, 136, 0.15);
}

.catalogo-card:hover::before { opacity: 1; }

.catalogo-card-featured {
    border-color: rgba(13, 148, 136, 0.35);
    box-shadow: 0 0 30px rgba(13, 148, 136, 0.08);
}

.catalogo-card-featured:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 0 50px rgba(13, 148, 136, 0.2);
}

.catalogo-card-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.catalogo-card:hover .catalogo-card-glow { opacity: 1; }

.catalogo-card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.catalogo-card:hover .catalogo-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.catalogo-card-icon-wrap {
    margin-bottom: 1.25rem;
    position: relative;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalogo-card-icon.catalogo-card-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: brightness(0.92) contrast(0.88);
}

.catalogo-card-icon.catalogo-card-fallback {
    font-size: 3.5rem;
}

.catalogo-card:hover .catalogo-card-icon-wrap .catalogo-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.catalogo-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    position: relative;
}

.catalogo-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 1rem;
    flex: 1;
    position: relative;
}

.catalogo-card-cta {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
}

.catalogo-card-cta .arrow {
    display: inline-block;
    transition: transform 0.4s ease;
}

.catalogo-card:hover .catalogo-card-cta .arrow {
    transform: translateX(6px);
}

@media (max-width: 900px) {
    .catalogo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .catalogo-brand {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .catalogo-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .catalogo-downloads {
        padding: 1.5rem;
    }
}

.btn-cotar {
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--text-primary);
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-cotar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cotar:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cotar:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.5);
}

.btn-cotar:active {
    transform: translateY(0);
}

/* Diferenciais - Fora da curva */
.diferenciais-section {
    position: relative;
    overflow: hidden;
}

.diferenciais-showcase {
    position: relative;
    margin-top: 4rem;
}

.diff-connector {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.diff-connector svg {
    width: 100%;
    height: 100%;
}

.diff-line {
    stroke-dashoffset: 0;
    animation: diffLineDash 20s linear infinite;
}

@keyframes diffLineDash {
    to { stroke-dashoffset: -200; }
}

.diferenciais-bento {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.diferencial-card {
    background: linear-gradient(165deg, rgba(15, 26, 26, 0.95) 0%, rgba(10, 15, 15, 0.98) 100%);
    padding: 2.25rem;
    border-radius: 24px;
    border: 1px solid rgba(26, 46, 46, 0.6);
    text-align: left;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(40px) scale(0.96);
}

.diferencial-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.diferencial-card.bento-large { grid-column: 1; grid-row: 1 / 3; }
.diferencial-card.bento-small { grid-column: 2; }
.diferencial-card.bento-wide { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; text-align: left; }
.diferencial-card.bento-wide .diferencial-icon-wrap { margin: 0; }
.diferencial-card.bento-wide .diferencial-num { top: 1.5rem; right: 1.5rem; }
.diferencial-card.bento-wide .diferencial-wide-content { min-width: 0; }

.diferencial-num-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 18vw, 14rem);
    font-weight: 800;
    color: rgba(13, 148, 136, 0.06);
    letter-spacing: -0.04em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.diff-accent-1 .diferencial-num-bg { color: rgba(13, 148, 136, 0.07); }
.diff-accent-2 .diferencial-num-bg { color: rgba(20, 184, 166, 0.06); }
.diff-accent-3 .diferencial-num-bg { color: rgba(94, 234, 212, 0.06); }
.diff-accent-4 .diferencial-num-bg { color: rgba(45, 212, 191, 0.06); }

.diferencial-border {
    position: absolute;
    inset: -1px;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(120deg, transparent 0%, var(--accent) 25%, rgba(45, 212, 191, 0.6) 50%, var(--accent) 75%, transparent 100%);
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    animation: diffBorderFlow 8s ease-in-out infinite;
    pointer-events: none;
}

.diff-accent-2 .diferencial-border { background: linear-gradient(120deg, transparent 0%, #14b8a6 25%, var(--accent) 50%, #14b8a6 75%, transparent 100%); background-size: 400% 400%; }
.diff-accent-3 .diferencial-border { background: linear-gradient(120deg, transparent 0%, #5eead4 25%, var(--accent) 50%, #5eead4 75%, transparent 100%); background-size: 400% 400%; }
.diff-accent-4 .diferencial-border { background: linear-gradient(120deg, transparent 0%, #2dd4bf 25%, var(--accent) 50%, #2dd4bf 75%, transparent 100%); background-size: 400% 400%; }

@keyframes diffBorderFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.diferencial-card:hover {
    border-color: rgba(13, 148, 136, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 0 50px rgba(13, 148, 136, 0.15);
}

.diferencial-card.visible:hover {
    transform: translateY(-8px) scale(1.02);
}

.diferencial-card:hover .diferencial-border {
    opacity: 1;
}

.diferencial-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 65%);
    bottom: -80px;
    right: -80px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.diff-accent-2 .diferencial-glow { background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 65%); }
.diff-accent-3 .diferencial-glow { background: radial-gradient(circle, rgba(94, 234, 212, 0.1) 0%, transparent 65%); }
.diff-accent-4 .diferencial-glow { background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, transparent 65%); }

.diferencial-card:hover .diferencial-glow {
    opacity: 1;
}

.diferencial-num {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: rgba(13, 148, 136, 0.5);
    letter-spacing: 0.15em;
}

.diff-accent-2 .diferencial-num { color: rgba(20, 184, 166, 0.5); }
.diff-accent-3 .diferencial-num { color: rgba(94, 234, 212, 0.5); }
.diff-accent-4 .diferencial-num { color: rgba(45, 212, 191, 0.5); }

.diferencial-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.18) 0%, rgba(13, 148, 136, 0.06) 100%);
    border: 1px solid rgba(13, 148, 136, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.diff-accent-2 .diferencial-icon-wrap { background: linear-gradient(135deg, rgba(20, 184, 166, 0.18) 0%, rgba(20, 184, 166, 0.06) 100%); border-color: rgba(20, 184, 166, 0.25); }
.diff-accent-3 .diferencial-icon-wrap { background: linear-gradient(135deg, rgba(94, 234, 212, 0.18) 0%, rgba(94, 234, 212, 0.06) 100%); border-color: rgba(94, 234, 212, 0.25); }
.diff-accent-4 .diferencial-icon-wrap { background: linear-gradient(135deg, rgba(45, 212, 191, 0.18) 0%, rgba(45, 212, 191, 0.06) 100%); border-color: rgba(45, 212, 191, 0.25); }

.diferencial-card:hover .diferencial-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 0 40px rgba(13, 148, 136, 0.25);
}

.diff-accent-2:hover .diferencial-icon-wrap { box-shadow: 0 0 40px rgba(20, 184, 166, 0.25); }
.diff-accent-3:hover .diferencial-icon-wrap { box-shadow: 0 0 40px rgba(94, 234, 212, 0.2); }
.diff-accent-4:hover .diferencial-icon-wrap { box-shadow: 0 0 40px rgba(45, 212, 191, 0.25); }

.diferencial-icon {
    font-size: 1.9rem;
}

.diferencial-card.bento-large .diferencial-icon { font-size: 2.75rem; }
.diferencial-card.bento-large .diferencial-icon-wrap { width: 80px; height: 80px; }

.diferencial-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.diferencial-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .diff-connector { display: none; }
    .diferenciais-bento {
        grid-template-columns: 1fr;
    }
    .diferencial-card.bento-large,
    .diferencial-card.bento-small,
    .diferencial-card.bento-wide {
        grid-column: 1;
        grid-row: auto;
    }
    .diferencial-card.bento-wide {
        display: block;
        text-align: left;
    }
    .diferencial-card.bento-wide .diferencial-icon-wrap { margin-bottom: 1rem; }
}

/* Botão flutuante de atendimento */
.float-attend-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border: none;
    color: var(--text-primary);
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.5);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.float-attend-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(13, 148, 136, 0.6);
}

.float-attend-btn .float-attend-icon {
    display: block;
}

.float-attend-btn .float-attend-label {
    display: none;
}

@media (min-width: 769px) {
    .float-attend-btn {
        width: auto;
        height: auto;
        padding: 0.85rem 1.25rem;
        border-radius: 50px;
        gap: 0.5rem;
        font-size: 0.95rem;
        font-weight: 600;
    }
    .float-attend-btn .float-attend-icon {
        font-size: 1.3rem;
    }
    .float-attend-btn .float-attend-label {
        display: inline;
    }
}

/* Modal Filtro de Público */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: linear-gradient(165deg, rgba(15, 26, 26, 0.98) 0%, rgba(10, 15, 15, 0.99) 100%);
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 520px;
    width: 100%;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(13, 148, 136, 0.1);
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(26, 46, 46, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.15);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(26, 46, 46, 0.6);
    background: rgba(15, 26, 26, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: left;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.modal-option::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 2px;
    background: linear-gradient(120deg, transparent, var(--accent), transparent);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: diffBorderFlow 6s ease-in-out infinite;
}

.modal-option:hover::before {
    opacity: 1;
}

.modal-option-b2b:hover {
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.4);
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.15);
}

.modal-option-consumer:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
}

.modal-option-consumer::before {
    background: linear-gradient(120deg, transparent, #10b981, transparent);
    background-size: 300% 300%;
}

.modal-option-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.modal-option-info {
    flex: 1;
    min-width: 0;
}

.modal-option-info strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.modal-option-info span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.modal-option-arrow {
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.modal-option:hover .modal-option-arrow {
    transform: translateX(4px);
}

.modal-option-b2b:hover .modal-option-arrow {
    color: var(--accent);
}

.modal-option-consumer:hover .modal-option-arrow {
    color: #10b981;
}

.modal-option-ml:hover {
    background: rgba(255, 214, 0, 0.08);
    border-color: rgba(255, 214, 0, 0.4);
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.1);
}

.modal-option-ml::before {
    background: linear-gradient(120deg, transparent, #ffd600, transparent);
    background-size: 300% 300%;
}

.modal-option-ml:hover .modal-option-arrow {
    color: #ffd600;
}

.modal-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.2), transparent);
}

.modal-divider span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .modal-box {
        padding: 1.75rem 1.25rem;
    }
    .modal-option {
        padding: 1rem;
    }
}

/* Resultados */
.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resultado-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(26, 26, 26, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.resultado-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.resultado-card:hover::before {
    opacity: 1;
}

.resultado-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.2);
}

.resultado-numero {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(13, 148, 136, 0.3));
    transition: all 0.4s ease;
}

.resultado-card:hover .resultado-numero {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(13, 148, 136, 0.5));
}

.resultado-descricao {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* FAQ */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header .section-title,
.faq-header .section-subtitle {
    opacity: 1;
    transform: none;
    animation: none;
}

.faq-header .section-subtitle {
    margin-bottom: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(13, 148, 136, 0.3);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.1);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover {
    background: rgba(13, 148, 136, 0.05);
    padding-left: 1.75rem;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.1);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    background: rgba(13, 148, 136, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Final - fora da curva */
.cta-final {
    padding: 0 2rem 6rem;
    position: relative;
}

.cta-final-inner {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(15, 26, 26, 0.95) 0%, rgba(10, 15, 15, 0.98) 100%);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(13, 148, 136, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cta-final-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.5), transparent);
    opacity: 0.6;
}

.cta-final-inner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-final-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: rgba(13, 148, 136, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(13, 148, 136, 0.3);
}

.cta-final h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.cta-final-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.cta-benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-benefit-pill:hover {
    background: rgba(13, 148, 136, 0.15);
    border-color: rgba(13, 148, 136, 0.4);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.cta-pill-icon {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-mega-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--accent), #0f766e);
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.cta-mega-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.cta-mega-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.cta-mega-btn:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.cta-mega-btn .cta-mega-icon {
    font-size: 1.25rem;
    transition: transform 0.4s ease;
}

.cta-mega-btn:hover .cta-mega-icon {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .cta-final-inner { padding: 3rem 1.5rem; }
    .cta-benefits-row { flex-direction: column; align-items: center; }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #5eead4);
    z-index: 9999;
    transform-origin: left;
    transition: transform 0.1s ease;
    box-shadow: 0 0 10px rgba(13, 148, 136, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive - Notebook / Small Desktop */
@media (max-width: 1280px) {
    .hero { max-width: 1100px; gap: 3rem; }
    section { max-width: 1100px; }
    .diferenciais-bento { max-width: 960px; }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 110px 1.5rem 80px;
        min-height: auto;
    }
    .hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
    .hero-subtitle { font-size: 0.95rem; }
    .btn-cta { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
    .nav-links { gap: 1.25rem; }
    .nav-links a { font-size: 0.85rem; }
    section { padding: 60px 1.5rem; }
    .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
    .section-subtitle { font-size: 1rem; margin-bottom: 3rem; }
    .diferenciais-bento { gap: 1rem; }
    .diferencial-card { padding: 1.75rem; }
    .faq-container { max-width: 700px; }
    .cta-final-inner { padding: 3rem 2rem; }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .btn-cta { display: none; }
    .mobile-menu-toggle { display: block; }
    .header-container { padding: 0.75rem 1rem; }
    .logo-img { height: 70px; margin: -18px 0; }

    .hero {
        grid-template-columns: 1fr;
        padding: 100px 1rem 60px;
        gap: 2rem;
        text-align: center;
        min-height: auto;
    }
    .hero-content { text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; max-width: 100%; }
    .hero-ctas { justify-content: center; flex-direction: column; gap: 0.75rem; }
    .hero-showcase { padding: 1.25rem; }
    .hero-product-img, .hero-img-placeholder { max-width: 280px; }
    .hero-stats-pills { gap: 0.5rem; }
    .hero-pill { padding: 0.35rem 0.85rem; font-size: 0.75rem; }
    .hero-produtos-inline { gap: 0.4rem; }

    section { padding: 50px 1rem; }
    .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    .section-subtitle { font-size: 0.9rem; margin-bottom: 2.5rem; }

    .btn-primary, .btn-secondary { width: 100%; text-align: center; justify-content: center; }

    .catalogo-section { padding: 50px 1rem; }
    .catalogo-brand-title { font-size: 1.3rem; }
    .catalogo-brand-text { font-size: 0.9rem; }
    .catalogo-downloads { padding: 1.25rem; }

    .diferencial-card h3 { font-size: 1.15rem; }
    .diferencial-card p { font-size: 0.9rem; }
    .diferencial-num-bg { font-size: clamp(5rem, 15vw, 8rem); }

    .faq-question { padding: 1rem 1.25rem; font-size: 0.95rem; }
    .faq-answer-content { padding: 0 1.25rem 1rem; font-size: 0.9rem; }

    .cta-final-inner { padding: 2.5rem 1.5rem; }
    .cta-final-inner h2 { font-size: 1.5rem; }
    .cta-benefits-row { flex-direction: column; align-items: center; gap: 0.5rem; }
    .cta-mega-btn { width: 100%; justify-content: center; }

    .footer-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-logo { display: flex; justify-content: center; }
    .footer-logo-img { height: 70px; }
    footer { padding: 2.5rem 1.5rem 1.5rem; }

    .oferta-b2b { padding: 2rem 1.5rem; }
}

/* Mobile - Base optimizations */
@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
        scroll-padding-top: 90px;
    }
    body {
        -webkit-overflow-scrolling: touch;
        padding-bottom: env(safe-area-inset-bottom);
    }
    .btn-primary, .btn-secondary, .catalogo-card, .modal-option, .faq-question, .cta-mega-btn {
        min-height: 44px;
        touch-action: manipulation;
    }
}

/* Phone Large */
@media (max-width: 480px) {
    .header-container { padding: 0.5rem 0.75rem; }
    .logo-img { height: 56px; margin: -14px 0; }

    .hero { padding: 90px 0.75rem 50px; gap: 1.5rem; }
    .hero h1 { font-size: 1.5rem; line-height: 1.3; }
    .hero-tag { font-size: 0.7rem; padding: 0.3rem 0.8rem; }
    .hero-subtitle { font-size: 0.85rem; line-height: 1.6; }
    .hero-product-img, .hero-img-placeholder { max-width: 220px; }
    .hero-showcase { padding: 1rem; border-radius: 16px; }
    .hero-pill { font-size: 0.7rem; padding: 0.3rem 0.7rem; }

    section { padding: 40px 0.75rem; }
    .section-title { font-size: 1.3rem; }
    .section-subtitle { font-size: 0.85rem; margin-bottom: 2rem; }

    .btn-primary, .btn-secondary { padding: 0.85rem 1.5rem; font-size: 0.9rem; }

    .catalogo-brand-tag { font-size: 0.7rem; }
    .catalogo-brand-title { font-size: 1.15rem; }
    .catalogo-card { padding: 1.25rem; }
    .catalogo-card h4 { font-size: 1rem; }
    .catalogo-card-icon { font-size: 2rem; }
    .catalogo-card-icon-wrap { min-height: 90px; }
    .catalogo-card-icon.catalogo-card-img { width: 90px; height: 90px; }
    .catalogo-card-icon.catalogo-card-fallback { font-size: 2.75rem; }

    .diferencial-card { padding: 1.5rem; border-radius: 16px; }
    .diferencial-card h3 { font-size: 1.05rem; }
    .diferencial-card p { font-size: 0.85rem; }
    .diferencial-icon-wrap { width: 48px; height: 48px; }
    .diferencial-icon { font-size: 1.5rem; }
    .diferencial-card.bento-large .diferencial-icon-wrap { width: 60px; height: 60px; }
    .diferencial-card.bento-large .diferencial-icon { font-size: 2rem; }
    .diferencial-num-bg { font-size: 5rem; }

    .faq-question { padding: 0.85rem 1rem; font-size: 0.9rem; }
    .faq-answer-content { padding: 0 1rem 0.85rem; font-size: 0.85rem; }

    .cta-final-inner { padding: 2rem 1rem; border-radius: 16px; }
    .cta-final-inner h2 { font-size: 1.25rem; }
    .cta-final-sub { font-size: 0.85rem; }
    .cta-benefit-pill { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
    .cta-mega-btn { padding: 1rem 1.5rem; font-size: 1rem; }

    .modal-box { padding: 1.75rem 1.25rem; border-radius: 18px; }
    .modal-title { font-size: 1.25rem; }
    .modal-desc { font-size: 0.85rem; }
    .modal-option { padding: 1rem; }
    .modal-option-icon { font-size: 1.6rem; }
    .modal-option-info strong { font-size: 0.95rem; }
    .modal-option-info span { font-size: 0.8rem; }

    .footer-logo-img { height: 56px; }
    footer { padding: 2rem 1rem 1rem; margin-top: 2rem; }
    .footer-copyright { font-size: 0.8rem; }

    /* Botão flutuante - safe area para notch/home indicator */
    .float-attend-btn {
        bottom: max(1rem, env(safe-area-inset-bottom));
        right: max(1rem, env(safe-area-inset-right));
    }

    /* Hero produtos - wrap e legibilidade */
    .hero-produtos-inline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem;
    }
    .hero-marcas {
        font-size: 0.75rem;
        text-align: center;
        width: 100%;
        word-break: break-word;
    }
    .hero-produto-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    /* Catalog - evitar overflow */
    .catalogo-brand-marcas {
        font-size: 0.8rem;
        word-break: break-word;
    }

    /* Modal - scroll interno em telas pequenas */
    .modal-overlay {
        padding: 0.75rem;
        align-items: flex-end;
    }
    .modal-box {
        max-height: 85vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Phone Small */
@media (max-width: 360px) {
    .hero h1 { font-size: 1.3rem; }
    .hero-subtitle { font-size: 0.8rem; }
    .hero-product-img, .hero-img-placeholder { max-width: 180px; }
    .section-title { font-size: 1.15rem; }
    .catalogo-brand-title { font-size: 1rem; }
    .diferencial-card { padding: 1.25rem; }
    .cta-final-inner h2 { font-size: 1.1rem; }
    .modal-box { padding: 1.5rem 1rem; }
}

/* Animações de entrada */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
    
