:root {
    --primary: #FF5A1F;
    --primary-light: #FF8A65;
    --primary-dark: #D84315;
    --secondary: #1E40AF;
    --dark-blue: #0A1B33;
    --dark: #111827;
    --text-main: #1F2937;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-white: #ffffff;
    --success: #10B981;
    --warning: #F59E0B;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --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);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-main); 
    background: var(--bg-light); 
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { 
    font-family: 'Poppins', sans-serif; 
    line-height: 1.2;
    font-weight: 700;
}

.container { 
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

.text-center { text-align: center; }
.hidden { display: none !important; }

/* Announcement Bar mejorada */
.announcement-bar { 
    background: linear-gradient(90deg, var(--dark-blue) 0%, #1E3A8A 100%); 
    color: white; 
    padding: 12px 0; 
    font-size: 0.9rem;
    position: relative;
}

.announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.badge-pulse { 
    background: linear-gradient(90deg, var(--primary), #FF8A00);
    padding: 4px 12px; 
    border-radius: 20px; 
    font-weight: 700; 
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.announcement-bar p {
    margin: 0;
    font-size: 0.95rem;
}

.close-announcement {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 8px;
    position: absolute;
    right: 24px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.close-announcement:hover {
    opacity: 1;
}

/* Navbar mejorada */
.navbar { 
    background: var(--bg-white); 
    padding: 20px 0; 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo { 
    font-size: 1.8rem; 
    font-weight: 900; 
    color: var(--dark-blue); 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    text-decoration: none;
}

.logo:hover {
    opacity: 0.9;
}

.logo-icon { 
    color: var(--primary); 
    font-size: 1.8rem;
}

.highlight { 
    color: var(--primary); 
}

.nav-links { 
    display: flex; 
    gap: 32px;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
}

.nav-link { 
    text-decoration: none; 
    color: var(--text-main); 
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.btn-outline { 
    border: 2px solid var(--dark-blue); 
    padding: 10px 24px; 
    border-radius: 50px; 
    text-decoration: none; 
    color: var(--dark-blue); 
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover { 
    background: var(--dark-blue); 
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.menu-toggle:hover {
    background: var(--bg-light);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid #eee;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-main);
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Hero Section mejorada */
.hero-section { 
    padding: 80px 0 100px; 
    position: relative; 
    overflow: hidden; 
}

.bg-shape { 
    position: absolute; 
    top: -200px; 
    right: -200px; 
    width: 800px; 
    height: 800px; 
    background: radial-gradient(circle, rgba(255,90,31,0.08) 0%, transparent 70%); 
    z-index: -1; 
}

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

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--warning);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 500;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-lg);
}

.display-title { 
    font-size: 3.5rem; 
    line-height: 1.1; 
    margin: 20px 0 24px; 
    color: var(--dark-blue); 
}

@media (max-width: 768px) {
    .display-title {
        font-size: 2.5rem;
    }
}

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

.lead-text { 
    font-size: 1.25rem; 
    color: var(--text-main); 
    margin-bottom: 32px; 
    line-height: 1.7;
}

.highlight-text {
    color: var(--primary);
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.benefits-list i {
    color: var(--success);
    font-size: 1.2rem;
}

.trust-logos {
    display: flex;
    gap: 16px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.logo-item {
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

/* Bonus Card */
.bonus-card {
    background: linear-gradient(135deg, rgba(255,90,31,0.1), rgba(30, 64, 175, 0.1));
    border: 2px solid var(--primary);
    padding: 24px;
    border-radius: var(--radius-xl);
    margin-top: 32px;
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.bonus-icon {
    font-size: 2.5rem;
}

.bonus-header small {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.bonus-header h4 {
    font-size: 1.3rem;
    margin-top: 4px;
}

.bonus-value {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 2px dashed rgba(255,90,31,0.3);
}

.old-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1rem;
}

.current-price {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

/* Form Card optimizada */
.hero-form-wrapper {
    position: sticky;
    top: 120px;
}

.premium-form-card { 
    background: white; 
    padding: 40px; 
    border-radius: var(--radius-2xl); 
    box-shadow: var(--shadow-2xl); 
    border-top: 8px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.premium-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-header h3 { 
    font-size: 1.8rem; 
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1rem;
}

.pricing-display {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.original-price {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.original-price del {
    font-weight: 600;
}

.discounted-price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 8px;
}

.discounted-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
}

.discount-badge {
    background: var(--success);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.payment-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Form inputs */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.input-group label i {
    color: var(--primary);
}

.input-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: var(--bg-light);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(255,90,31,0.1);
}

.input-group input::placeholder {
    color: var(--text-lighter);
}

.terms-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.terms-group input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--primary);
}

.terms-group a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.terms-group a:hover {
    text-decoration: underline;
}

/* CTA Button */
.cta-button {
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 20px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

.cta-button i {
    font-size: 1.3rem;
}

.cta-button small {
    font-weight: 400;
    font-size: 0.85rem;
    opacity: 0.9;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.security-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 500;
}

.payment-methods {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 24px;
}

.payment-methods p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 1.8rem;
}

/* Success Card */
.success-card { 
    text-align: center; 
    background: white; 
    padding: 40px; 
    border-radius: var(--radius-2xl); 
    box-shadow: var(--shadow-2xl);
    border: 2px solid var(--success);
}

.success-card i { 
    font-size: 4rem; 
    color: var(--success);
    margin-bottom: 20px;
}

.success-card h3 { 
    font-size: 1.8rem; 
    margin-bottom: 16px;
    color: var(--success);
}

.success-card p {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.success-tip {
    background: rgba(16, 185, 129, 0.1);
    padding: 16px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.success-tip i {
    font-size: 1.2rem;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 60px;
}

.overline {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--dark-blue);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-light);
}

.testimonial-header h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.testimonial-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .stars {
    color: var(--warning);
    font-size: 1.1rem;
}

/* Roadmap mejorado */
.study-plan { 
    padding: 100px 0;
    background: white;
}

.roadmap-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    margin-top: 60px;
}

.phase-card { 
    background: var(--bg-light); 
    padding: 32px; 
    border-radius: var(--radius-xl); 
    position: relative; 
    border: 2px solid transparent;
    transition: all 0.3s;
    height: 100%;
}

.phase-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.phase-number { 
    font-size: 3rem; 
    font-weight: 900; 
    color: rgba(255,90,31,0.15); 
    line-height: 1;
}

.phase-duration {
    background: rgba(30, 64, 175, 0.1);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.phase-card h4 { 
    font-size: 1.4rem; 
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phase-card h4 i {
    color: var(--primary);
}

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

.module-list li { 
    font-size: 0.95rem; 
    color: var(--text-main); 
    margin-bottom: 12px; 
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.module-list li strong {
    color: var(--dark);
}

.module-list li::before { 
    content: "✓"; 
    color: var(--success); 
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.featured-phase { 
    background: linear-gradient(135deg, var(--dark-blue), #1E3A8A); 
    color: white; 
    border: none;
}

.featured-phase h4,
.featured-phase .phase-number,
.featured-phase .module-list li {
    color: white;
}

.featured-phase .phase-number {
    color: rgba(255,255,255,0.2);
}

.featured-phase .phase-duration {
    background: rgba(255,255,255,0.2);
    color: white;
}

.cta-section {
    margin-top: 60px;
    text-align: center;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-note {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* VIP Section mejorada */
.vip-benefits { 
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.vip-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path fill="%23ffffff10" d="M0,0 L1000,0 L1000,1000 L0,1000 Z"></path></svg>');
    opacity: 0.1;
}

.vip-benefits .section-header {
    position: relative;
    z-index: 1;
}

.vip-benefits h2 {
    color: white;
}

.vip-wrapper { 
    background: rgba(255,255,255,0.95); 
    padding: 60px; 
    border-radius: var(--radius-2xl); 
    box-shadow: var(--shadow-2xl);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.vip-content h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 12px;
}

.vip-content h3 i {
    color: var(--warning);
}

.vip-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 24px;
}

.vip-item { 
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.vip-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.vip-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vip-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.vip-text p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-card {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--primary);
}

.pricing-header {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 32px;
    text-align: center;
    position: relative;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--warning);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-content {
    padding: 40px;
}

.price-display {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #eee;
}

.old-price {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.old-price del {
    font-weight: 600;
}

.current-price {
    margin-bottom: 12px;
}

.current-price .amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.current-price .discount {
    background: var(--success);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 16px;
    vertical-align: middle;
}

.payment-type {
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    font-size: 1.2rem;
}

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

.security-note {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.faq-question {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 24px;
    color: var(--text-light);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer mejorado */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 80px 0 30px;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand .logo {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.link-group a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .announcement-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .close-announcement {
        position: static;
        margin-top: 8px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .display-title {
        font-size: 2.2rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .pricing-display {
        padding: 16px;
    }
    
    .discounted-price .price {
        font-size: 2.5rem;
    }
    
    .premium-form-card {
        padding: 30px 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .vip-wrapper {
        padding: 30px 20px;
    }
    
    .pricing-header h3 {
        font-size: 1.6rem;
    }
    
    .current-price .amount {
        font-size: 3rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .display-title {
        font-size: 1.8rem;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .trust-logos {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .vip-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}