/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-blue-50: #eff6ff;
    --color-blue-100: #dbeafe;
    --color-blue-200: #bedbff;
    --color-blue-300: #93c5fd;
    --color-blue-400: #60a5fa;
    --color-blue-500: #3b82f6;
    --color-blue-600: #155dfc;
    --color-blue-700: #1447e6;
    --color-cyan-50: #ecfeff;
    --color-cyan-100: #cffafe;
    --color-cyan-500: #06b6d4;
    --color-cyan-600: #0092b5;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    --color-green-50: #f0fdf4;
    --color-green-100: #dcfce7;
    --color-green-500: #22c55e;
    --color-green-600: #16a34a;
    --color-yellow-50: #fefce8;
    --color-yellow-100: #fef9c3;
    --color-yellow-200: #fef08a;
    --color-yellow-300: #fde047;
    --color-yellow-800: #854d0e;
    --color-yellow-900: #713f12;
    --color-red-500: #ef4444;
    --color-red-600: #dc2626;
    --color-purple-50: #faf5ff;
    --color-purple-100: #f3e8ff;
    --color-purple-500: #a855f7;
    --color-purple-600: #9333ea;
    --color-purple-800: #6b21a8;
    --color-purple-900: #581c87;
    --color-pink-500: #ec4899;
    --color-pink-600: #db2777;
    --color-orange-500: #f97316;
    --color-orange-600: #ea580c;
    --color-emerald-500: #10b981;
    --color-emerald-600: #059669;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--color-gray-800);
    -webkit-font-smoothing: antialiased;
}

.min-h-screen {
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 480px) {
    .container {
        padding: 0 1.75rem;
    }
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2.5rem;
    }
}

/* ===== MOBILE SPACING FIX ===== */
@media (max-width: 480px) {
    /* Container: mais respiro nas bordas em telas pequenas (header, hero, seções) */
    .container {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem 0.375rem 0.5rem;
    }
    
    /* Stats grid mobile */
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    /* Notice cards mobile */
    .notice-card {
        padding: 1rem;
    }
    
    /* Trust section mobile */
    .trust-grid {
        gap: 1rem;
    }
    
    .trust-card {
        padding: 1rem;
    }
    
    .trust-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .trust-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    /* Section headers mobile */
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Service cards mobile */
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    /* Why cards mobile */
    .why-card {
        padding: 1.25rem;
    }
    
    .why-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .why-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    /* Steps cards mobile */
    .step-card {
        padding: 1.25rem;
    }
    
    .step-emoji {
        font-size: 2.5rem;
    }
    
    /* Comparison cards mobile */
    .comparison-card {
        padding: 1.5rem;
    }
    
    .comparison-header h3 {
        font-size: 1.25rem;
    }
    
    /* Testimonials mobile */
    .testimonial-card {
        padding: 1.25rem;
    }
    
    /* FAQ mobile */
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1rem;
    }
    
    /* CTA section mobile */
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section > .cta-container > p {
        font-size: 1rem;
    }
    
    .cta-features {
        gap: 1rem;
    }
    
    /* Contact section mobile */
    .contact-card {
        padding: 1.5rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-brand img {
        width: 200px;
    }
    
    .footer-warning {
        padding: 1rem;
    }
    
    .footer-warning p {
        font-size: 0.6875rem;
    }
    
    /* Buttons mobile */
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
    }
    
    /* Páginas de política e contato */
    .policy-content {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
}

/* ===== PÁGINA INICIAL – MAIS ESPAÇO MOBILE ===== */
@media (max-width: 768px) {
    body.page-inicial .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 480px) {
    body.page-inicial .container {
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }
    
    /* Trust-section: alinhamento e overflow — grid à largura do container, cards podendo encolher */
    body.page-inicial .trust-section .trust-grid {
        width: 100%;
        max-width: 100%;
        margin: 0;
        justify-items: stretch;
        min-width: 0;
    }
    
    body.page-inicial .trust-section .trust-card {
        min-width: 0;
    }
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-gray-200);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    /* lateral vem do .container (padding-left/right) — não usar padding: 1rem 0 para não zerar as laterais */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 220px;
    height: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    color: var(--color-gray-800);
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--color-blue-600);
    background: var(--color-blue-50);
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    color: var(--color-gray-800);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

