/* ============================================
   QUICKNESS â€” RediseÃ±o Pro SaaS (FAQ + Pricing Modelo 3)
   Palette: Indigo Purple (#6366F1) + Dark Emphasis (#0F172A)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Primary Colors */
    --primary: #6366F1;
    --primary-hover: #4F46E5;
    --primary-light: rgba(99, 102, 241, 0.1);
    
    /* Accents */
    --accent: #A3FF4B; /* Lime Green from Pricing Model 3 */
    --accent-dark: #1A1D26; /* Dark background from Pricing Model 3 */
    
    /* Neutral Palette */
    --white: #FFFFFF;
    --light-bg: #F9FAFB;
    --text-main: #111827;
    --text-sub: #4B5563;
    --text-muted: #9CA3AF;
    --border: #E5E7EB;
    
    /* Surface / Cards */
    --card-bg: #FFFFFF;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    
    /* Sizes */
    --radius: 12px;
    --radius-lg: 16px;
    --container: 1100px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
button { font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ==========================================
   NAVBAR (Professional Clean)
   ========================================== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.navbar-brand {
    display: flex; align-items: center; gap: 8px;
    font-weight: 800; font-size: 1.35rem; color: var(--text-main);
    letter-spacing: -0.02em;
}

.brand-icon {
    width: 32px; height: 32px;
    background: var(--primary); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
}

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }

.nav-links a {
    color: var(--text-sub); font-size: 0.9rem; font-weight: 500;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: transparent;
}

.nav-toggle:hover {
    background: rgba(0,0,0,0.02);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-main);
    border-radius: 4px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   BUTTONS (SaaS Rounded)
   ========================================== */
.btn-primary {
    background: var(--primary); color: #fff;
    padding: 12px 24px; border-radius: 8px;
    font-weight: 600; font-size: 0.92rem;
    border: none; cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}

.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); color: #fff; }

