/* ==================== VARIABLES Y RESET ==================== */
:root {
    --primary: #0891b2;
    --primary-dark: #0e7490;
    --primary-light: #22d3ee;
    --accent: #6366f1;
    --accent-light: #818cf8;
    --teal: #14b8a6;
    --teal-light: #5eead4;
    --cream: #f8fafc;
    --cream-dark: #e2e8f0;
    --blue-soft: #eff6ff;
    --purple-soft: #f5f3ff;
    --text: #0f172a;
    --text-light: #475569;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gradient-primary: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    --gradient-accent: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    --gradient-teal: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 40px rgba(8, 145, 178, 0.12);
    --shadow-card-hover: 0 20px 60px rgba(8, 145, 178, 0.18);
    --shadow-button: 0 8px 30px rgba(99, 102, 241, 0.35);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 50px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ==================== COMPONENTES ==================== */
.section-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--purple-soft); color: var(--accent); padding: 8px 20px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.85rem; margin-bottom: 16px; }
.section-badge.white { background: rgba(255, 255, 255, 0.15); color: white; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4); } 50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.6); } }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4); z-index: 1000; transition: all 0.3s ease; animation: pulse 2s infinite; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

.btn { display: inline-flex; align-items: center; gap: 12px; padding: 18px 32px; border-radius: var(--radius-full); font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.4s ease; border: none; cursor: pointer; font-family: inherit; }
.btn-primary { background: var(--gradient-accent); color: white; box-shadow: var(--shadow-button); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5); }
.btn-secondary { background: rgba(255, 255, 255, 0.1); color: white; border: 1px solid rgba(255, 255, 255, 0.2); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.15); }
.btn-white { background: white; color: var(--accent); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); }
.btn-white:hover { transform: translateY(-4px) scale(1.02); }
.btn-teal { background: var(--gradient-primary); color: white; }
.btn-teal:hover { box-shadow: 0 8px 30px rgba(8, 145, 178, 0.4); transform: translateY(-2px); }
.btn-ghost { background: var(--cream); color: var(--text); }
.btn-ghost:hover { background: var(--cream-dark); }

.float-card { position: absolute; background: white; border-radius: 16px; padding: 16px 20px; box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15); animation: float 4s ease-in-out infinite; z-index: 20; }
.card-gradient { border-radius: var(--radius-2xl); padding: 50px; color: white; position: relative; overflow: hidden; }
.card-gradient::before { content: ''; position: absolute; top: -50%; right: -30%; width: 300px; height: 300px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; }

.icon-box { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.icon-box-lg { width: 70px; height: 70px; border-radius: 20px; font-size: 2rem; }
.icon-box.cyan { background: linear-gradient(135deg, rgba(8, 145, 178, 0.15) 0%, rgba(34, 211, 238, 0.15) 100%); }
.icon-box.purple { background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(129, 140, 248, 0.15) 100%); }
.icon-box.teal { background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(94, 234, 212, 0.15) 100%); }
.icon-box.white { background: white; box-shadow: var(--shadow-sm); }
.icon-box.gradient-teal { background: var(--gradient-teal); }
.icon-box.gradient-accent { background: var(--gradient-accent); color: white; }
.icon-box.gradient-primary { background: var(--gradient-primary); }
.icon-box.glass { background: rgba(255, 255, 255, 0.2); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-group label .required { color: var(--danger); }
.form-input, .form-textarea, .form-select { width: 100%; padding: 16px 20px; border: 2px solid var(--cream-dark); border-radius: var(--radius-md); font-size: 1rem; font-family: inherit; color: var(--text); transition: all 0.3s ease; background: var(--cream); }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 18px; background: var(--gradient-accent); color: white; border: none; border-radius: var(--radius-md); font-size: 1.05rem; font-weight: 700; font-family: inherit; cursor: pointer; transition: all 0.4s ease; box-shadow: var(--shadow-button); margin-top: 8px; }
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-success { display: none; text-align: center; padding: 40px; }
.form-success.show { display: block; }
.form-success .emoji { font-size: 4rem; margin-bottom: 20px; }
.form-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.form-success p { font-size: 1rem; color: var(--text-light); margin-bottom: 24px; }
.form-success .whatsapp-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 16px 28px; border-radius: var(--radius-full); font-weight: 700; text-decoration: none; transition: all 0.3s ease; }
.form-success .whatsapp-btn:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
.form-hidden { display: none; }
.check-list { list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; font-size: 0.95rem; color: var(--text-light); border-bottom: 1px solid var(--cream); }
.check-list li:last-child { border-bottom: none; }
.check-list .check { color: var(--success); font-weight: 700; }

