/* ===================================================
   ESTILOS PRINCIPALES - Diseño Moderno y Profesional
   Inspirado en nuvik.digital
   =================================================== */

:root {
    --color-primary: #667eea;
    --color-secondary: #764ba2;
    --color-accent: #f093fb;
    --color-dark: #0f172a;
    --color-light: #f8fafc;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-border: #e2e8f0;
    
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --spacing-unit: 8px;
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAVBAR STICKY */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-login {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 8px;
    font-weight: 600 !important;
}

/* HERO FULLSCREEN */
.hero-fullscreen {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #8B5CF6 0%, #D946A6 25%, #667eea 50%, #4a90e2 75%, #0EA5E9 100%);
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* LÍNEA SUPERIOR COLORIDA */
.hero-line-top {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 2;
}

.line-segment {
    height: 12px;
    flex: 1;
    border-radius: 6px;
}

.segment-1 {
    width: 100px;
    background: linear-gradient(90deg, #0EA5E9, #667eea);
}

.segment-2 {
    width: 100px;
    background: linear-gradient(90deg, #D946A6, #8B5CF6);
}

.segment-3 {
    width: 100px;
    background: linear-gradient(90deg, #F472B6, #EC4899);
}

.star-decoration {
    font-size: 36px;
    margin-left: 15px;
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* BLOBS ANIMADOS */
.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.7;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 255, 0.4), rgba(217, 70, 166, 0.1));
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.3), rgba(14, 165, 233, 0.1));
    bottom: -150px;
    left: -150px;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 1;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), rgba(102, 126, 234, 0.1));
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-50px) translateX(30px); }
    66% { transform: translateY(50px) translateX(-30px); }
}

/* ICONOS FLOTANTES */
.floating-icons {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 3;
}

.floating-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    backdrop-filter: blur(10px);
    animation: iconFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: 0.4s; }
.floating-icon:nth-child(3) { animation-delay: 0.8s; }

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

.hero-content-large {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: slideUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    animation: slideUp 0.8s ease 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons-large {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 0.4s both;
}

/* BOTONES */
.btn {
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-lg {
    padding: 18px 50px;
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

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

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-4px);
}

.btn-block {
    width: 100%;
    display: block;
}

/* CARACTERÍSTICAS SECTION */
.caracteristicas-section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
}

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

/* CARACTERÍSTICAS EN FILAS ALTERNAS */
.caracteristica-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.caracteristica-row.reverse {
    direction: rtl;
}

.caracteristica-row.reverse > * {
    direction: ltr;
}

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

.visual-icon {
    font-size: 120px;
    opacity: 0.9;
}

.caracteristica-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.caracteristica-text {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.caracteristica-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.caracteristica-list li {
    font-size: 15px;
    color: var(--color-text);
    font-weight: 500;
}

.caracteristica-list li::before {
    content: '✓ ';
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 8px;
}

/* STATS HIGHLIGHT */
.stats-highlight {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a2841 100%);
    padding: 80px 40px;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: var(--color-primary);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* LOGIN SECTION */
.login-section-large {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--color-light) 0%, #ffffff 100%);
}

.login-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.login-header p {
    font-size: 16px;
    color: var(--color-text-light);
}

.login-form-large {
    margin-bottom: 30px;
}

.form-group-large {
    margin-bottom: 24px;
}

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

.form-group-large input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.form-group-large input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.error-text {
    display: block;
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
}

.form-check-large {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.form-check-large input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-large label {
    margin: 0;
    cursor: pointer;
}

.login-help {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-light);
}

.link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

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

/* PILLARS SECTION */
.pillars-section {
    padding: 100px 40px;
    background: var(--color-light);
    max-width: 1400px;
    margin: 0 auto;
}

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

.pillar-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 15px;
    color: var(--color-text-light);
}

/* PROCESS SECTION */
.process-section {
    padding: 100px 40px;
    background: var(--color-light);
    max-width: 1400px;
    margin: 0 auto;
}

.process-container {
    max-width: 1300px;
    margin: 0 auto;
}

.process-steps-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-card-horizontal {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    min-width: 280px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.step-card-horizontal:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    transform: translateY(-8px);
}

.step-image-container {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.step-image-horizontal {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number-horizontal {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-card-horizontal h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card-horizontal p {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.6;
}

.step-arrow-horizontal {
    font-size: 32px;
    color: var(--color-primary);
    font-weight: 700;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* PRICING SECTION */
.pricing-section {
    padding: 100px 40px;
    background: var(--color-light);
    max-width: 1400px;
    margin: 0 auto;
}

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

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.pricing-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.pricing-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.pricing-card p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-card li {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 500;
}

/* ABOUT SECTION */
.about-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, var(--color-light) 0%, #ffffff 100%);
    max-width: 1000px;
    margin: 0 auto;
}

.about-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 50px;
    text-align: center;
}

.about-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 40px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 30px 0 20px 0;
}

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

.commitment-item {
    display: flex;
    gap: 20px;
}

.commitment-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.commitment-item p {
    margin: 0;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* IMÁGENES */
.hero-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    z-index: 2;
}

.feature-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.cta-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .feature-image {
        height: 200px;
    }
    
    .step-image {
        height: 150px;
    }
    
    .cta-image {
        max-width: 100%;
        height: 200px;
    }
}

/* HERO BUTTONS DUAL */
.hero-buttons-dual {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 0.4s both;
}

.hero-buttons-dual .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 280px;
}

.hero-buttons-dual .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hero-buttons-dual .btn:hover .arrow {
    transform: translateX(5px);
}

/* SECCIÓN PYME NUEVA */
.pyme-nueva-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.pyme-consolidada-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    max-width: 1400px;
    margin: 0 auto;
}

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

.pyme-header {
    text-align: center;
    margin-bottom: 60px;
}