.btn-secondary {
    background: #fff; color: var(--text-main);
    padding: 12px 24px; border-radius: 8px;
    font-weight: 600; font-size: 0.92rem;
    border: 1px solid var(--border);
    cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-secondary:hover { border-color: var(--text-main); background: var(--light-bg); transform: translateY(-1px); }

.btn-dark {
    background: var(--accent-dark); color: #fff;
    padding: 12px 24px; border-radius: 8px;
    font-weight: 600; font-size: 0.92rem;
    border: none; cursor: pointer; transition: var(--transition);
}

.btn-dark:hover { opacity: 0.9; transform: translateY(-1px); }

/* ==========================================
   SECTIONS
   ========================================== */
.section { padding: 90px 0; position: relative; }
.section-alt { background: var(--light-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-header { text-align: center; margin-bottom: 56px; max-width: 700px; margin-left: auto; margin-right: auto; }

.section-label {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    color: var(--primary); text-transform: uppercase;
    letter-spacing: 0.05em; margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem; font-weight: 800;
    color: var(--text-main); margin-bottom: 16px;
    letter-spacing: -0.03em; line-height: 1.1;
}

.section-subtitle { font-size: 1.1rem; color: var(--text-sub); line-height: 1.6; }

/* ==========================================
   HERO (Professional Clean)
   ========================================== */
.hero {
    padding-top: 160px; padding-bottom: 100px;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
}

.hero-content { max-width: 800px; margin: 0 auto; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary-light); color: var(--primary);
    padding: 6px 12px; border-radius: 20px;
    font-size: 0.78rem; font-weight: 600; margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem; font-weight: 800;
    line-height: 1; letter-spacing: -0.04em;
    margin-bottom: 24px; color: var(--text-main);
}

.hero h1 span { color: var(--primary); }

.hero-description {
    font-size: 1.2rem; color: var(--text-sub);
    margin-bottom: 40px; line-height: 1.6; max-width: 600px; margin-left: auto; margin-right: auto;
}

.hero-buttons { display: flex; gap: 12px; justify-content: center; }

/* ==========================================
   CARDS & GRIDS
   ========================================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px;
    transition: var(--transition);
}

.feature-card:hover { border-color: var(--primary); box-shadow: var(--card-shadow-hover); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.feature-icon {
    width: 44px; height: 44px; background: var(--primary-light);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.2rem; margin-bottom: 20px;
}

.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.feature-card p { font-size: 0.92rem; color: var(--text-sub); line-height: 1.6; }

/* ==========================================
   PRICING (Modelo 3 Inspired)
   ========================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.vps-grid { grid-template-columns: repeat(4, 1fr); }

.pricing-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px 32px;
    display: flex; flex-direction: column; transition: var(--transition);
}

/* Premium Card (Business) */
.pricing-card.premium {
    background: var(--accent-dark); color: #fff;
    border-color: var(--accent-dark); transform: scale(1.02);
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.pricing-card.premium .section-title, 
.pricing-card.premium h3,
.pricing-card.premium .price,
.pricing-card.premium p { color: #fff; }

.pricing-card.premium .feature-list li { border-color: rgba(255,255,255,0.1); }

.popular-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--accent); color: var(--accent-dark);
    font-size: 0.7rem; font-weight: 800; padding: 4px 10px; border-radius: 20px;
    text-transform: uppercase;
}

.pricing-tier { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }

.price { font-size: 2.75rem; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.04em; }
.price span { font-size: 0.92rem; font-weight: 500; color: var(--text-muted); }

.pricing-desc { font-size: 0.88rem; color: var(--text-sub); margin-bottom: 32px; height: 40px; }

.feature-list { list-style: none; margin-bottom: 32px; flex-grow: 1; }
.feature-list li {
    padding: 10px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem;
}

/* Checkmarks */
.check {
    display: flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    border: 1.5px solid var(--primary);
    color: var(--primary); background: transparent;
    font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
}
.check-white { border-color: rgba(255,255,255,0.6); color: #fff; }

.pricing-card:not(.premium) .check { background: var(--primary-light); color: var(--primary); }

/* ==========================================
   FAQ ACCORDION (FAQ.png Inspired)
   ========================================== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden; transition: var(--transition);
}

.faq-item:hover { border-color: var(--primary); }

.faq-item.active { border-color: var(--primary); box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08); }

.faq-question {
    padding: 20px 24px; display: flex; justify-content: space-between;
    align-items: center; cursor: pointer; font-weight: 600;
    font-size: 1rem; color: var(--text-main); transition: var(--transition);
}

.faq-item.active .faq-question { color: var(--primary); }

.faq-toggle {
    font-size: 1.2rem; color: var(--text-muted);
    transition: var(--transition); font-family: monospace;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); color: var(--primary); }

.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
    background: var(--light-bg);
}

.faq-answer-inner {
    padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-sub);
    line-height: 1.6;
}

/* Payment Cards (FAQ Page) */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.payment-card {
    background: var(--white); border: 1px solid var(--border);
    padding: 24px; border-radius: 12px; text-align: center;
    transition: var(--transition);
}

.payment-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.payment-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; color: var(--text-sub); }
.payment-card .payment-method { font-size: 1.1rem; font-weight: 800; color: var(--primary); }

/* ==========================================
   ASYMMETRIC & INTUITE LAYOUT UTILS
   ========================================== */
.pricing-switcher {
    display: flex; background: var(--border);
    padding: 4px; border-radius: 30px;
    width: fit-content; margin: 0 auto 40px;
}

.switch-btn {
    padding: 8px 20px; border-radius: 26px; border: none;
    font-size: 0.85rem; font-weight: 700; cursor: pointer;
    background: transparent; color: var(--text-sub);
    transition: var(--transition);
}

.switch-btn.active { background: var(--white); color: var(--text-main); box-shadow: 0 2px 4px rgba(0,0,0,0.05); }

/* Asymmetric Grid */
.asymmetric-grid {
    display: grid; grid-template-columns: 1fr 1.2fr 1fr;
    gap: 32px; align-items: start;
}

.stagger-down { transform: translateY(40px); }
.stagger-up { transform: translateY(-20px); }

/* Comparison Table (Model 2 style) */
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 60px; font-size: 0.9rem; }
.comparison-table th { padding: 24px 16px; text-align: center; font-weight: 800; border-bottom: 2px solid var(--border); }
.comparison-table td { padding: 18px 16px; text-align: center; border-bottom: 1px solid var(--border); color: var(--text-sub); }
.comparison-table tr:hover { background: var(--light-bg); }
.comparison-table .feature-name { text-align: left; font-weight: 600; color: var(--text-main); }

.check-mini { color: #10B981; font-weight: 800; }
.cross-mini { color: var(--text-muted); opacity: 0.5; }

/* Pricing Card Header (Model 2 style) */
.card-header-icon {
    position: absolute; top: 32px; right: 32px;
    font-size: 1.5rem; color: var(--text-main);
}
.pricing-card.premium .card-header-icon { color: var(--accent); }

/* ==========================================
   PRICING.PNG STYLE COMPONENTS
   ========================================== */
.pricing-container-hybrid {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 24px; align-items: start;
}

.horizontal-card {
    display: flex; 
    background: var(--white);
    border: 1px solid var(--border); 
    border-radius: var(--radius-lg);
    padding: 0; 
    margin-bottom: 32px;
    transition: var(--transition);
    overflow: hidden;
}

.horizontal-card:hover { 
    border-color: var(--primary); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.06); 
    transform: translateY(-4px);
}

.horizontal-card .card-left { 
    flex: 0 0 260px; 
    padding: 40px; 
    background: var(--light-bg);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.horizontal-card .card-right { 
    flex: 1; 
    padding: 40px 48px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Plan Labels */
.plan-label { 
    padding: 6px 16px; 
    border-radius: 50px;
    font-size: 0.75rem; 
    font-weight: 800; 
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 20px;
    background: #E5E7EB;
    color: #4B5563;
}

.plan-label.highlight {
    background: var(--primary-light);
    color: var(--primary);
}

.plan-label.dark {
    background: #111827;
    color: #fff;
}

/* Price Tag */
.price-tag { 
    font-size: 3.5rem; 
    font-weight: 900; 
    color: var(--text-main); 
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.price-tag span { 
    font-size: 1rem; 
    color: var(--text-muted); 
    font-weight: 600; 
}

/* Feature List (2 columns on cards) */
.feature-grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-grid-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-sub);
    font-weight: 500;
}

/* Responsive Cards */
@media (max-width: 992px) {
    .horizontal-card {
        flex-direction: column;
    }
    .horizontal-card .card-left {
        flex: 0 0 auto;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 32px;
    }
    .horizontal-card .card-right {
        padding: 32px;
    }
}

@media (max-width: 600px) {
    .feature-grid-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.featured-side-block {
    background: var(--primary); 
    color: #fff;
    border-radius: 20px; 
    padding: 48px 40px;
    position: sticky; 
    top: 120px;
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.4);
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.featured-side-block h3 { color: #fff; font-size: 1.8rem; margin-bottom: 16px; font-weight: 800; }
.featured-side-block .price { font-size: 3.5rem; font-weight: 900; margin: 24px 0; color: #fff; line-height: 1; }
.featured-side-block .price span { font-size: 1.1rem; opacity: 0.7; font-weight: 500; }

.featured-side-block .btn-white {
    background: #fff; 
    color: var(--primary);
    width: 100%; 
    justify-content: center; 
    margin-top: 32px;
    height: 56px; 
    font-weight: 800; 
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.featured-side-block .feature-list { list-style: none; margin-bottom: 0; }
.featured-side-block .feature-list li { margin-bottom: 14px; border: none; display: flex; align-items: start; gap: 12px; }
.featured-side-block .feature-list li i { margin-top: 4px; color: var(--accent); }

.feature-grid-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-sub);
    font-weight: 500;
}

/* Responsive Cards */
@media (max-width: 992px) {
    .horizontal-card {
        flex-direction: column;
    }
    .horizontal-card .card-left {
        flex: 0 0 auto;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 32px;
    }
    .horizontal-card .card-right {
        padding: 32px;
    }
}

@media (max-width: 600px) {
    .feature-grid-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ==========================================
   PROFESSIONAL BUSINESS GALLERY (SaaS look)
   ========================================== */
.gallery-pro-container { margin-top: 60px; }

/* Gallery Switcher */
.gallery-switcher-wrapper { display: flex; justify-content: center; margin-bottom: 50px; }
.gallery-switcher {
    display: flex; background: var(--light-bg); padding: 5px; border-radius: 40px; border: 1px solid var(--border);
}
.gallery-switch-btn {
    padding: 10px 30px; border-radius: 35px; border: none; background: transparent;
    color: var(--text-sub); font-size: 0.82rem; font-weight: 700; cursor: pointer;
    transition: var(--transition);
}
.gallery-switch-btn.active { background: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2); }

.gallery-grid-pro {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-card-pro {
    position: relative; border-radius: 24px; overflow: hidden;
    background: #fff; border: 1px solid var(--border);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.gallery-card-pro:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.gallery-card-pro img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-card-pro:hover img { transform: scale(1.08); }

.gallery-overlay-pro {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 17, 23, 0.9), transparent 70%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 30px; opacity: 0; transition: opacity 0.4s ease;
}

.gallery-card-pro:hover .gallery-overlay-pro { opacity: 1; }

.gallery-overlay-pro h4 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; font-weight: 800; }
.gallery-overlay-pro p { color: rgba(255,255,255,0.6); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* Responsive Gallery */
@media (max-width: 992px) { .gallery-grid-pro { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid-pro { grid-template-columns: 1fr; } }
.fade-in { animation: fadeIn 0.8s ease-out forwards; opacity: 0; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================
   MODERN FAQ (Asymmetric Layout)
   ========================================== */
.faq-modern-section { background: var(--light-bg); overflow: hidden; }

.faq-modern-header { text-align: center; margin-bottom: 50px; }
.faq-modern-label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-sub); display: block; margin-bottom: 12px; }
.faq-modern-title { font-size: 3rem; line-height: 1.1; letter-spacing: -0.03em; color: var(--text-main); font-weight: 800; font-family: serif; }
.faq-modern-title i { font-style: italic; font-weight: normal; font-family: 'Playfair Display', Georgia, serif; }
@media(min-width: 768px){ .faq-modern-title { font-size: 3.5rem; } }

.faq-modern-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; max-width: 1100px; margin: 0 auto; }

/* Left Card (Questions) */
.faq-modern-left { background: #fff; border-radius: 24px; padding: 32px; box-shadow: 0 20px 40px rgba(0,0,0,0.04); }

/* Contact Box */
.faq-contact-box { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.faq-contact-info { display: flex; flex-direction: column; }
.faq-contact-label { font-size: 0.75rem; color: var(--text-sub); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; }
.faq-contact-email { font-size: 1.05rem; font-weight: 700; color: var(--text-main); text-decoration: none; }
.btn-dark-modern {
    background: #1c1c1c; color: #fff; padding: 12px 24px; border-radius: 12px;
    font-size: 0.9rem; font-weight: 700; display: inline-flex; align-items: center;
    transition: var(--transition); text-decoration: none; box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-dark-modern:hover { background: #000; transform: translateY(-2px); color: #fff; }

/* Overriding Old FAQ Styles for the Modern Look */
.faq-modern-list { display: flex; flex-direction: column; gap: 12px; }
.faq-modern-list .faq-item { background: #f8f9fa; border-radius: 12px; border: none; overflow: hidden; margin-bottom: 0px; box-shadow: none; padding: 0; }
.faq-q-modern { padding: 18px 20px; font-weight: 600; font-size: 0.95rem; color: var(--text-main); display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.2s; }
.faq-q-modern:hover { background: #f1f3f5; }
.faq-q-modern.active { background: #f1f3f5; }

.faq-toggle-modern { 
    background: #1c1c1c; color: #fff; width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease; flex-shrink: 0; line-height: 1; padding-bottom: 2px;
}
.faq-question.active .faq-toggle-modern { transform: rotate(45deg); background: var(--primary); }
.faq-a-inner-modern { padding: 0 20px 20px; font-size: 0.9rem; color: var(--text-sub); line-height: 1.6; }

/* Right Image */
.faq-modern-right { position: relative; border-radius: 24px; overflow: hidden; height: 100%; min-height: 500px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.faq-image-wrapper { width: 100%; height: 100%; position: absolute; inset: 0; }
.faq-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.faq-image-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; }

@media (max-width: 900px) {
    .faq-modern-grid { grid-template-columns: 1fr; }
    .faq-modern-right { min-height: 350px; grid-row: 1; }
}
@media (max-width: 500px) {
    .faq-contact-box { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ==========================================
   METODOS DE PAGO (Modern Bento Layout)
   ========================================== */
.payment-grid-modern { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; max-width: 1000px; margin: 40px auto 0; }
.payment-card-modern { 
    background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 20px; 
    padding: 30px 24px; width: 260px; text-align: center;
    transition: var(--transition); box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.payment-card-modern:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }

.payment-icon-wrapper { 
    width: 65px; height: 65px; border-radius: 18px; margin: 0 auto 24px; 
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.payment-icon-wrapper.blue { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
.payment-icon-wrapper.purple { background: rgba(168, 85, 247, 0.1); color: #A855F7; }
.payment-icon-wrapper.orange { background: rgba(249, 115, 22, 0.1); color: #F97316; }
.payment-icon-wrapper.green { background: rgba(34, 197, 94, 0.1); color: #22C55E; }
.payment-icon-wrapper.red { background: rgba(239, 68, 68, 0.1); color: #EF4444; }

.payment-card-modern h4 { font-size: 1.15rem; color: var(--text-main); font-weight: 800; margin-bottom: 20px; font-family: 'Playfair Display', serif; letter-spacing: -0.01em; }

.pay-badge { 
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 18px; width: 100%;
    border-radius: 50px; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em;
}
.pay-badge i { font-size: 1rem; }
.pay-badge.paypal { background: #E0F2FE; color: #0284C7; border: 1px solid #BAE6FD; }
.pay-badge.western { background: #F3F4F6; color: #111; border: 1px solid #E5E7EB; }

/* ==========================================
   FOOTER MODERN
   ========================================== */
.footer-modern { background: #0B1120; color: #94A3B8; padding: 80px 0 20px; font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-modern-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-col-brand p { line-height: 1.7; font-size: 0.9rem; margin-top: 20px; color: #94a3b8; padding-right: 20px; }
.footer-brand-logo { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: 0.05em; display: flex; align-items: center; gap: 10px; }
.footer-brand-logo i { color: #A3FF4B; font-size: 1.6rem; }
.footer-brand-logo span { font-weight: 300; }
.footer-col-links h4 { color: #F8FAFC; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 24px; text-transform: uppercase; }
.footer-col-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-col-links ul li a { color: #94a3b8; text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.footer-col-links ul li a:hover { color: #fff; padding-left: 4px; }
.mt-contact { margin-top: 36px !important; }

.footer-modern-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.8rem; color: #64748B; }

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .container { max-width: 100%; }
    .hero h1 { font-size: 3rem; }
    .features-grid, .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
    .vps-grid { grid-template-columns: 1fr 1fr; }
    .pricing-card.premium { transform: none; }
    .asymmetric-grid { grid-template-columns: 1fr; }
    .stagger-up, .stagger-down { transform: none; }
    .pricing-container-hybrid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .vps-grid { grid-template-columns: 1fr; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 20px;
        z-index: 999;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li { width: 100%; }
    .nav-links a { font-size: 1.1rem; display: block; padding: 10px 0; border-bottom: 1px solid var(--border); }
    .nav-cta { text-align: center; margin-top: 20px; }

    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    
    .footer-modern-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 500px) {
    .navbar-brand { font-size: 1.1rem; }
    .footer-modern-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-col-brand p { padding-right: 0; }
    .price { font-size: 2.2rem; }
}

/* ==========================================
   UTILITIES
   ========================================== */
.text-left { text-align: left !important; margin-left: 0 !important; }

/* ==========================================
   SPLIT GRID (Responsive 2-col)
   ========================================== */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 968px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .text-left { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
}

/* ==========================================
   STEP CARDS (How it works)
   ========================================== */
.feature-list-modern {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.step-card.active {
    border-color: var(--primary);
    background: var(--light-bg);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.05);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.step-card.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.step-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.step-card p {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.6;
}

/* ==========================================
   HOW IT WORKS VISUAL
   ========================================== */
.how-it-works-visual {
    position: relative;
    padding: 20px;
}

.visual-inner {
    position: relative;
    background: var(--primary);
    border-radius: 24px;
    padding: 24px;
    transform: rotate(2deg);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
}

.visual-inner img {
    width: 100%;
    border-radius: 16px;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    color: var(--text-main);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.floating-badge i {
    color: #10B981;
}

@media (max-width: 968px) {
    .visual-inner {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==========================================
   MU-ONLINE SPECIFIC CLASSES
   ========================================== */
.mu-online-section { padding-top: 140px; background: #fff; }
.mu-online-header { max-width: 800px; margin-left: auto; margin-right: auto; margin-bottom: 60px; }
.mu-online-title { font-size: 3rem; font-weight: 900; color: #000; }
.mu-online-subtitle { font-size: 1.1rem; color: #666; }

.pricing-hybrid { margin-bottom: 40px; }
.horizontal-card .btn-primary { margin-top: 12px; width: 100%; justify-content: center; border-radius: 8px; }

.card-trimestral { animation-delay: 0.1s; border-color: var(--primary); }
.card-lifetime { animation-delay: 0.2s; border-width: 2px; border-color: var(--primary); box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1); }

.lifetime-note { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.horizontal-card .btn-dark-lifetime { width: 100%; justify-content: center; height: 52px; border-radius: 8px; }
.lifetime-bonus { margin-top: 24px; text-align: center; font-size: 0.9rem; color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }

.pack-completo-wrap { display: flex; justify-content: center; margin-top: 80px; }
.pack-completo-block { max-width: 450px; position: static; }
.pack-completo-icon { font-size: 2.5rem; margin-bottom: 16px; }
.pack-completo-desc { opacity: 0.8; font-size: 0.95rem; margin-bottom: 24px; }
.feature-list li i.accent-icon { color: var(--accent); }
.pack-completo-payment { margin-top: 24px; text-align: center; font-size: 0.8rem; opacity: 0.7; font-weight: 600; color: #fff; }

.config-maestras-wrap { margin-top: 100px; }
.config-maestras-header { text-align: center; margin-bottom: 40px; }
.config-maestras-title { font-size: 2.2rem; font-weight: 900; color: #000; }
.config-maestras-subtitle { color: #666; }

.config-card-intermedia { animation-delay: 0.1s; border-color: var(--primary); }
.config-card-avanzada { animation-delay: 0.2s; }
.config-tier-title { font-weight: 800; margin-bottom: 8px; }
.config-price { font-size: 2.5rem; margin-bottom: 24px; color: #000; font-weight: 900; }

.feature-list-sm { font-size: 0.85rem; padding: 0; margin: 0; list-style: none; }
.feature-list-sm li { padding: 12px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; }
.feature-list-sm li:last-child { border-bottom: none; }
.feature-list-sm li i { color: #000 !important; margin-right: 12px; }

.config-payment-methods { margin-top: 40px; text-align: left; color: var(--text-sub); font-size: 0.9rem; }

.gallery-card-pro[data-cat="custom"] { display: none; }
