/* ============================================
   VARIABLES Y RESET
   ============================================ */
:root {
    --primary: #0056b3;
    --primary-dark: #003d80;
    --secondary: #00c853;
    --secondary-dark: #009624;
    --accent: #ff9800;
    --accent-dark: #f57c00;
    --dark: #1a1a1a;
    --gray-dark: #333;
    --gray: #666;
    --gray-light: #999;
    --light: #f4f7fa;
    --lighter: #f9fafb;
    --white: #ffffff;
    --danger: #dc3545;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 15px;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

a { text-decoration: none; color: var(--primary); }

img { max-width: 100%; height: auto; }

ul { list-style: none; }

/* ============================================
   BOTONES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary { background: var(--secondary); color: white; }
.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,200,83,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.btn-outline-light:hover { background: white; color: var(--primary); }

.btn-lg { padding: 15px 30px; font-size: 1.1rem; }
.btn-large { width: 100%; padding: 18px; font-size: 1.2rem; }

.center-btn { display: flex; margin: 30px auto; width: fit-content; }

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img { 
    height: 130px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-highlight { color: var(--secondary); }

/* ============================================
   NAVEGACIÓN DESKTOP (por defecto horizontal)
   ============================================ */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.nav-list {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
}

.nav-list a {
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-list a:hover,
.nav-list a.active { color: var(--primary); }

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 8px 18px;
    border-radius: var(--radius);
}

.btn-nav:hover { background: var(--primary-dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 100px 0 80px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0,200,83,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,152,0,0.1) 0%, transparent 50%);
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--secondary);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */
section { padding: 80px 0; }

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

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

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.15rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   OFERTA ESTRELLA (PÁGINA WEB)
   ============================================ */
.offer-star {
    background: linear-gradient(135deg, var(--light) 0%, #e8f0fe 100%);
    position: relative;
}

.offer-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
    text-align: center;
}

.offer-star .offer-badge,
.importers-section .offer-badge {
    display: block;
    margin: 0 auto 15px;
    width: fit-content;
}

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

.price-card {
    background: white;
    max-width: 550px;
    margin: 30px auto;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
    text-align: center;
}

.price-card.featured {
    border-color: var(--secondary);
    position: relative;
}

.price-header { margin-bottom: 15px; }

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    color: var(--gray);
    font-size: 1rem;
    margin-top: 5px;
}

.price-renewal {
    background: var(--lighter);
    padding: 12px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.features-list {
    text-align: left;
    margin: 25px 0;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.features-list i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.guarantee-box {
    background: #fff8e1;
    color: #856404;
    padding: 15px;
    border-radius: var(--radius);
    margin: 20px 0;
    border: 1px solid #ffe082;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.guarantee-box i {
    font-size: 2rem;
    color: var(--accent);
}

.bonus-box {
    background: #e8f5e9;
    color: #1b5e20;
    padding: 12px;
    border-radius: var(--radius);
    margin-top: 15px;
    font-size: 0.9rem;
}

.offer-cta {
    margin-top: 50px;
    text-align: center;
}

.offer-cta > p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark);
}

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

.benefit {
    text-align: center;
    padding: 20px;
}

.benefit i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.benefit p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ============================================
   APPS MÓVILES
   ============================================ */
.apps-section { background: var(--white); }

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

.app-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.app-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.app-level {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.app-card.featured .app-level { background: var(--accent); }

.app-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 15px 0 10px;
}

.app-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    min-height: 40px;
}

.app-price {
    margin: 20px 0;
    padding: 15px;
    background: var(--lighter);
    border-radius: var(--radius);
}

