/* =========================================
   GET INNOVATION - DESIGN SYSTEM & STYLES
   ========================================= */

/* --- CSS Variables --- */
:root {
    /* Colors */
    --color-bg-main: #ffffff;
    --color-bg-light: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-bg-darker: #020617;
    
    --color-text-main: #334155;
    --color-text-dark: #0f172a;
    --color-text-light: #94a3b8;
    --color-text-white: #ffffff;
    
    --color-primary: #008568; /* Green - Get Innovation */
    --color-primary-dark: #006B52;
    --color-secondary: #0B1F15; /* Dark Green */
    --color-accent: #008568;
    --color-accent-hover: #006B52;
    --color-whatsapp: #25D366;
    
    --color-alert: #f59e0b;
    --color-success: #10b981;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.text-alert {
    color: var(--color-alert);
}

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

.text-success {
    color: var(--color-success);
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--section-padding);
}

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

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

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* --- Components --- */
.badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: rgba(0, 133, 104, 0.08);
    color: var(--color-primary-dark);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    border: 1px solid rgba(0, 133, 104, 0.2);
    letter-spacing: 0.01em;
}

.card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

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

/* --- Hero Badge --- */
.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #ffffff;
    border-radius: 11px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 16px rgba(0, 133, 104, 0.35), inset 0 1px 0 rgba(255,255,255,0.12);
    margin-bottom: 1.5rem;
    animation: badgeEnter 0.6s cubic-bezier(0.22, 1, 0.36, 1) both,
               badgeBreathe 3.5s ease-in-out 1s infinite;
    will-change: transform, box-shadow;
}

.badge-hero i {
    font-size: 1rem;
    opacity: 0.95;
}

@keyframes badgeEnter {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeBreathe {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 133, 104, 0.35), inset 0 1px 0 rgba(255,255,255,0.12);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 24px rgba(0, 133, 104, 0.52), inset 0 1px 0 rgba(255,255,255,0.12);
        transform: scale(1.018);
    }
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 150px 0 100px;
    background-color: var(--color-bg-darker);
    color: white;
    overflow: hidden;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-secondary);
}

.shape-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    opacity: 0.2;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    opacity: 0.9;
}

/* Glass Mockup Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.mockup-header .title {
    margin-left: 1rem;
    font-size: 0.875rem;
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.7);
}

.mockup-body {
    padding: 2rem;
}

.mockup-stat {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.mockup-stat .label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.mockup-stat .value {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
}

.mockup-stat .trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--color-success);
    background: rgba(16, 185, 129, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    width: fit-content;
    margin-top: 0.5rem;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 100px;
    margin-bottom: 2rem;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--color-primary-dark), var(--color-primary));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.mockup-notification {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: white;
}

/* --- Pain Points --- */
.pain-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-alert);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pain-card h3 {
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* --- Services --- */
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-list {
    margin-top: 2rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-main);
}

.service-list li i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.app-highlight-card {
    background: linear-gradient(135deg, var(--color-secondary), #1e293b);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.app-highlight-card h3 {
    color: white;
    font-size: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin: 0 auto 1.5rem;
}

.highlight-note {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 2rem;
}

/* --- Differentials --- */
.diff-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.diff-card h3 {
    color: white;
    margin-bottom: 0;
    font-size: 1.125rem;
}

.diff-card .card-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.diff-card:hover {
    background: rgba(255,255,255,0.1);
}

/* --- Target Audience --- */
.audience-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.audience-image .image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--color-text-light);
    box-shadow: var(--shadow-md);
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 260px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 14px 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25), inset 0 0 0 2px #333;
    position: relative;
}

.phone-frame::before {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin: 0 auto 12px;
}

.phone-screen {
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9/19.5;
}

.phone-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

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

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: background 0.3s;
    cursor: pointer;
}

.dot.active {
    background: #ffffff;
}

.audience-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.item-icon {
    width: 40px;
    height: 40px;
    background: var(--color-bg-light);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.audience-item p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-top: 0.25rem;
}