.dropdown-btn:hover {
    color: var(--color-blue-600);
    background: var(--color-blue-50);
}

.dropdown-btn .chevron-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

.dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 0.5rem;
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: var(--color-gray-700);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: var(--color-blue-50);
    color: var(--color-blue-600);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--color-gray-300);
    background: transparent;
    cursor: pointer;
    margin-left: auto;
    transition: background 0.2s;
}

.mobile-menu-btn:hover {
    background: var(--color-gray-100);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-nav-links {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--color-gray-800);
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    background: var(--color-blue-50);
    color: var(--color-blue-600);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to bottom, white, rgba(239, 246, 255, 0.4), white);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
}

.hero-blob-1 {
    top: -10rem;
    right: -10rem;
    width: 20rem;
    height: 20rem;
    background: rgba(191, 219, 254, 0.3);
    animation: pulse 4s ease-in-out infinite;
}

.hero-blob-2 {
    bottom: -10rem;
    left: -10rem;
    width: 20rem;
    height: 20rem;
    background: rgba(233, 213, 255, 0.2);
    animation: pulse 4s ease-in-out infinite 1s;
}

.hero-blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24rem;
    height: 24rem;
    background: rgba(219, 234, 254, 0.2);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: linear-gradient(90deg, #000 1px, transparent 1px);
    background-size: 50px 50px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 5rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    opacity: 0;
    transform: translateY(2.5rem);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-stats {
    opacity: 0;
    transform: translateY(2.5rem);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    background: rgba(219, 234, 254, 0.8);
    border: 1px solid var(--color-blue-300);
    color: var(--color-blue-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: background 0.3s;
}

.hero-badge:hover {
    background: var(--color-blue-100);
}

.hero-badge .icon-sm {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-gray-900);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-highlight {
    position: relative;
    display: inline-block;
    margin-top: 1rem;
}

.hero-title-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-blue-500), var(--color-cyan-500), var(--color-blue-500));
    filter: blur(32px);
    opacity: 0.3;
}

.hero-title-gradient {
    position: relative;
    background: linear-gradient(to right, var(--color-blue-600), var(--color-cyan-500), var(--color-blue-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-gray-700);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 32rem;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.text-blue-bold {
    color: var(--color-blue-700);
    font-weight: 600;
}

.hero-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

.hero-check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-700);
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-green-600);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(to right, var(--color-blue-600), var(--color-cyan-600));
    color: white;
    box-shadow: var(--shadow-lg), 0 10px 20px -5px rgba(21, 93, 252, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 15px 30px -5px rgba(21, 93, 252, 0.4);
}

.btn-outline {
    background: white;
    color: var(--color-gray-900);
    border: 2px solid var(--color-gray-300);
}

.btn-outline:hover {
    background: var(--color-gray-50);
    border-color: var(--color-blue-400);
}

.btn-lg {
    padding: 1rem 2rem;
}

.btn-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===== STATS CARDS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, white, transparent);
    border: 1px solid;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-card-blue {
    border-color: rgba(191, 219, 254, 0.5);
}
.stat-card-blue:hover {
    border-color: var(--color-blue-400);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.1);
}

.stat-card-cyan {
    border-color: rgba(165, 243, 252, 0.5);
}
.stat-card-cyan:hover {
    border-color: var(--color-cyan-500);
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.1);
}

.stat-card-green {
    border-color: rgba(187, 247, 208, 0.5);
}
.stat-card-green:hover {
    border-color: var(--color-green-500);
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.1);
}

.stat-card-purple {
    border-color: rgba(233, 213, 255, 0.5);
}
.stat-card-purple:hover {
    border-color: var(--color-purple-500);
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.1);
}