/* ==================== HERO ==================== */
.hero { min-height: 100vh; background: var(--gradient-hero); position: relative; overflow: hidden; padding: 80px 0 100px; }
.hero::before { content: ''; position: absolute; top: -50%; left: -20%; width: 80%; height: 150%; background: radial-gradient(ellipse, rgba(8, 145, 178, 0.15) 0%, transparent 60%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -30%; right: -10%; width: 60%; height: 100%; background: radial-gradient(ellipse, rgba(99, 102, 241, 0.1) 0%, transparent 60%); pointer-events: none; }
.hero-pattern { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%230891b2' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; min-height: calc(100vh - 180px); position: relative; z-index: 10; }
.hero-content h1 { font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 800; color: white; line-height: 1.2; margin-bottom: 20px; }
.hero-content h1 .gradient-text { background: linear-gradient(135deg, var(--primary-light) 0%, var(--teal-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 16px; line-height: 1.7; max-width: 520px; }
.hero-promise { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: rgba(255, 255, 255, 0.08); border-radius: 12px; border-left: 4px solid var(--primary-light); margin-bottom: 32px; }
.hero-promise p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.9); font-style: italic; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }
.hero-badge .icon { width: 20px; height: 20px; background: var(--gradient-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }
.hero-visual { position: relative; height: 550px; }
.hero-product-card { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; border-radius: var(--radius-2xl); padding: 32px; width: 380px; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3); z-index: 10; }
.product-image-container { position: relative; background: linear-gradient(135deg, var(--blue-soft) 0%, var(--cream) 100%); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 24px; text-align: center; }
.product-image-container img { max-width: 100%; height: auto; border-radius: 12px; }
.product-image-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, var(--cream-dark) 0%, var(--blue-soft) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.product-badge { position: absolute; top: 12px; right: 12px; background: var(--danger); color: white; padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.product-info h3 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.product-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.product-price .current { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.product-price .original { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.product-stock { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--warning); margin-bottom: 16px; }
.product-features { display: flex; flex-direction: column; gap: 8px; }
.product-feature { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-light); }
.product-feature .check { color: var(--success); font-weight: 700; }
.hf-discount { top: 10%; left: -10px; }
.hf-discount h4 { font-size: 1.8rem; font-weight: 800; color: var(--danger); line-height: 1; }
.hf-discount p { font-size: 0.7rem; color: var(--text-muted); }
.hf-shipping { bottom: 25%; right: -20px; animation-delay: 1s; }
.hf-shipping .row { display: flex; align-items: center; gap: 10px; }
.hf-shipping h5 { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.hf-shipping p { font-size: 0.7rem; color: var(--text-muted); }
.hf-rating { top: 60%; left: -30px; animation-delay: 0.5s; }
.hf-rating .stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 4px; }
.hf-rating p { font-size: 0.75rem; color: var(--text-muted); }

/* ==================== PROBLEM ==================== */
.problem-section { padding: 100px 0; background: white; position: relative; overflow: hidden; }
.problem-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%), radial-gradient(ellipse at 90% 80%, rgba(8, 145, 178, 0.05) 0%, transparent 50%); pointer-events: none; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 10; }
.problem-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 20px; line-height: 1.25; }
.problem-content h2 .highlight { color: var(--accent); }
.problem-content > p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 32px; }
.problem-list { display: flex; flex-direction: column; gap: 16px; }
.problem-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--cream); border-radius: 16px; transition: all 0.3s ease; border-left: 4px solid transparent; }
.problem-item:hover { background: white; box-shadow: var(--shadow-card); border-left-color: var(--accent); transform: translateX(8px); }
.problem-item p { font-size: 0.95rem; color: var(--text-light); }
.problem-visual { position: relative; }
.problem-card { background: var(--gradient-accent); }
.problem-card .emoji-big { font-size: 4rem; margin-bottom: 24px; }
.problem-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; }
.problem-card p { font-size: 1rem; opacity: 0.9; }
.pf-stat { bottom: -20px; right: -20px; animation-delay: 0.5s; }
.pf-stat h4 { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.pf-stat p { font-size: 0.75rem; color: var(--text-muted); }

/* ==================== SOLUTION ==================== */
.solution-section { padding: 100px 0; background: var(--gradient-primary); position: relative; overflow: hidden; }
.solution-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; }
.solution-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 10; }
.solution-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: white; margin-bottom: 16px; }
.solution-header p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); max-width: 700px; margin: 0 auto; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 10; }
.ados-card { background: white; border-radius: var(--radius-2xl); padding: 40px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2); }
.ados-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 2px solid var(--cream); }
.ados-logo { width: 70px; height: 70px; background: var(--gradient-accent); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.ados-title h3 { font-size: 1.4rem; font-weight: 800; color: var(--text); }
.ados-title p { font-size: 0.85rem; color: var(--text-muted); }
.ados-description { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.ados-areas { margin-bottom: 24px; }
.ados-areas h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.area-item { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--cream); border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500; color: var(--text); }
.area-item .dot { width: 8px; height: 8px; border-radius: 50%; }
.area-item .dot.cyan { background: var(--primary); }
.area-item .dot.purple { background: var(--accent); }
.area-item .dot.teal { background: var(--teal); }
.area-item .dot.blue { background: #3b82f6; }
.ados-modules { background: var(--blue-soft); border-radius: 16px; padding: 20px; }
.ados-modules p { font-size: 0.9rem; color: var(--text-light); display: flex; align-items: flex-start; gap: 10px; }
.ados-modules .icon { font-size: 1.2rem; flex-shrink: 0; }
.solution-content { color: white; }
.solution-content h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 24px; }
.solution-features { display: flex; flex-direction: column; gap: 16px; }
.solution-feature { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: rgba(255, 255, 255, 0.1); border-radius: 16px; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s ease; }
.solution-feature:hover { background: rgba(255, 255, 255, 0.15); transform: translateX(8px); }
.solution-feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.solution-feature p { font-size: 0.9rem; opacity: 0.8; }

/* ==================== BENEFITS ==================== */
.benefits-section { padding: 100px 0; background: white; }
.benefits-header { text-align: center; margin-bottom: 60px; }
.benefits-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.benefit-card { background: var(--cream); border-radius: var(--radius-xl); padding: 36px; text-align: center; transition: all 0.4s ease; border: 2px solid transparent; }
.benefit-card:hover { background: white; border-color: var(--primary-light); transform: translateY(-10px); box-shadow: var(--shadow-card-hover); }
.benefit-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.benefit-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ==================== PRODUCTS ==================== */
.products-section { padding: 100px 0; background: var(--cream); }
.products-header { text-align: center; margin-bottom: 60px; }
.products-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 12px; }
.products-header p { font-size: 1.05rem; color: var(--text-light); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card { background: white; border-radius: var(--radius-xl); overflow: hidden; transition: all 0.4s ease; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-card-hover); }
.product-card-image { height: 200px; background: linear-gradient(135deg, var(--blue-soft) 0%, var(--cream) 100%); display: flex; align-items: center; justify-content: center; }
.product-card-image img { max-width: 80%; max-height: 80%; object-fit: contain; }
.product-card-image .placeholder { font-size: 4rem; }
.product-card-content { padding: 24px; }
.product-card-content h4 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.product-card-content p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }
.product-card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: gap 0.3s ease; }
.product-card-link:hover { gap: 12px; }

