/* ============================================
   LIMPA NOME - Modern Minimalist Design v2.0
   Mobile-First & Responsive
   ============================================ */

/* === CSS Variables === */
:root {
    /* Colors - Green Palette */
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary-color: #f0fdf4;
    --accent-green: #d1fae5;

    /* Neutral Colors */
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --bg-light: #f9fafb;

    /* Status Colors */
    --red: #ef4444;
    --orange: #f59e0b;
    --blue: #3b82f6;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;
    --spacing-xxl: 3rem;

    /* Layout */
    --header-height: 70px;
    --max-width: 1200px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevenir overflow de texto */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
a {
    word-wrap: normal;
    overflow-wrap: normal;
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 700;
}

h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
}

h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-gray);
}

/* === Layout === */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

section+section {
    padding-top: var(--spacing-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-sm);
}

.section-title {
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--text-gray);
    line-height: 1.7;
}

/* === Header === */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition-base);
    width: 100%;
}

.header .container {
    height: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition-base);
    border-radius: 2px;
}

/* === Hero Section === */
.hero {
    padding-top: calc(var(--header-height) + var(--spacing-xl));
    padding-bottom: var(--spacing-xxl);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
}

.hero-title {
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-title .black-text {
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--text-gray);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Cards de Garantia - Otimizado para Mobile */
.video-garantias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
    width: 100%;
}

.garantia-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--secondary-color);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    border: 1px solid var(--accent-green);
}

.garantia-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--accent-green);
}

.garantia-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.garantia-icon svg {
    width: 20px;
    height: 20px;
}

.garantia-title {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.3;
}

/* === Buttons === */
.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
}

.btn-secondary:hover {
    background: var(--red);
    color: white;
    transform: translateY(-2px);
}

/* === Services Section === */
.como-ajudamos {
    background: var(--bg-light);
}

.services-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.service-modern {
    background: var(--secondary-color);
    border: 1px solid var(--accent-green);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: var(--spacing-md);
}

.service-title-modern {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.service-desc-modern {
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
}

.service-highlight {
    margin-top: var(--spacing-sm);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* === Benefits Section === */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.beneficio-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--secondary-color);
    border: 1px solid var(--accent-green);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.beneficio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.beneficio-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: white;
}

.beneficio-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.beneficio-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* === Transparency Section === */
.esclarecimentos {
    background: var(--bg-light);
}

.esclarecimentos-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.transparency-table-container {
    overflow-x: auto;
    margin-top: var(--spacing-lg);
}

.transparency-table {
    width: 100%;
    min-width: 600px;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.header-column {
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: white;
    font-weight: 700;
}

.fazemos-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.nao-fazemos-header {
    background: linear-gradient(135deg, var(--red), #dc2626);
}

.header-icon {
    flex-shrink: 0;
}

.header-icon svg {
    width: 32px;
    height: 32px;
}

.table-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.table-cell {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--secondary-color);
    border: 1px solid var(--accent-green);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    font-size: 1.05rem;
    font-weight: 600;
}

.fazemos-cell {
    border-left: 3px solid var(--primary-color);
}

.nao-fazemos-cell {
    border-left: 3px solid var(--red);
}

.cell-icon {
    flex-shrink: 0;
}

.cell-icon svg {
    width: 24px;
    height: 24px;
}

/* Mobile Dropdown */
.mobile-dropdown-container {
    display: none;
}

.dropdown-section {
    margin-bottom: var(--spacing-md);
}

.dropdown-toggle {
    width: 100%;
    padding: var(--spacing-sm);
    border: none;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: white;
    font-weight: 700;
    transition: var(--transition-base);
}

.fazemos-toggle {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.nao-fazemos-toggle {
    background: linear-gradient(135deg, var(--red), #dc2626);
}

.toggle-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.chevron-icon {
    transition: transform var(--transition-base);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.dropdown-content.active {
    max-height: 2000px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--secondary-color);
    border-bottom: 1px solid var(--accent-green);
    margin-top: 2px;
    font-size: 1rem;
    font-weight: 600;
}

/* === Process/Timeline Section === */
.processo-intro-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    color: white;
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-lg);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
    min-width: 280px;
}

.intro-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-text h3 {
    color: white;
    margin-bottom: var(--spacing-xs);
}

.intro-text p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.processo-time-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.time-text {
    display: flex;
    flex-direction: column;
}

.time-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

.time-value {
    font-weight: 700;
    font-size: 1.125rem;
}

.modern-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    z-index: 1;
}