.pyme-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.pyme-header p {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* PLANES GRID */
.planes-pyme {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.plan-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.plan-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.plan-card .precio {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.plan-card .descripcion {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-weight: 500;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.features-list li {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 500;
}

.features-list li::before {
    content: '✓ ';
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 8px;
}

.plan-card .ideal-for {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.plan-small { border: 2px solid #e2e8f0; }
.plan-medium { border: 2px solid var(--color-primary); }
.plan-premium { border: 2px solid #e2e8f0; }
.plan-enterprise { border: 2px solid var(--color-primary); }

/* BENEFICIO CLAVE */
.beneficio-clave {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.beneficio-clave h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.beneficio-clave p {
    font-size: 15px;
    opacity: 0.95;
    margin: 0;
}

@media (max-width: 768px) {
    .planes-pyme {
        grid-template-columns: 1fr;
    }

    .pyme-header h2 {
        font-size: 28px;
    }

    .plan-card {
        padding: 30px;
    }

    .plan-card h3 {
        font-size: 20px;
    }

    .plan-card .precio {
        font-size: 28px;
    }
}

/* FORMULARIOS */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contacto-form,
.diagnostico-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    color: var(--color-dark);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 14px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    font-size: 14px;
}

.form-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.form-check label {
    cursor: pointer;
    color: var(--color-text);
}

.error-text {
    color: #ef4444;
    font-size: 12px;
    display: none;
    margin-top: 4px;
}

.mensaje-exito {
    background: #dcfce7;
    color: #166534;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    border-left: 4px solid #22c55e;
}

/* SECCIÓN DIAGNÓSTICO */
.diagnostico-section {
    padding: 100px 40px;
    background: var(--color-light);
    max-width: 1400px;
    margin: 0 auto;
}

.diagnostico-container {
    max-width: 700px;
    margin: 0 auto;
}

.diagnostico-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
    text-align: center;
}

.diagnostico-section > p {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

.diagnostico-form {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contacto-form,
    .diagnostico-form {
        padding: 25px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .diagnostico-section h2 {
        font-size: 28px;
    }
}

/* NUEVA INFORMACIÓN DE PLANES */
.plan-card .plazo {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.plan-card .limite {
    font-size: 12px;
    background: #fef3c7;
    color: #92400e;
    padding: 10px 12px;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
    margin: 15px 0;
    line-height: 1.5;
}

/* SECCIÓN SERVICIOS */
.servicios-section {
    padding: 100px 40px;
    background: var(--color-light);
    max-width: 1400px;
    margin: 0 auto;
}

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

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.servicio-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-primary);
}

.servicio-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.servicio-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.servicio-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.servicio-tagline {
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.servicio-content p {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.6;
}

.servicio-content strong {
    color: var(--color-dark);
}

.servicio-content ul {
    list-style: none;
    margin-bottom: 15px;
}

.servicio-content li {
    font-size: 13px;
    color: var(--color-text);
    padding: 6px 0;
}

.comparacion-simple {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

.comparacion-simple h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.comp-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.comp-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.comp-text {
    display: block;
    font-size: 15px;
    opacity: 0.95;
}

/* SECCIÓN MAIL CORPORATIVO */
.mail-addon-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #fef3c7 0%, #fbbf24 50%, #f59e0b 100%);
}

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

.mail-header {
    text-align: center;
    margin-bottom: 60px;
}

.mail-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #78350f;
    margin-bottom: 12px;
}

.mail-header p {
    font-size: 18px;
    color: #92400e;
}

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

.mail-benefit {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.mail-benefit h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.mail-benefit p {
    font-size: 14px;
    color: var(--color-text-light);
}

.mail-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.mail-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.mail-info > p {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 20px;
}

.mail-pricing {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mail-pricing li {
    font-size: 14px;
    color: var(--color-text);
    padding: 12px;
    background: #f3f4f6;
    border-left: 4px solid var(--color-primary);
    border-radius: 4px;
}

.mail-note {
    background: #fef08a;
    border: 2px solid #f59e0b;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.mail-note h4 {
    color: #78350f;
    margin-bottom: 10px;
    font-weight: 700;
}

.mail-note p {
    color: #92400e;
    font-size: 14px;
    line-height: 1.6;
}

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

    .comparacion-grid {
        grid-template-columns: 1fr;
    }

    .mail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mail-header h2 {
        font-size: 28px;
    }

    .mail-info {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .mail-grid {
        grid-template-columns: 1fr;
    }
}

/* SECCIÓN PLANES UNIFICADOS */
.planes-unificados-section {
    padding: 100px 40px;
    background: white;
    max-width: 1400px;
    margin: 0 auto;
}

.planes-unificados-container {
    max-width: 1300px;
    margin: 0 auto;
}

.camino-negocio {
    margin-bottom: 80px;
}

.camino-titulo {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
    text-align: center;
}

.camino-subtitulo {
    font-size: 16px;
    color: var(--color-text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.planes-grid-pequenos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.planes-grid-grande {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

/* DIVISOR VISUAL ENTRE CAMINOS */
.divisor-caminos {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    margin: 60px 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .planes-unificados-section {
        padding: 60px 20px;
    }

    .camino-titulo {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .camino-subtitulo {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .planes-grid-pequenos,
    .planes-grid-grande {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .divisor-caminos {
        margin: 40px 0;
    }
}

/* DOS CAMINOS COMPARATIVA */
.two-paths-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.path-item {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.path-item:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    transform: translateY(-8px);
}

.path-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.path-highlight {
    font-size: 16px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.path-item p {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .two-paths-comparison {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .path-item {
        padding: 25px;
    }

    .path-item h4 {
        font-size: 16px;
    }

    .path-highlight {
        font-size: 14px;
    }
}