.stat-card-overlay {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card-blue .stat-card-overlay {
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.05), transparent);
}
.stat-card-cyan .stat-card-overlay {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.05), transparent);
}
.stat-card-green .stat-card-overlay {
    background: linear-gradient(to bottom right, rgba(34, 197, 94, 0.05), transparent);
}
.stat-card-purple .stat-card-overlay {
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.05), transparent);
}

.stat-card:hover .stat-card-overlay {
    opacity: 1;
}

.stat-card-content {
    position: relative;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.stat-icon-blue {
    background: var(--color-blue-100);
    color: var(--color-blue-600);
}

.stat-icon-cyan {
    background: var(--color-cyan-100);
    color: var(--color-cyan-600);
}

.stat-icon-green {
    background: var(--color-green-100);
    color: var(--color-green-600);
}

.stat-icon-purple {
    background: var(--color-purple-100);
    color: var(--color-purple-600);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

/* ===== NOTICES SECTION ===== */
.notices-section {
    padding: 3rem 0;
    background: white;
}

.notices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .notices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid;
    display: flex;
    gap: 1rem;
    transition: all 0.3s;
}

.notice-card:hover {
    box-shadow: var(--shadow-lg);
}

.notice-yellow {
    border-color: var(--color-yellow-200);
    background: rgba(254, 252, 232, 0.5);
}
.notice-yellow:hover {
    border-color: var(--color-yellow-300);
    box-shadow: 0 10px 15px -3px rgba(253, 224, 71, 0.2);
}
.notice-yellow .notice-icon {
    color: #ca8a04;
}
.notice-yellow h3 {
    color: var(--color-yellow-900);
}
.notice-yellow p {
    color: var(--color-yellow-800);
}

.notice-blue {
    border-color: var(--color-blue-200);
    background: rgba(239, 246, 255, 0.5);
}
.notice-blue:hover {
    border-color: var(--color-blue-300);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
}
.notice-blue .notice-icon {
    color: var(--color-blue-600);
}
.notice-blue h3 {
    color: #1e3a5f;
}
.notice-blue p {
    color: #1e40af;
}

.notice-purple {
    border-color: var(--color-purple-100);
    background: rgba(250, 245, 255, 0.5);
}
.notice-purple:hover {
    border-color: #d8b4fe;
    box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.2);
}
.notice-purple .notice-icon {
    color: var(--color-purple-600);
}
.notice-purple h3 {
    color: var(--color-purple-900);
}
.notice-purple p {
    color: var(--color-purple-800);
}
.notice-purple a {
    color: #7e22ce;
    text-decoration: underline;
}
.notice-purple a:hover {
    color: var(--color-purple-900);
}

.notice-icon {
    flex-shrink: 0;
}

.notice-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.notice-content h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.notice-content p {
    font-size: 0.875rem;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--color-gray-200);
    background: white;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.trust-card:hover {
    border-color: var(--color-blue-300);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.trust-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
}

.trust-icon svg {
    width: 2rem;
    height: 2rem;
}

.trust-icon-blue {
    background: linear-gradient(to bottom right, var(--color-blue-500), var(--color-cyan-600));
}

.trust-icon-purple {
    background: linear-gradient(to bottom right, var(--color-purple-500), var(--color-pink-600));
}

.trust-icon-green {
    background: linear-gradient(to bottom right, var(--color-green-500), var(--color-emerald-600));
}

.trust-icon-yellow {
    background: linear-gradient(to bottom right, #eab308, var(--color-orange-600));
}

.trust-card h3 {
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: var(--color-gray-600);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white, rgba(239, 246, 255, 0.3), white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid;
    background: white;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card-blue {
    border-color: var(--color-blue-300);
    background: rgba(239, 246, 255, 0.5);
}
.service-card-blue:hover {
    border-color: var(--color-blue-400);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.1);
}

.service-card-purple {
    border-color: #d8b4fe;
    background: rgba(250, 245, 255, 0.5);
}
.service-card-purple:hover {
    border-color: var(--color-purple-500);
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.1);
}