/* --- Not Us --- */
.not-us-card {
    background: var(--color-bg-dark);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    border: 1px solid rgba(255,255,255,0.06);
}

.not-us-left {
    flex: 0 0 45%;
}

.not-us-left h2 {
    font-size: 2.125rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

.not-us-nao {
    color: #f87171;
    font-weight: 800;
    background: rgba(248, 113, 113, 0.12);
    padding: 0 0.25em;
    border-radius: 4px;
    border-bottom: 2px solid rgba(248, 113, 113, 0.5);
    display: inline;
}

.not-us-right {
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 4rem;
}

.not-us-card p {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.8;
    margin: 0;
}

.not-us-bpo {
    color: var(--color-primary);
    font-weight: 700;
    background: rgba(0, 133, 104, 0.12);
    padding: 0 0.25em;
    border-radius: 4px;
    display: inline;
}

/* --- Testimonials --- */
.testimonial-card {
    position: relative;
    padding-top: 3rem;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--color-text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--color-bg-light);
    padding-top: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info strong {
    display: block;
    color: var(--color-text-dark);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.credibility-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    background: var(--color-bg-light);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
}

.badge-item i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* --- Final CTA --- */
.final-cta {
    background: var(--color-secondary);
    color: white;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    color: white;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.8);
}

.business-hours {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* --- Footer --- */
.footer {
    background: var(--color-bg-darker);
    color: rgba(255,255,255,0.6);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.footer-logo i {
    color: var(--color-primary);
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.39);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- Differentials Subtitle --- */
.differentials-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -2rem;
    margin-bottom: 0;
}

/* --- Comparison Section --- */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.comparison-card {
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-negative {
    background: #fff5f5;
    border: 1px solid #fca5a5;
}

.comparison-positive {
    background: #f0fdf4;
    border: 1px solid #86efac;
}

.comparison-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.comparison-title-group {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.comparison-title-group h3 {
    margin: 0;
    font-size: 1.375rem;
}

.comparison-negative .comparison-title-group h3 {
    color: #b91c1c;
}

.comparison-positive .comparison-title-group h3 {
    color: var(--color-primary-dark);
}

.comparison-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    flex-shrink: 0;
}

.comparison-icon-negative {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.comparison-icon-positive {
    background: rgba(0, 133, 104, 0.12);
    color: var(--color-primary);
}

.comparison-badge {
    display: inline-block;
    flex-shrink: 0;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.comparison-badge-negative {
    background: rgba(220, 38, 38, 0.07);
    border: 1px solid rgba(220, 38, 38, 0.28);
    color: #b91c1c;
}

.comparison-badge-positive {
    background: rgba(0, 133, 104, 0.07);
    border: 1px solid rgba(0, 133, 104, 0.28);
    color: var(--color-primary-dark);
}

.comparison-divider {
    height: 1px;
    margin: 1.5rem 0 1.75rem;
}

.comparison-negative .comparison-divider {
    background: rgba(220, 38, 38, 0.15);
}

.comparison-positive .comparison-divider {
    background: rgba(0, 133, 104, 0.15);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    list-style: none;
    flex: 1;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text-main);
}

.comparison-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    margin-top: 0.125rem;
}

.comparison-num-negative {
    background: #dc2626;
}

.comparison-num-positive {
    background: var(--color-primary);
}

/* --- Benefits Section --- */
.benefits-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-main);
    margin-top: -2.5rem;
    margin-bottom: 0;
}

.benefits-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
}

.benefits-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefits-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: rgba(0, 133, 104, 0.1);
    color: var(--color-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefits-card h3 {
    color: var(--color-text-dark);
    margin-bottom: 0;
    font-size: 1.0625rem;
    line-height: 1.3;
}

.benefits-card p {
    color: var(--color-text-main);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* --- Diagnostic Form --- */
.diagnostic-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-main);
    margin-top: -1rem;
    margin-bottom: 0;
}