.price-impl {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.price-month {
    font-size: 1rem;
    color: var(--gray-dark);
    margin-top: 5px;
}

.app-card ul {
    text-align: left;
    margin: 20px 0;
}

.app-card ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.app-card ul li i { color: var(--secondary); }

.apps-includes {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.apps-includes h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.include-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.apps-note {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
    text-align: left;
}

/* ============================================
   BADGES DE TIENDAS (Google Play / App Store)
   ============================================ */
.app-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
    flex-wrap: wrap;
}

.store-badge {
    height: 50px;
    border-radius: 8px;
    transition: var(--transition);
}

.store-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ============================================
   IMPORTADORES
   ============================================ */
.importers-section {
    background: linear-gradient(135deg, #001f3f 0%, #003d80 100%);
    color: white;
    position: relative;
}

.importers-section .section-title { color: white; }
.importers-section .section-subtitle { color: rgba(255,255,255,0.9); }

.importers-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.importers-price {
    text-align: center;
    padding: 30px;
    background: rgba(0,200,83,0.1);
    border-radius: var(--radius-lg);
    border: 2px solid var(--secondary);
}

.importers-price .currency { color: var(--secondary); }

.importers-price .amount {
    color: var(--secondary);
    font-size: 3.5rem;
}

.importers-price .price-period {
    color: rgba(255,255,255,0.8);
    margin-top: 10px;
}

.importers-price .price-monthly {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.importers-features h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.importers-features ul li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.importers-features ul li i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================
   PAQUETES POR SECTOR
   ============================================ */
.sectors-section { background: var(--lighter); }

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.sector-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sector-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
}

.sector-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.sector-for {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 20px;
    min-height: 35px;
}

.sector-price {
    background: var(--lighter);
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.sector-price > div:first-child {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.sector-price small {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 400;
}

.sector-price .monthly {
    font-size: 1rem;
    color: var(--gray-dark);
    margin-top: 5px;
}

.sector-card ul {
    text-align: left;
    margin: 20px 0;
}

.sector-card ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.sector-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.sectors-cta {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.sectors-cta p {
    font-size: 1.1rem;
    color: var(--gray-dark);
}

/* ============================================
   MÓDULOS ADICIONALES
   ============================================ */
.modules-section { background: var(--white); }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.module-card {
    background: white;
    padding: 25px 20px;
    border-radius: var(--radius);
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: var(--transition);
}

.module-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.module-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.module-card h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.module-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.module-card p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ============================================
   POR QUÉ ELEGIRNOS
   ============================================ */
.why-section {
    background: linear-gradient(135deg, var(--light) 0%, #e8f0fe 100%);
}

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

.why-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.why-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ============================================
   CONTACTO CTA
   ============================================ */
.contact-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo { 
    height: 100px;
    width: auto;
    max-width: 200px;
    margin-bottom: 15px;
    object-fit: contain;
    display: block;
}

.footer-col h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.footer-col h3 span { color: white; }

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-col ul li a:hover { color: var(--secondary); }

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.contact-info li i {
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

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

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37,211,102,0.6);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ============================================
   PÁGINAS INTERNAS - HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   PÁGINA SERVICIOS - DETALLES
   ============================================ */
.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:nth-child(even) { background: var(--lighter); }

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-content.reverse { grid-template-columns: 2fr 1fr; }

.service-detail h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-detail p {
    color: var(--gray-dark);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.service-detail ul { margin: 20px 0; }

.service-detail ul li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-detail ul li i {
    color: var(--secondary);
    margin-top: 4px;
}

.service-price-box {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
    text-align: center;
}

.service-price-box .price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 15px 0;
}

.service-price-box .price-tag small {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

/* ============================================
   MÓDULOS DETALLADOS
   ============================================ */
.modules-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.module-detail-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

.module-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-detail-card .module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.module-detail-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.module-detail-card .module-price-tag {
    background: var(--lighter);
    padding: 10px;
    border-radius: var(--radius);
    margin: 15px 0;
    text-align: center;
}

.module-detail-card .module-price-tag strong {
    color: var(--accent);
    font-size: 1.3rem;
}

.module-detail-card .module-price-tag small {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 3px;
}

.module-detail-card ul { margin: 15px 0; }

.module-detail-card ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.module-detail-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* ============================================
   CONTACTO - FORMULARIO
   ============================================ */
.contact-section { padding: 80px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-box {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-info-box h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info-box .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info-box .info-item:last-child { border-bottom: none; }

.contact-info-box .info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info-box .info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-info-box .info-item a { color: var(--primary); }

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   TABLA COMPARATIVA
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.comparison-table tr:hover { background: var(--lighter); }

.comparison-table .highlight-col {
    background: rgba(0,200,83,0.1);
    font-weight: 600;
}

/* ============================================
   IMPORTADORES - CARACTERÍSTICAS DETALLADAS
   ============================================ */
.importers-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.importer-feature {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.importer-feature i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.importer-feature h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.importer-feature p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 80px 0; background: var(--lighter); }

.faq-item {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i { color: var(--secondary); }

.faq-item p {
    color: var(--gray-dark);
    font-size: 0.95rem;
}