.service-card-green {
    border-color: #86efac;
    background: rgba(240, 253, 244, 0.5);
}
.service-card-green:hover {
    border-color: var(--color-green-500);
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.1);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
}

.service-icon-blue {
    background: linear-gradient(to bottom right, var(--color-blue-100), var(--color-blue-50));
    color: var(--color-blue-600);
}

.service-icon-purple {
    background: linear-gradient(to bottom right, var(--color-purple-100), var(--color-purple-50));
    color: var(--color-purple-600);
}

.service-icon-green {
    background: linear-gradient(to bottom right, var(--color-green-100), var(--color-green-50));
    color: var(--color-green-600);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--color-gray-700);
}

.list-check {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.list-check.blue {
    color: var(--color-blue-600);
}

.list-check.purple {
    color: var(--color-purple-600);
}

.list-check.green {
    color: var(--color-green-600);
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(239, 246, 255, 0.5), white, white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-gray-200);
    background: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gray-300);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-icon svg {
    width: 2rem;
    height: 2rem;
}

.why-icon-blue {
    background: linear-gradient(to bottom right, var(--color-blue-500), var(--color-cyan-500));
}

.why-icon-yellow {
    background: linear-gradient(to bottom right, #eab308, var(--color-orange-500));
}

.why-icon-purple {
    background: linear-gradient(to bottom right, var(--color-purple-500), var(--color-pink-500));
}

.why-icon-green {
    background: linear-gradient(to bottom right, var(--color-green-500), var(--color-emerald-500));
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--color-gray-600);
    line-height: 1.6;
}

.why-highlight {
    margin-top: 4rem;
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(to right, rgba(219, 234, 254, 0.5), rgba(207, 250, 254, 0.5));
    border: 1px solid var(--color-blue-200);
}

.why-highlight p {
    color: var(--color-gray-800);
    line-height: 1.7;
    font-size: 1.125rem;
}

.why-highlight strong {
    color: var(--color-blue-700);
}

/* ===== STEPS SECTION ===== */
.steps-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white, rgba(207, 250, 254, 0.3), white);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steps-line {
    display: none;
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--color-blue-300), transparent);
    pointer-events: none;
}

@media (min-width: 768px) {
    .steps-line {
        display: block;
    }
}

.step-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-blue-200);
    background: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-blue-400);
    box-shadow: var(--shadow-lg), 0 10px 20px -5px rgba(59, 130, 246, 0.1);
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(to right, var(--color-blue-600), var(--color-cyan-600));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 900;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

.step-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--color-gray-600);
    line-height: 1.6;
}

.step-arrow {
    display: none;
    position: absolute;
    right: -1rem;
    top: 25%;
    transform: translateY(-50%);
    color: var(--color-blue-400);
}

@media (min-width: 768px) {
    .step-arrow {
        display: block;
    }
    
    .step-card:last-child .step-arrow {
        display: none;
    }
}

.steps-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white, rgba(239, 246, 255, 0.4), white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.comparison-card {
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s;
}

.comparison-without {
    border: 1px solid var(--color-gray-200);
    background: white;
}

.comparison-without:hover {
    border-color: var(--color-gray-300);
}

.comparison-with {
    position: relative;
    border: 2px solid var(--color-blue-300);
    background: linear-gradient(to bottom right, rgba(239, 246, 255, 0.8), rgba(207, 250, 254, 0.8));
    backdrop-filter: blur(4px);
}

.comparison-with::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(to right, var(--color-blue-600), var(--color-cyan-600));
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.3;
    filter: blur(4px);
    transition: opacity 0.3s;
}

.comparison-with:hover::before {
    opacity: 0.5;
}

.comparison-badge {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--color-blue-600), var(--color-cyan-600));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.comparison-header p {
    color: var(--color-gray-600);
}

.comparison-with .comparison-header p {
    color: var(--color-blue-700);
    font-weight: 500;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.comparison-item span {
    color: var(--color-gray-700);
}

.comparison-with .comparison-item span {
    color: var(--color-gray-800);
    font-weight: 500;
}

.x-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-red-500);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.check-icon-green {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-green-600);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.comparison-notice {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-yellow-300);
    background: var(--color-yellow-50);
}