/* ==================== PRICING ==================== */
.pricing-section { padding: 100px 0; background: linear-gradient(135deg, var(--text) 0%, #1e293b 100%); }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: white; margin-bottom: 12px; }
.pricing-header p { font-size: 1.05rem; color: rgba(255, 255, 255, 0.7); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; }
.pricing-card { background: white; border-radius: var(--radius-xl); padding: 40px; text-align: center; position: relative; transition: all 0.4s ease; }
.pricing-card:hover { transform: translateY(-10px); }
.pricing-card.popular { border: 3px solid var(--primary); }
.pricing-card.popular::before { content: '⭐ Más popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient-primary); color: white; padding: 6px 20px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.pricing-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.pricing-card .discount { display: inline-block; background: #fef2f2; color: var(--danger); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }

/* ==================== AUDIENCE ==================== */
.audience-section { padding: 100px 0; background: white; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.audience-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 16px; }
.audience-content > p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 32px; }
.audience-list { display: flex; flex-direction: column; gap: 16px; }
.audience-item { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: var(--cream); border-radius: var(--radius-md); transition: all 0.3s ease; }
.audience-item:hover { background: var(--blue-soft); transform: translateX(8px); }
.audience-item span { font-size: 1rem; font-weight: 600; color: var(--text); }
.audience-visual { position: relative; }
.audience-card { background: var(--gradient-teal); border-radius: var(--radius-2xl); padding: 50px; color: white; text-align: center; position: relative; overflow: hidden; }
.audience-card::before { content: ''; position: absolute; top: -50%; left: -30%; width: 200%; height: 200%; background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 50%); }
.audience-card .emoji { font-size: 5rem; margin-bottom: 20px; position: relative; z-index: 2; }
.audience-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; position: relative; z-index: 2; }
.audience-card p { font-size: 1rem; opacity: 0.9; position: relative; z-index: 2; }