.timeline-step {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--white);
}

.step-content {
    flex: 1;
}

.step-card {
    background: var(--secondary-color);
    border: 1px solid var(--accent-green);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.step-header h3 {
    margin: 0;
    font-size: 1.125rem;
}

.step-duration {
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.step-card p {
    margin: 0;
    color: var(--text-gray);
}

.step-features {
    margin-top: var(--spacing-sm);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.feature-tag {
    display: inline-block;
    background: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.feature-tag.success {
    background: #dcfce7;
    color: #166534;
}

.processo-footer {
    margin-top: var(--spacing-lg);
}

.footer-card {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-text h4 {
    color: white;
    margin-bottom: var(--spacing-xs);
}

.footer-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* === Plans Section === */
.planos {
    background: var(--bg-light);
    padding-bottom: var(--spacing-md);
}

.planos-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.urgency-banner {
    background: #fff7ed;
    border: 1px solid #ffedd5;
    color: #c2410c;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    font-weight: 600;
    font-size: 0.95rem;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    align-items: start;
}

.plano-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    border: 2px solid var(--accent-green);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
    /* Ensure full height in grid cell */
}

.plano-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plano-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
    /* Make featured card slightly larger */
}

/* Override transform on hover for featured card to avoid conflict */
.plano-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}


.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.card-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.plan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-color);
}

.plan-icon.premium {
    color: var(--orange);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.plan-description {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.pricing-section {
    margin: var(--spacing-md) 0;
}

.price-container {
    text-align: center;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.875rem;
}

.installment-info {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: var(--spacing-xs);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin: var(--spacing-xs) 0;
}

.current-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.current-price .cents {
    font-size: 1.5rem;
}

.total-price {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: var(--spacing-xs);
}

.savings-badge {
    background: var(--secondary-color);
    color: var(--primary-dark);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: var(--spacing-xs);
}

.savings-badge.premium {
    background: #fff7ed;
    color: #c2410c;
}

.payment-info {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: var(--spacing-xs);
}

.features-section {
    margin: var(--spacing-md) 0;
}

.features-header {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.feature-item {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.feature-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    font-weight: 700;
}



.btn-plano {
    width: 100%;
    padding: 16px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-top: auto;
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-plano:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Remove styles that differentiate buttons, making them all look like 'featured' */
.btn-plano.featured {
    /* Styles are now base styles */
}

.btn-plano.featured:hover {
    /* Styles are now base styles */
}

.btn-plano.primary,
.btn-plano.secondary {
    /* Reset specific styles to match base */
    background: var(--primary-color);
    color: white;
}

.btn-plano.primary:hover,
.btn-plano.secondary:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
    display: block;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 500;
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    margin: 0;
}

/* === Responsive Design === */

/* Tablets */
@media (max-width: 1024px) {
    :root {
        --spacing-xxl: 2.5rem;
        --spacing-xl: 2rem;
    }

    .plano-card.featured {
        transform: none;
    }

    section {
        padding: var(--spacing-xl) 0;
    }

    section+section {
        padding-top: var(--spacing-md);
    }
}

/* Small Tablets */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        align-items: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .partnership-hero {
        grid-template-columns: 1fr;
    }

    .partnership-visual {
        order: -1;
    }
}

/* Tablet - Ajuste para 2 colunas se ficar muito apertado */
@media (max-width: 1024px) {
    .services-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-xxl: 2rem;
        --spacing-xl: 1.5rem;
        --spacing-lg: 1.25rem;
        --spacing-md: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        gap: 0;
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        padding: var(--spacing-sm) 0;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .transparency-table-container {
        display: none;
    }

    .mobile-dropdown-container {
        display: block;
    }

    /* Cards de Garantia - Mobile Otimizado (2 por linha) */
    .video-garantias {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .garantia-card {
        padding: 8px 6px;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 6px;
    }

    .garantia-icon svg {
        width: 20px;
        height: 20px;
    }

    .garantia-title {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .timeline-track {
        left: 20px;
    }

    .services-modern {
        grid-template-columns: 1fr;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: var(--spacing-lg) 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .intro-content {
        flex-direction: column;
        text-align: center;
    }

    .intro-icon {
        margin-bottom: var(--spacing-sm);
    }

    .processo-intro-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .processo-time-badge {
        width: 100%;
        justify-content: center;
        margin-top: var(--spacing-sm);
    }

    .table-row {
        grid-template-columns: 1fr;
    }

    .current-price {
        font-size: 2rem;
    }

    .garantia-title {
        font-size: 0.65rem;
    }

    /* Ajuste do card de estatísticas para mobile */
    .floating-stats {
        padding: 10px 16px;
        border-radius: 12px;
        top: 10px;
        right: 10px;
        max-width: 140px;
    }

    .stat-number {
        font-size: 1.25rem;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 0.65rem;
        line-height: 1.1;
    }
}

/* Print Styles */
@media print {

    .header,
    .mobile-menu-toggle,
    .btn-primary,
    .btn-secondary,
    .btn-plano,
    .partnership-cta-btn {
        display: none;
    }
}

/* === Novos Estilos para UX/UI Moderno (Partnership Section) === */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    }
}

.section-header {
    max-width: 850px !important;
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-subtitle strong {
    color: var(--primary-color);
    font-weight: 700;
}

.como-ajudamos {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.como-ajudamos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#10b981 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

.alert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: text-bottom;
    color: #ef4444;
}

/* SEÇÃO PARCERIA */
.parceria {
    padding: var(--spacing-xl) 0 100px;
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.parceria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#3b82f6 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    opacity: 0.1;
    pointer-events: none;
}

.partnership-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
    letter-spacing: 0.5px;
}

.partnership-header h2 {
    font-size: 2.75rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.partnership-subtitle p {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.partnership-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.partnership-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
}

.option-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.option-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
    border-color: #93c5fd;
}

.option-card.partnership-option {
    background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
    border: 1px solid #bfdbfe;
    box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.1);
}

.option-card.partnership-option:hover {
    box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.25);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.option-icon {
    font-size: 2.25rem;
    background: #eff6ff;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid #dbeafe;
}

.option-header h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

.option-benefit {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
}

.benefit-text {
    color: #64748b;
    display: block;
    font-size: 1rem;
    font-weight: 500;
}

.benefit-highlight {
    display: block;
    font-size: 3.75rem;
    font-weight: 800;
    color: #2563eb;
    margin-top: 6px;
    letter-spacing: -0.02em;
}

.option-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #475569;
    font-size: 1.05rem;
}

.checkmark {
    color: #2563eb;
    font-weight: 900;
    background: #dbeafe;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.cta-section {
    margin-top: 40px;
    text-align: center;
}

.partnership-cta-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 20px 48px;
    border-radius: 100px;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.partnership-cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.partnership-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.6);
}