.diagnostic-card {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.diagnostic-progress {
    width: 100%;
    height: 6px;
    background: var(--color-bg-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.diagnostic-progress-bar {
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 999px;
    transition: width 0.4s ease;
}

.diagnostic-steps-label {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.diagnostic-step {
    display: none;
}

.diagnostic-step.active {
    display: block;
    animation: stepFadeIn 0.4s ease both;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.diagnostic-step h3 {
    margin-bottom: 1.75rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    background: white;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 133, 104, 0.12);
}

.diagnostic-question {
    margin-bottom: 2rem;
}

.question-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.radio-option:hover {
    border-color: var(--color-primary);
    background: rgba(0, 133, 104, 0.03);
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    flex-shrink: 0;
}

.radio-option span {
    font-size: 0.9375rem;
    color: var(--color-text-main);
}

.radio-option.selected {
    border-color: var(--color-primary);
    background: rgba(0, 133, 104, 0.06);
}

.radio-option.selected span {
    color: var(--color-text-dark);
    font-weight: 600;
}

.diagnostic-other-wrap {
    display: none;
    margin-top: 0.75rem;
}

.diagnostic-other-wrap.active {
    display: block;
}

.diagnostic-other-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    transition: var(--transition);
}

.diagnostic-other-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 133, 104, 0.12);
}

.diagnostic-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.diagnostic-actions-split {
    justify-content: space-between;
}

.diagnostic-actions .btn {
    width: auto;
}

/* --- Thank You Page --- */
.obrigado-hero {
    padding: 150px 0 80px;
    background-color: var(--color-bg-darker);
    color: white;
    text-align: center;
}

.obrigado-hero .badge-hero {
    animation: none;
}

.obrigado-hero h1 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.obrigado-hero .subheadline {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.video-section {
    max-width: 860px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.obrigado-video {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
}

.obrigado-explanation {
    max-width: 720px;
    margin: 3rem auto 0;
}

.obrigado-explanation h2 {
    text-align: center;
}

.obrigado-explanation-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.obrigado-explanation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.obrigado-explanation-item .item-icon {
    background: rgba(0, 133, 104, 0.1);
    color: var(--color-primary);
}

.obrigado-explanation-item p {
    font-size: 1.0625rem;
    color: var(--color-text-main);
    margin-top: 0.25rem;
}

.obrigado-cta {
    text-align: center;
    margin-top: 3rem;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
    transition-delay: var(--delay, 0s);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* --- Tablet Landscape / Small Desktop (≤1024px) --- */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Tablet Portrait (≤992px) --- */
@media (max-width: 992px) {
    .hero-container,
    .services-wrapper,
    .audience-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-actions {
        align-items: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .audience-image {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
    }

    .services-content {
        text-align: left;
    }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
    :root {
        --section-padding: 56px 0;
    }

    /* Typography */
    h1 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    /* Container */
    .container {
        padding: 0 1.25rem;
    }

    /* Section header */
    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Grids */
    .grid-3,
    .grid-2,
    .grid-4,
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Header */
    .header-container .btn {
        display: none;
    }

    .logo-img {
        height: 40px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 64px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
        margin-bottom: 1.25rem;
    }

    .subheadline {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }

    .hero-note {
        font-size: 0.8125rem;
        text-align: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Cards */
    .card {
        padding: 1.5rem;
    }

    /* Pain cards */
    .pain-card .card-icon {
        width: 52px;
        height: 52px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    /* Services */
    .service-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .app-highlight-card {
        padding: 2rem 1.5rem;
    }

    /* Differentials */
    .diff-card {
        padding: 2rem 1.5rem;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .diff-card .card-icon {
        font-size: 2rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .diff-card h3 {
        margin-bottom: 0;
    }

    .differentials-subtitle {
        font-size: 1rem;
        margin-top: -1.25rem;
    }

    /* Comparison cards */
    .comparison-card {
        padding: 1.75rem;
    }

    .comparison-card-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .comparison-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.625rem;
    }

    .comparison-title-group h3 {
        font-size: 1.1875rem;
    }

    .comparison-num {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 0.8125rem;
    }

    .comparison-list {
        gap: 1rem;
    }

    /* Benefits */
    .benefits-subtitle {
        font-size: 1rem;
        margin-top: -1.5rem;
    }

    .benefits-card {
        padding: 1.5rem;
    }

    /* Audience */
    .audience-list {
        margin-top: 2rem;
        gap: 1.25rem;
    }

    .audience-item p {
        font-size: 1rem;
    }

    /* Not Us */
    .not-us-card {
        padding: 2rem 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .not-us-left {
        flex: none;
    }

    .not-us-left h2 {
        font-size: 1.5rem;
    }

    .not-us-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-top: 1.5rem;
    }

    /* Testimonials */
    .testimonial-text {
        font-size: 1rem;
    }

    /* Credibility badges */
    .credibility-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
        margin-top: 2.5rem;
    }

    .badge-item {
        justify-content: center;
        padding: 0.75rem 1.25rem;
    }

    /* Final CTA */
    .cta-box p {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }

    .cta-box .btn {
        width: 100%;
        justify-content: center;
    }

    .business-hours {
        font-size: 0.8125rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0;
        font-size: 0.875rem;
    }

    /* WhatsApp float */
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
        font-size: 1.75rem;
    }

    /* Diagnostic form */
    .diagnostic-subtitle {
        font-size: 1rem;
        margin-top: -0.5rem;
    }

    .diagnostic-card {
        padding: 1.75rem 1.25rem;
    }

    .diagnostic-actions {
        justify-content: stretch;
    }

    .diagnostic-actions .btn {
        width: 100%;
    }

    .diagnostic-actions-split {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    /* Thank you page */
    .obrigado-hero {
        padding: 110px 0 56px;
    }
}

/* --- Small Mobile (≤430px) --- */
@media (max-width: 430px) {
    .hero {
        padding: 90px 0 56px;
    }

    .not-us-card {
        padding: 1.5rem 1.25rem;
    }

    .comparison-card {
        padding: 1.5rem 1.25rem;
    }

    .phone-frame {
        width: 220px;
    }
}

/* =========================================
   LGPD - BANNER DE CONSENTIMENTO
   ========================================= */
.consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: var(--color-bg-darker);
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
    animation: consentSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes consentSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

.consent-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.consent-banner-text p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.consent-banner-text strong {
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-weight: 600;
}

.consent-banner-links {
    margin-top: 0.5rem !important;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.consent-banner-links a {
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.consent-banner-links a:hover {
    color: #12b892;
    border-bottom-color: currentColor;
}

.consent-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.consent-banner-actions .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.consent-btn-accept {
    background-color: var(--color-accent);
    color: #fff;
}

.consent-btn-accept:hover {
    background-color: var(--color-accent-hover);
}

.consent-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.consent-btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* Afasta o botao flutuante do WhatsApp enquanto a faixa estiver aberta */
.consent-banner-open .whatsapp-float {
    bottom: calc(var(--consent-banner-h, 120px) + 1.25rem);
}

@media (max-width: 768px) {
    .consent-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0.875rem 16px;
    }

    .consent-banner-text p {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    /* Frase de reforço sai no mobile: o banner passava de 35% da tela.
       O conteúdo permanece na Política de Cookies, linkada no próprio banner. */
    .consent-extra {
        display: none;
    }

    .consent-banner-links {
        margin-top: 0.375rem !important;
        gap: 0.875rem;
    }

    .consent-banner-links a {
        font-size: 0.75rem;
    }

    .consent-banner-actions {
        gap: 0.5rem;
    }

    .consent-banner-actions .btn {
        flex: 1;
        justify-content: center;
        padding: 0.6875rem 1rem;
        font-size: 0.875rem;
    }
}

/* =========================================
   LGPD - CONSENTIMENTO NO FORMULARIO
   ========================================= */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: var(--color-bg-light);
    border: 1.5px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.form-consent:hover {
    border-color: var(--color-primary);
}

.form-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 1px;
    cursor: pointer;
}

.form-consent span {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--color-text-main);
}

.form-consent a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

.form-consent.checked {
    border-color: var(--color-primary);
    background: rgba(0, 133, 104, 0.06);
}

/* =========================================
   PAGINAS LEGAIS (privacidade / termos / cookies)
   ========================================= */
.legal-hero {
    padding: 140px 0 48px;
    background-color: var(--color-bg-darker);
    color: #fff;
}

.legal-hero h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.legal-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.legal-content {
    padding: 56px 0 80px;
}

.legal-body {
    max-width: 820px;
    margin: 0 auto;
}

.legal-body h2 {
    font-size: 1.375rem;
    margin: 2.5rem 0 1rem;
    padding-top: 0.5rem;
    color: var(--color-text-dark);
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    font-size: 1.0625rem;
    margin: 1.75rem 0 0.625rem;
    color: var(--color-text-dark);
}

.legal-body p,
.legal-body li {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--color-text-main);
}

.legal-body p {
    margin-bottom: 1rem;
}

.legal-body ul,
.legal-body ol {
    margin: 0 0 1.25rem 1.25rem;
}

.legal-body li {
    margin-bottom: 0.625rem;
}

.legal-body a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

.legal-body strong {
    color: var(--color-text-dark);
}

.legal-toc {
    background: var(--color-bg-light);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.legal-toc ol {
    margin: 0 0 0 1rem;
}

.legal-toc li {
    margin-bottom: 0.375rem;
}

.legal-callout {
    background: rgba(0, 133, 104, 0.06);
    border: 1px solid rgba(0, 133, 104, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.legal-callout p:last-child {
    margin-bottom: 0;
}

.legal-table-wrap {
    overflow-x: auto;
    margin: 1.25rem 0 1.75rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.legal-table th,
.legal-table td {
    text-align: left;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.legal-table th {
    background: var(--color-bg-light);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-dark);
    white-space: nowrap;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-table code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.8125rem;
    background: var(--color-bg-light);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    color: var(--color-primary-dark);
}

.legal-updated {
    display: inline-block;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    width: 100%;
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

/* =========================================
   RODAPE - LINKS LEGAIS
   ========================================= */
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin-bottom: 0.25rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.footer-company {
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.42);
    max-width: 620px;
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 110px 0 40px;
    }

    .legal-content {
        padding: 40px 0 56px;
    }

    .footer-legal {
        gap: 0.5rem 1rem;
    }

    /* ---------------------------------------------------------
       Tabelas viram cartões empilhados.
       No mobile, rolar a tabela na horizontal é ruim de usar: o
       leitor perde a referência da coluna. Cada linha passa a ser
       um cartão e cada célula exibe o nome da sua coluna, lido do
       atributo data-label (gerado a partir do <th> correspondente).
       Ao editar/adicionar linhas, manter o data-label em cada <td>.
       --------------------------------------------------------- */
    .legal-table-wrap {
        overflow-x: visible;
        border: none;
        border-radius: 0;
        margin: 1.25rem 0 1.5rem;
    }

    .legal-table {
        min-width: 0;
        display: block;
    }

    /* O cabeçalho some: o rótulo passa a viver dentro de cada célula */
    .legal-table thead {
        display: none;
    }

    .legal-table tbody,
    .legal-table tr,
    .legal-table td {
        display: block;
        width: 100%;
    }

    .legal-table tr {
        border: 1px solid #e2e8f0;
        border-radius: var(--border-radius-sm);
        background: #fff;
        margin-bottom: 0.75rem;
        overflow: hidden;
    }

    .legal-table tr:last-child {
        margin-bottom: 0;
    }

    .legal-table td {
        border-bottom: 1px solid #f1f5f9;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .legal-table tr td:last-child {
        border-bottom: none;
    }

    .legal-table td::before {
        content: attr(data-label);
        display: block;
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 0.6875rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--color-primary);
        margin-bottom: 0.25rem;
    }

    /* Célula sem rótulo (tabela de 1 coluna) não ganha faixa vazia */
    .legal-table td[data-label=""]::before {
        display: none;
    }

    /* Primeira célula é a chave da linha: destacada como título do cartão */
    .legal-table tr td:first-child {
        background: var(--color-bg-light);
        font-weight: 600;
        color: var(--color-text-dark);
    }
}