/* ==================== FAQ ==================== */
.faq-section { padding: 100px 0; background: var(--cream); }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); }
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-question { display: flex; align-items: center; gap: 16px; padding: 24px 28px; cursor: pointer; transition: all 0.3s ease; }
.faq-question:hover { background: var(--cream); }
.faq-question h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); flex: 1; }
.faq-toggle { width: 32px; height: 32px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; flex-shrink: 0; }
.faq-toggle svg { width: 16px; height: 16px; stroke: var(--text-muted); transition: transform 0.3s ease; }
.faq-item.active .faq-toggle { background: var(--gradient-primary); }
.faq-item.active .faq-toggle svg { stroke: white; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-content { padding: 0 28px 24px; padding-left: 84px; font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ==================== CONTACT ==================== */
.contact-section { padding: 100px 0; background: white; position: relative; overflow: hidden; }
.contact-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 20% 50%, rgba(8, 145, 178, 0.05) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%); pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; position: relative; z-index: 10; }
.contact-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 16px; }
.contact-content > p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: var(--cream); border-radius: var(--radius-md); }
.contact-item-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.contact-item-text p { font-size: 0.85rem; color: var(--text-muted); }
.contact-form-card { background: white; border-radius: var(--radius-2xl); padding: 48px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); position: relative; }
.contact-form-card::before { content: ''; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px; background: var(--gradient-primary); border-radius: 35px; z-index: -1; opacity: 0.2; }
.form-header { text-align: center; margin-bottom: 32px; }
.form-header .emoji { font-size: 3rem; margin-bottom: 16px; }
.form-header h3 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.form-header p { font-size: 0.9rem; color: var(--text-muted); }

/* ==================== FINAL & FOOTER ==================== */
.final-section { padding: 100px 0; background: var(--gradient-accent); text-align: center; position: relative; overflow: hidden; }
.final-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%); pointer-events: none; }
.final-content { position: relative; z-index: 10; max-width: 700px; margin: 0 auto; }
.final-emoji { font-size: 4rem; margin-bottom: 24px; }
.final-section h2 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 700; color: white; margin-bottom: 12px; }
.final-section p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 36px; font-style: italic; }
footer { background: var(--text); padding: 50px 0; text-align: center; }
.footer-logo { font-size: 1.8rem; font-weight: 800; color: white; margin-bottom: 8px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 8px; }
.footer-description { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 24px; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary-light); }
.footer-copyright { color: rgba(255, 255, 255, 0.4); font-size: 0.8rem; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-grid, .problem-grid, .solution-grid, .audience-grid, .contact-grid { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-visual { height: 450px; order: -1; }
    .hero-product-card { width: 340px; }
    .hf-discount, .hf-rating { display: none; }
    .problem-visual, .audience-visual { max-width: 400px; margin: 0 auto; }
    .benefits-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .ados-card { max-width: 450px; margin: 0 auto; }
    .solution-content, .contact-content, .audience-content, .problem-content { text-align: left; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta-group, .hero-badges { justify-content: center; }
}
@media (max-width: 768px) {
    .hero { padding: 60px 0 80px; }
    .hero-visual { height: 380px; }
    .hero-product-card { width: 300px; padding: 24px; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hf-shipping { display: none; }
    .benefits-grid, .products-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .areas-grid, .form-row { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 16px; }
    .pf-stat { display: none; }
    .contact-form-card { padding: 36px 28px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-visual { height: 320px; }
    .hero-product-card { width: 280px; padding: 20px; }
    .btn { padding: 16px 28px; font-size: 0.95rem; }
    .benefit-card, .product-card { padding: 28px; }
    .pricing-card { padding: 32px 24px; }
    .contact-form-card { padding: 28px 20px; }
    .faq-question { padding: 20px; }
    .faq-answer-content { padding-left: 20px; }
    .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ==================== CONTACT BENEFITS (igual que embajadoras) ==================== */
.contact-benefits { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.contact-benefit { display: flex; align-items: center; gap: 12px; }
.contact-benefit .icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-benefit span { font-size: 0.95rem; color: var(--text-light); }
.highlight { color: var(--accent); }

/* Form hidden/show states */
.form-hidden { display: none !important; }
.form-success { display: none; }
.form-success.show { display: block !important; }

/* Form textarea fix */
.form-textarea { min-height: 100px; resize: vertical; }