.partnership-cta-btn:hover::after {
    opacity: 1;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.partnership-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 0 20px 20px 20px;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.image-container {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.3);
    border: 10px solid white;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.7s ease;
}

.image-container:hover .hero-image {
    transform: scale(1.08);
}

.floating-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.earnings-preview {
    margin-top: 32px;
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.15);
    border: 1px solid #e2e8f0;
}

.earnings-preview h4 {
    font-size: 1.25rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 700;
}

.earnings-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.earning-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.earning-item:hover {
    background: #eff6ff;
    transform: translateX(8px);
}

.earning-item.highlighted {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #93c5fd;
}

.earning-icon {
    color: #2563eb;
    flex-shrink: 0;
}

.earning-content {
    flex: 1;
}

.earning-frequency {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 4px;
}

.earning-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
}

@media (max-width: 991px) {
    .partnership-hero {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .partnership-header h2 {
        font-size: 2rem;
    }

    .floating-stats {
        right: 0;
    }
}

@media (max-width: 480px) {
    .partnership-header h2 {
        font-size: 1.75rem;
    }

    .option-card {
        padding: 24px;
    }

    .option-icon {
        width: 60px;
        height: 60px;
    }

    /* Ajuste do card de estatísticas para mobile (Override final) */
    .floating-stats {
        right: 10px;
        /* Garante que sobrescreve o right: 0 do 991px */
        top: 10px;
        padding: 10px 16px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* === Mobile Layout Reordering === */
/* Reorganizar seção de parceria no mobile */
@media (max-width: 768px) {

    /* Tornar partnership-hero um flex container para reordenar elementos */
    .partnership-hero {
        display: flex;
        flex-direction: column;
    }

    /* Ordem dos elementos dentro de partnership-hero */
    .partnership-content {
        order: 1;
        /* Primeiro: os cards (Indique 3 Amigos e Seja Parceiro) */
    }

    .partnership-visual {
        order: 2;
        /* Segundo: imagem e potencial de ganhos */
    }

    /* Botão CTA por último, abaixo de tudo */
    .cta-section {
        order: 3;
        margin-top: 2rem !important;
    }
}