/* Reset y variables CSS */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

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

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo-image {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Botones */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--text-light);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    overflow: hidden;
    color: white;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
}

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

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

/* Secciones generales */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-logo {
    margin-bottom: 2rem;
}

.section-logo-image {
    height: 45px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Funcionalidades */
.features {
    padding: 80px 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Sección de IA */
.ai-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.ai-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-feature.reverse {
    direction: rtl;
}

.ai-feature.reverse > * {
    direction: ltr;
}

.ai-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.ai-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ai-benefits {
    list-style: none;
}

.ai-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.ai-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.ia-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

/* Visualizaciones de IA */
.ai-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 200px;
}

.chart-bar {
    width: 40px;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    animation: growUp 2s ease-out;
}

@keyframes growUp {
    from { height: 0%; }
    to { height: var(--height); }
}

.ai-robot {
    position: relative;
    font-size: 4rem;
    color: var(--primary-color);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.matching-cards {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.match-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 120px;
}

.match-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.match-arrow {
    font-size: 1.5rem;
    color: var(--accent-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.sentiment-chart {
    display: flex;
    gap: 0.5rem;
    align-items: end;
    height: 150px;
}

.sentiment-positive {
    width: 60px;
    height: 120px;
    background: var(--accent-color);
    border-radius: 8px;
}

.sentiment-neutral {
    width: 60px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 8px;
}

.sentiment-negative {
    width: 60px;
    height: 40px;
    background: #ef4444;
    border-radius: 8px;
}

.schedule-optimization {
    display: flex;
    justify-content: center;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.schedule-cell {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    animation: fadeIn 1s ease-in;
}

.schedule-cell.optimal {
    background: var(--accent-color);
}

.schedule-cell.good {
    background: var(--secondary-color);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Precios */
.pricing {
    padding: 80px 0;
    background: var(--bg-primary);
}

.pricing-explanation {
    margin-bottom: 4rem;
    text-align: center;
}

.pricing-formula {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-formula h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pricing-logo {
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-logo-image {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.formula {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.formula-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: 'Courier New', monospace;
}

.formula-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.example {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.example strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.result {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-header p {
    color: var(--text-secondary);
}

.price-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.discount-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: var(--accent-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-logo {
    margin-bottom: 2rem;
}

.cta-logo-image {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-offer {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-offer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-offer p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Menú Móvil */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.mobile-logo {
    margin-bottom: 2rem;
}

.mobile-logo-image {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav-menu li {
    margin: 1rem 0;
}

.mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Botón scroll to top */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Efecto ripple */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.preloader-content {
    text-align: center;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal de Prueba Gratuita */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px;
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: white;
    margin: 20px auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    position: relative;
    position: sticky;
    top: 0;
    z-index: 10;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.2);
    color: #f0f0f0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-body {
    padding: 1.5rem;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.trial-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-section {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem;
    background: #fafafa;
}

.form-section h3 {
    margin: 0 0 0.75rem 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 0.6rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

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

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

/* Mensajes de éxito y error */
.success-message, .error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    max-width: 400px;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.success-message.show, .error-message.show {
    transform: translateX(0);
}

.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.error-message {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.success-content, .error-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-content i, .error-content i {
    font-size: 1.5rem;
}

.success-content h3, .error-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.success-content p, .error-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive del modal */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .form-section {
        padding: 0.75rem;
    }
    
    .close-modal {
        top: 0.75rem;
        right: 1rem;
    }
    
    .success-message, .error-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .success-message.show, .error-message.show {
        transform: translateY(0);
    }
}

/* Header scrolled */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }
    
    .nav-buttons.active {
        display: flex;
        position: absolute;
        top: calc(100% + 200px);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .ai-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-feature.reverse {
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .success-message, .error-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .success-message.show, .error-message.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* ===== NUEVAS SECCIONES ACTUALIZADAS ===== */

/* Hero Section Actualizado */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #fbbf24;
    font-size: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    min-width: 180px;
}

.hero-urgencia {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(239, 68, 68, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hero-urgencia i {
    color: #fca5a5;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.hero-urgencia span {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fecaca;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-app-preview {
    position: relative;
}

.app-mockup {
    width: 300px;
    height: 600px;
    background: #1f2937;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #374151;
    transition: transform 0.3s ease;
}

.app-screenshot:hover {
    transform: scale(1.02);
}

/* Responsive para el mockup del móvil */
@media (max-width: 768px) {
    .app-mockup {
        width: 250px;
        height: 500px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .app-mockup {
        width: 200px;
        height: 400px;
        padding: 10px;
    }
}

.app-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #374151;
    border-radius: 2px;
}

.app-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.app-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.fichaje-main {
    text-align: center;
}

.time-display {
    margin-bottom: 2rem;
}

.time {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.date {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
}

.fichaje-button-large {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.fichaje-button-large:hover {
    transform: scale(1.05);
}

.fichaje-button-large i {
    font-size: 2rem;
}

.status-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.95;
    line-height: 1.4;
    color: #f3f4f6;
}

/* Sección de Funcionalidades */
.funcionalidades {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.funcionalidades .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.funcionalidades .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.funcionalidades .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ley-alert {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 0%);
    border: 1px solid #f59e0b;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #92400e;
    max-width: 800px;
    box-shadow: var(--shadow-md);
}

.ley-alert i {
    font-size: 2rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.ley-alert strong {
    font-weight: 700;
    font-size: 1.1rem;
}

.funcionalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.funcionalidad-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.funcionalidad-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.funcionalidad-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.funcionalidad-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.funcionalidad-icon i {
    font-size: 1.75rem;
    color: white;
}

.funcionalidad-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.funcionalidad-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.funcionalidad-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.funcionalidad-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.funcionalidad-features i {
    color: var(--accent-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.simplicidad-badge {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 0%);
    color: #92400e;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #f59e0b;
    margin-top: auto;
}

.simplicidad-badge i {
    color: #f59e0b;
    font-size: 1rem;
}

/* Sección de Simplicidad */
.simplicidad-section {
    background: white;
    border-radius: 24px;
    padding: 4rem;
    margin: 4rem 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.simplicidad-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.simplicidad-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.simplicidad-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.simplicidad-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease;
}

.simplicidad-feature:hover {
    transform: translateX(10px);
}

.simplicidad-feature i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.simplicidad-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.simplicidad-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.simplicidad-visual {
    display: flex;
    justify-content: center;
}

.app-preview {
    position: relative;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1f2937;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-interface {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
}

.app-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
    justify-content: center;
}

.fichaje-button {
    background: var(--accent-color);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: var(--shadow-md);
}

.fichaje-button:hover {
    transform: scale(1.05);
}

.fichaje-button i {
    font-size: 1.75rem;
}

.status-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

/* CTA de Urgencia */
.urgencia-cta {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 0%);
    border: 1px solid #fecaca;
    border-radius: 24px;
    padding: 4rem;
    margin: 4rem 0;
    box-shadow: var(--shadow-lg);
}

.urgencia-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
}

.urgencia-icon {
    width: 90px;
    height: 90px;
    background: #ef4444;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.urgencia-icon i {
    font-size: 2.5rem;
    color: white;
}

.urgencia-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #991b1b;
    line-height: 1.2;
}

.urgencia-text p {
    color: #7f1d1d;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.urgencia-benefits {
    list-style: none;
}

.urgencia-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #7f1d1d;
    font-size: 1rem;
    font-weight: 500;
}

.urgencia-benefits i {
    color: #dc2626;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.urgencia-action {
    text-align: center;
    flex-shrink: 0;
}

.urgencia-action .btn {
    min-width: 200px;
    margin-bottom: 1rem;
}

.urgencia-note {
    font-size: 0.9rem;
    color: #7f1d1d;
    margin-top: 0.75rem;
    font-weight: 500;
}

/* Sección de IA */
.ia-section {
    padding: 100px 0;
    background: white;
}

.ia-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ia-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.ia-section .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.ia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin: 4rem 0;
}

.ia-feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease;
}

.ia-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.ia-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.ia-icon i {
    font-size: 2rem;
    color: white;
}

.ia-feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.ia-feature-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.ia-benefits {
    list-style: none;
}

.ia-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.ia-benefits i {
    color: var(--accent-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.ia-visual {
    display: flex;
    justify-content: center;
}

.ia-dashboard {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 450px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.ai-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ai-insight, .ai-prediction {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.insight-icon, .prediction-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-text, .prediction-text {
    flex: 1;
}

.insight-text strong, .prediction-text strong {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.insight-text p, .prediction-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.ia-simplicidad {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.simplicidad-message i {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 1.5rem;
}

.simplicidad-message h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.simplicidad-message p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.simplicidad-principios {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.principio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.principio i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

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

/* Sección de Precios */
.precios {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.precios .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.precios .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.precios .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.precio-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 0%);
    border: 1px solid #f59e0b;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #92400e;
    font-size: 1.2rem;
    max-width: 800px;
    box-shadow: var(--shadow-md);
}

.precio-highlight i {
    font-size: 2rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.precio-highlight strong {
    font-weight: 700;
}

.precio-resumen {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem auto 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 800px;
}

.resumen-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.resumen-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.resumen-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.precio-card {
    background: white;
    border-radius: 28px;
    padding: 4rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    overflow: hidden;
}

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

.precio-header {
    text-align: center;
    margin-bottom: 3rem;
}

.precio-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.precio-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.precio-principal {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.precio-original {
    display: flex;
    align-items: center;
    justify-content: center;
}

.precio-tachado {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.7;
}

.precio-symbol {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.precio-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.precio-period {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.precio-descuento {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.descuento-badge {
    background: #ef4444;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
}

.descuento-text {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.precio-features {
    margin-bottom: 3rem;
}

.precio-explicacion {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.precio-explicacion p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.precio-explicacion ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.precio-explicacion li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.precio-explicacion li strong {
    font-weight: 600;
    color: var(--text-primary);
}

.precio-features h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.precio-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.precio-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    min-height: 60px;
}

.precio-features i {
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.precio-features li strong {
    font-weight: 600;
    color: var(--text-primary);
    display: inline;
}

.precio-features li span {
    display: inline;
}

.precio-requirements {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.requirement {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    min-width: 200px;
}

.requirement i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.precio-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.precio-cta .btn {
    min-width: 250px;
    margin-bottom: 1rem;
}

.precio-note {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-weight: 500;
}

.precio-garantia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.precio-garantia i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* Comparativa de Precios */
.precio-comparativa {
    text-align: center;
    margin: 4rem 0;
}

.precio-comparativa h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.comparativa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparativa-item {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease;
}

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

.comparativa-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.comparativa-header i {
    font-size: 2rem;
}

.comparativa-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.comparativa-desventajas {
    list-style: none;
    text-align: left;
}

.comparativa-desventajas li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.comparativa-desventajas li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 1.25rem;
}

.comparativa-ventajas {
    list-style: none;
    text-align: left;
}

.comparativa-ventajas li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.comparativa-ventajas li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.comparativa-header:first-child i {
    color: #ef4444;
}

.comparativa-header:last-child i {
    color: var(--accent-color);
}

/* CTA de Urgencia en Precios */
.urgencia-precio {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 0%);
    border: 1px solid #fecaca;
    border-radius: 24px;
    padding: 4rem;
    margin: 4rem 0;
    box-shadow: var(--shadow-lg);
}

.urgencia-precio .urgencia-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
}

.urgencia-precio .urgencia-icon {
    width: 90px;
    height: 90px;
    background: #ef4444;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.urgencia-precio .urgencia-icon i {
    font-size: 2.5rem;
    color: white;
}

.urgencia-precio .urgencia-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #991b1b;
    line-height: 1.2;
}

.urgencia-precio .urgencia-text p {
    color: #7f1d1d;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.urgencia-precio .urgencia-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.urgencia-precio .benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.urgencia-precio .benefit i {
    width: 50px;
    height: 50px;
    background: #ef4444;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.urgencia-precio .benefit span {
    color: #7f1d1d;
    font-size: 1rem;
    font-weight: 600;
}

.urgencia-precio .urgencia-action {
    text-align: center;
    flex-shrink: 0;
}

.urgencia-precio .urgencia-action .btn {
    min-width: 220px;
    margin-bottom: 1rem;
}

.urgencia-precio .urgencia-note {
    font-size: 0.95rem;
    color: #7f1d1d;
    margin-top: 1rem;
    font-weight: 500;
}

/* Responsive Design para nuevas secciones */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .funcionalidades-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 2rem;
    }
    
    .simplicidad-content {
        gap: 3rem;
    }
    
    .ia-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 3rem;
    }
    
    .funcionalidades-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .ley-alert {
        padding: 1.5rem;
        margin: 1.5rem auto;
        flex-direction: column;
        text-align: center;
    }
    
    .simplicidad-section {
        padding: 2.5rem;
        margin: 3rem 0;
    }
    
    .simplicidad-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .urgencia-cta {
        padding: 2.5rem;
        margin: 3rem 0;
    }
    
    .urgencia-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .ia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ia-feature {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .comparativa-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .urgencia-precio {
        padding: 2.5rem;
        margin: 3rem 0;
    }
    
    .urgencia-precio .urgencia-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .urgencia-precio .urgencia-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .simplicidad-principios {
        flex-direction: column;
        gap: 1rem;
    }
    
    .precio-features ul {
        grid-template-columns: 1fr;
    }
    
    .precio-requirements {
        flex-direction: column;
        gap: 1rem;
    }
    
    .precio-card {
        padding: 2.5rem;
        margin: 0 auto 3rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .app-mockup {
        width: 250px;
        height: 500px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .funcionalidad-card {
        padding: 1.5rem;
    }
    
    .simplicidad-section {
        padding: 2rem;
    }
    
    .urgencia-cta {
        padding: 2rem;
    }
    
    .urgencia-precio {
        padding: 2rem;
    }
    
    .precio-card {
        padding: 2rem;
    }
    
    .precio-number {
        font-size: 4rem;
    }
    
    .ley-alert {
        padding: 1.25rem;
        margin: 1.25rem auto;
    }
    
    .ley-alert i {
        font-size: 1.5rem;
    }
    
    .ley-alert strong {
        font-size: 1rem;
    }
}

/* ===== SECCIÓN APP REAL ===== */
.app-real-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    margin: 2rem 0;
}

.app-real-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.app-real-section .section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.app-real-section .section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.app-screens-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.app-screen-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

.screen-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.app-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.screen-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.screen-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.screen-features {
    list-style: none;
    padding: 0;
}

.screen-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.screen-features i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.app-features-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-highlight {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.feature-highlight i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-highlight h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-highlight p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive para app real */
@media (max-width: 768px) {
    .app-screens-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .app-features-highlight {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .app-real-section {
        padding: 2rem 0;
    }
    
    .app-screen-card {
        padding: 1.5rem;
    }
}

/* ===== ILUSTRACIONES IA Y SIMPLICIDAD ===== */
.ia-illustration {
    text-align: center;
    padding: 2rem;
}

.ai-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(16, 185, 129, 0.2));
}

.ai-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.ai-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.ai-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.ai-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Ejemplos Prácticos de IA */
.ia-ejemplos {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-radius: 20px;
}

.ejemplos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ejemplos-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.ejemplos-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.ejemplos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ejemplo-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

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

.ejemplo-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ejemplo-icon i {
    font-size: 1.75rem;
}

.ejemplo-content h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ejemplo-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ejemplo-beneficio {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #f59e0b;
}

.simplicity-illustration {
    text-align: center;
    padding: 2rem;
}

.simplicity-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(245, 158, 11, 0.2));
}

.simplicity-message {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.simplicity-message h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.simplicity-message p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Responsive para ilustraciones */
@media (max-width: 768px) {
    .ai-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ia-illustration,
    .simplicity-illustration {
        padding: 1rem;
    }
    
    .ejemplos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .ejemplo-item {
        padding: 1.5rem;
    }
    
    .ejemplos-header h3 {
        font-size: 1.75rem;
    }
}

/* ===== ESTILOS PARA PÁGINAS SECUNDARIAS ===== */

/* Hero section para páginas secundarias - Mayor especificidad */
.pages .hero,
.blog-hero,
.soporte-hero,
.nosotros-hero {
    padding: 120px 0 80px !important;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
    color: white !important;
    text-align: center !important;
}

.pages .hero-container,
.blog-hero .hero-container,
.soporte-hero .hero-container,
.nosotros-hero .hero-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

.pages .hero-title,
.blog-hero .hero-title,
.soporte-hero .hero-title,
.nosotros-hero .hero-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: white !important;
}

.pages .hero-subtitle,
.blog-hero .hero-subtitle,
.soporte-hero .hero-subtitle,
.nosotros-hero .hero-subtitle {
    font-size: 1.25rem !important;
    color: white !important;
    margin-bottom: 2rem !important;
    opacity: 0.9 !important;
}

/* Navegación interna */
.internal-nav {
    background: var(--bg-secondary);
    padding: 2rem 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.internal-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.internal-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.internal-nav a:hover,
.internal-nav a.active {
    color: var(--primary-color);
    background: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* Sección de Empresa */
.empresa-section {
    padding: 4rem 0;
}

.empresa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.empresa-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.empresa-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.empresa-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.empresa-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.empresa-stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.empresa-stat .label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.empresa-visual {
    text-align: center;
}

.empresa-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Sección de Contacto */
.contacto-section {
    padding: 4rem 0;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contacto-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contacto-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contacto-details {
    margin-bottom: 2rem;
}

.contacto-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contacto-detail i {
    color: var(--primary-color);
    width: 20px;
}

.contacto-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Responsive para páginas secundarias */
@media (max-width: 768px) {
    .pages .hero-title,
    .blog-hero .hero-title,
    .soporte-hero .hero-title,
    .nosotros-hero .hero-title {
        font-size: 2.5rem !important;
    }

    .empresa-content,
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .internal-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Estilos adicionales para asegurar que las páginas secundarias funcionen */
.pages .nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 2rem !important;
}

.pages .nav-buttons {
    display: flex !important;
    gap: 1rem !important;
}

.pages .btn {
    display: inline-block !important;
    padding: 0.75rem 1.5rem !important;
    border: none !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.875rem !important;
}

.pages .btn-primary {
    background: var(--primary-color) !important;
    color: white !important;
}

.pages .btn-primary:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px) !important;
}

.pages .btn-secondary {
    background: transparent !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
}

.pages .btn-secondary:hover {
    background: var(--bg-secondary) !important;
    border-color: var(--primary-color) !important;
}

/* ===== ESTILOS PARA PÁGINAS DE BLOG Y SOPORTE ===== */

/* Estilos para páginas de blog */
.blog-hero {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
}

/* Asegurar que las páginas secundarias tengan estilos correctos */
.pages .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

.pages .section-header {
    text-align: center !important;
    margin-bottom: 3rem !important;
}

.pages .section-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: var(--text-primary) !important;
}

.pages .section-header p {
    font-size: 1.125rem !important;
    color: var(--text-secondary) !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.featured-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
}

.featured-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.featured-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.featured-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    border-radius: 16px;
}

.blog-categories {
    padding: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

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

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.blog-articles {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

.article-header {
    padding: 1.5rem 1.5rem 0;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.article-content {
    padding: 0 1.5rem 1.5rem;
}

.article-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.article-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-content h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-primary);
}

.article-content ul, .article-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.article-content blockquote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.article-footer {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid var(--border-color);
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.newsletter-section {
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.newsletter-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Estilos para páginas de soporte */
.soporte-canales {
    padding: 4rem 0;
}

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

.canal-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

.canal-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.canal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.canal-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.canal-card small {
    color: var(--text-muted);
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1.5rem;
}

.base-conocimientos {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

.categoria-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

.categoria-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.categoria-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.categoria-links {
    list-style: none;
}

.categoria-links li {
    margin-bottom: 0.5rem;
}

.categoria-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
}

.categoria-links a:hover {
    text-decoration: underline;
}

.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.estado-servicio {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.estado-overview {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    margin-bottom: 2rem;
}

.estado-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-right: 0.5rem;
}

.estado-indicator.warning {
    background: #f59e0b;
}

.estado-indicator.error {
    background: #ef4444;
}

.estado-overview h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.estado-overview p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.servicio-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
}

.servicio-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.servicio-status {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 600;
}

.servicio-status.warning {
    color: #f59e0b;
}

.servicio-status.error {
    color: #ef4444;
}

/* Responsive para páginas de blog y soporte */
@media (max-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .categories-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
    
    .canales-grid,
    .categorias-grid,
    .faq-grid,
    .servicios-grid {
        grid-template-columns: 1fr;
    }
}