.comparison-notice p {
    color: var(--color-yellow-900);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .comparison-notice p {
        font-size: 1rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(239, 246, 255, 0.5), white, white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-gray-200);
    background: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-blue-300);
    box-shadow: var(--shadow-lg), 0 10px 20px -5px rgba(59, 130, 246, 0.1);
}

.quote-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-blue-200);
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #facc15;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--color-gray-100);
    padding-top: 1rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--color-blue-500), var(--color-cyan-600));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.author-name {
    font-weight: 700;
    color: var(--color-gray-900);
    font-size: 0.875rem;
}

.author-location {
    font-size: 0.75rem;
    color: var(--color-gray-600);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white, rgba(239, 246, 255, 0.3), white);
}

.faq-container {
    max-width: 56rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--color-gray-200);
    border-radius: 0.75rem;
    background: white;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--color-blue-300);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: transparent;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-900);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(248, 250, 252, 0.5);
}

.faq-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-blue-600);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-gray-700);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-cta {
    margin-top: 4rem;
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(to right, rgba(239, 246, 255, 0.8), rgba(207, 250, 254, 0.8));
    border: 1px solid var(--color-blue-200);
    text-align: center;
}

.faq-cta p {
    color: var(--color-gray-700);
    margin-bottom: 1rem;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-blue-600);
    font-weight: 600;
    transition: color 0.2s;
}

.faq-link:hover {
    color: var(--color-blue-700);
}

.arrow-right {
    width: 1rem;
    height: 1rem;
    transform: rotate(-90deg);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to bottom right, white, rgba(239, 246, 255, 0.4), white);
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
}

.cta-blob-1 {
    top: -10rem;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

.cta-blob-2 {
    bottom: -10rem;
    left: -10rem;
    width: 24rem;
    height: 24rem;
    background: rgba(168, 85, 247, 0.1);
    animation: pulse 4s ease-in-out infinite 1s;
}

.cta-blob-3 {
    top: 50%;
    left: 33%;
    width: 20rem;
    height: 20rem;
    background: rgba(6, 182, 212, 0.05);
}

.cta-container {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-gray-900);
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 3.75rem;
    }
}

.cta-section > .cta-container > p {
    font-size: 1.25rem;
    color: var(--color-gray-700);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-btn {
    font-size: 1.125rem;
}

.cta-features {
    margin-top: 3.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cta-features {
        gap: 3rem;
    }
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-700);
}

.cta-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: var(--color-green-600);
    font-weight: 700;
}

.cta-feature span:last-child {
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(239, 246, 255, 0.5), white, white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--color-gray-200);
    background: white;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-whatsapp:hover {
    border-color: var(--color-green-500);
    box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.1);
}

.contact-phone:hover {
    border-color: var(--color-blue-500);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.1);
}

.contact-email:hover {
    border-color: var(--color-purple-500);
    box-shadow: 0 10px 20px -5px rgba(168, 85, 247, 0.1);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-icon svg {
    width: 2rem;
    height: 2rem;
}

.contact-icon-green {
    background: linear-gradient(to bottom right, var(--color-green-500), var(--color-emerald-600));
}

.contact-icon-blue {
    background: linear-gradient(to bottom right, var(--color-blue-500), var(--color-cyan-600));
}

.contact-icon-purple {
    background: linear-gradient(to bottom right, var(--color-purple-500), var(--color-pink-600));
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.contact-card > p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-link.green {
    color: var(--color-green-600);
}
.contact-link.green:hover {
    color: var(--color-green-700);
}

.contact-link.blue {
    color: var(--color-blue-600);
}
.contact-link.blue:hover {
    color: var(--color-blue-700);
}

.contact-link.purple {
    color: var(--color-purple-600);
    font-size: 0.875rem;
    word-break: break-all;
}
.contact-link.purple:hover {
    color: var(--color-purple-700);
}

.contact-notice {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-blue-200);
    background: var(--color-blue-50);
}

.contact-notice p {
    color: var(--color-gray-800);
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(to bottom, var(--color-gray-50), white);
    border-top: 1px solid var(--color-gray-200);
    padding: 5rem 0 2rem;
    overflow: hidden;
}

.footer-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand img {
    width: 250px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-links h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-blue-600);
}

.footer-links > p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-warning {
    padding: 1.5rem;
    background: rgba(254, 243, 199, 0.5);
    border: 1px solid rgba(253, 224, 71, 0.5);
    border-radius: 0.75rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.footer-warning p {
    color: var(--color-yellow-900);
    font-size: 0.75rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .footer-warning p {
        font-size: 0.875rem;
    }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-200);
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom > p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--color-gray-900);
}

/* ===== UTILITIES ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(2.5rem);
}

.delay-300 {
    animation-delay: 0.3s;
}

/* ===== PAGE HEADER (para outras páginas) ===== */
.page-header {
    background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-700));
    color: white;
    padding: 3rem 0;
}

.page-header .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.page-header .back-link:hover {
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: 0.75rem;
    background: white;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-blue-600);
    box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.required {
    color: var(--color-red-600);
    margin-left: 0.25rem;
}

/* ===== STEPPER ===== */
.stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: white;
    border-bottom: 1px solid var(--color-gray-200);
    position: sticky;
    top: 60px;
    z-index: 40;
}

.step {
    display: flex;
    align-items: center;
    flex: 1;
}

.step-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: var(--color-gray-200);
    color: var(--color-gray-600);
    transition: all 0.3s;
}

.step.active .step-circle {
    background: var(--color-blue-600);
    color: white;
}

.step.completed .step-circle {
    background: var(--color-green-500);
    color: white;
}

.step-label {
    display: none;
    margin-left: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-600);
}

.step.active .step-label {
    color: var(--color-blue-600);
}

@media (min-width: 640px) {
    .step-label {
        display: block;
    }
}

.step-line {
    flex: 1;
    height: 4px;
    background: var(--color-gray-200);
    margin: 0 1rem;
    border-radius: 2px;
}

/* ===== ALERTS ===== */
.alert {
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.alert-info {
    background: var(--color-blue-50);
    border: 1px solid var(--color-blue-200);
}

.alert-warning {
    background: var(--color-yellow-50);
    border: 1px solid var(--color-yellow-200);
    color: var(--color-yellow-900);
}

.alert-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ===== CHECKBOX ===== */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-label:hover {
    border-color: var(--color-blue-300);
    background: rgba(21, 93, 252, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--color-blue-600);
}

/* ===== POLICY PAGES ===== */
.policy-content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-blue-100);
    color: var(--color-blue-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--color-blue-200);
    margin-bottom: 1.5rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .policy-header h1 {
        font-size: 3rem;
    }
}

.policy-box {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.8), rgba(236, 254, 255, 0.8));
    border: 1px solid var(--color-blue-200);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.email-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--color-blue-200);
    border-radius: 0.75rem;
    color: var(--color-blue-700);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.policy-list {
    list-style: disc;
    list-style-position: inside;
    color: var(--color-gray-700);
    font-size: 0.875rem;
}

.policy-list li {
    margin-bottom: 0.5rem;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-gray-600 { color: var(--color-gray-600); }
.text-gray-700 { color: var(--color-gray-700); }
.text-gray-900 { color: var(--color-gray-900); }
.text-blue-600 { color: var(--color-blue-600); }
.text-blue-700 { color: var(--color-blue-700); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== CARD (generic) ===== */
.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-gray-200);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.card-icon.blue {
    background: linear-gradient(135deg, var(--color-blue-600), var(--color-cyan-600));
}

.card-icon.green {
    background: linear-gradient(135deg, var(--color-green-500), var(--color-emerald-500));
}

.card-icon.purple {
    background: linear-gradient(135deg, var(--color-purple-500), #6366f1);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--color-gray-700);
    line-height: 1.7;
}

/* Contact Card */
.contact-card-item {
    display: block;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-gray-200);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.contact-card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
