/* Marketing Digital Solutions Custom Styles */

/* CSS Variables for consistent theming */
:root {
    --primary-color: #6366f1;
    --primary-light: #8b5cf6;
    --primary-dark: #4f46e5;
    --secondary-color: #64748b;
    --accent-color: #10b981;
    --accent-light: #34d399;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 0.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 700;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    transition: var(--transition);
    filter: brightness(1.1);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    transition: var(--transition);
    color: white !important;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    color: #10B981 !important;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: #10B981 !important;
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: 700;
}

/* WhatsApp Button Special Style */
.navbar-nav .nav-link[href*="wa.me"] {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    border-radius: 25px;
    padding: 0.5rem 1rem !important;
    margin-left: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link[href*="wa.me"]:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Hero Sections */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Margen superior para separar del navbar */
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(59, 130, 246, 0.85) 100%),
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    background-size: 100% 100%, 800px 800px, 600px 600px, 100% 100%;
    color: white;
    box-shadow: 
        inset 0 0 100px rgba(255, 255, 255, 0.05),
        inset 0 0 200px rgba(59, 130, 246, 0.1);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-left: 2rem; /* Margen izquierdo adicional */
    padding-right: 2rem; /* Margen derecho para balance */
}

/* Hero Typography */
.hero-subtitle-small {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

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

.text-gradient {
    background: linear-gradient(135deg, #10B981 0%, #06D6A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

.hero-buttons {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.hero-buttons .btn {
    height: 60px;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

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

.bg-light {
    background: var(--neutral-50);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--neutral-700) 0%, var(--neutral-900) 100%);
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background: white;
}

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

.service-card .service-icon i {
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* Modern Service Cards */
.modern-service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1D4ED8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-service-card:hover::before {
    opacity: 1;
}

.modern-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(59, 130, 246, 0.1);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.service-card-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    position: relative;
}

.seo-icon {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    box-shadow: 
        0 12px 24px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.web-icon {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 
        0 12px 24px rgba(16, 185, 129, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}

.service-card-description {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #374151;
    font-weight: 500;
}

.service-features li i {
    color: #10B981;
    margin-right: 0.75rem;
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.seo-btn {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    color: white;
    box-shadow: 
        0 8px 20px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.seo-btn:hover {
    background: linear-gradient(135deg, #1D4ED8, #1E40AF);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 28px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
}

.web-btn {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    box-shadow: 
        0 8px 20px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.web-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 28px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
}

/* Specialist Section */
.specialist-content h2 {
    line-height: 1.3;
}

.expertise-points {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #3B82F6;
}

.expertise-item {
    padding: 0.5rem 0;
}

.expertise-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.specialist-visual {
    position: relative;
}

.floating-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    animation: float 3s ease-in-out infinite;
}

.badge-item:nth-child(1) { animation-delay: 0s; }
.badge-item:nth-child(2) { animation-delay: 1s; }
.badge-item:nth-child(3) { animation-delay: 2s; }

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

.specialist-cta {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #bae6fd;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px; /* Margen superior reducido en móviles */
        padding-bottom: 40px; /* Margen inferior para evitar cortes */
        min-height: auto;
    }
    
    .hero-section .container {
        padding-left: 1rem; /* Margen izquierdo en móviles */
        padding-right: 1rem; /* Margen derecho en móviles */
    }
    
    .hero-title {
        font-size: 2.5rem; /* Título más pequeño en móviles */
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column; /* Botones apilados verticalmente en móviles */
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%; /* Botones ocupan todo el ancho disponible */
        min-width: auto;
        max-width: 350px;
        height: 50px; /* Altura reducida en móviles */
        font-size: 0.9rem;
    }
    
    .floating-badges {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 1rem;
        justify-content: center;
    }

    .badge-item {
        animation: none;
    }
}

/* Service Icons */
.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin: 0 auto;
}

.service-icon .fa-map-marker-alt {
    color: var(--primary-color);
}

.service-icon .fa-palette {
    color: var(--accent-color);
}

.service-icon .fa-chart-line {
    color: var(--primary-light);
}

/* Modern Buttons */
.btn {
    font-weight: 600;
    border-radius: var(--border-radius);
    padding: 0.875rem 2rem;
    transition: var(--transition);
    border: none;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-lg);
}

.btn:active {
    transform: translateY(0);
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

/* Success Button */
.btn-success {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    box-shadow: var(--box-shadow);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, var(--accent-color));
    color: white;
}

/* Outline Button */
.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Secondary Button */
.btn-secondary {
    background: var(--neutral-100);
    color: var(--neutral-700);
    border: 1px solid var(--neutral-200);
}

.btn-secondary:hover {
    background: var(--neutral-200);
    color: var(--neutral-800);
    border-color: var(--neutral-300);
}

/* Warning Button (now using neutral tones) */
.btn-warning {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--box-shadow);
}

.btn-warning:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

/* Forms */
.form-control, .form-select {
    border-radius: var(--border-radius);
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-control-lg, .form-select-lg {
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Modern Contact Form */
.modern-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-title {
    color: #1F2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.modern-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.modern-contact-form .form-label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.modern-contact-form .form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    background: #F9FAFB;
    transition: all 0.3s ease;
    color: #1F2937;
}

.modern-contact-form .form-control:focus {
    outline: none;
    border-color: #3B82F6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modern-contact-form .form-control::placeholder {
    color: #9CA3AF;
}

.btn-gradient {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    color: white;
}

.form-footer-text {
    text-align: center;
    font-size: 0.75rem;
    color: #6B7280;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Checkbox de privacidad - Color negro para que se vea */
.modern-contact-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #1F2937 !important; /* Negro para que se vea bien */
    font-size: 0.875rem;
    line-height: 1.5;
}

.modern-contact-form .form-checkbox input[type="checkbox"] {
    margin: 0;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.modern-contact-form .form-checkbox .checkmark {
    display: none; /* No usamos el checkmark custom */
}

/* Forzar color negro en enlaces dentro del checkbox */
.modern-contact-form .form-checkbox a {
    color: #3B82F6 !important;
    text-decoration: underline;
}

/* También para los form-check (estilo Bootstrap) */
.form-check-label {
    color: #1F2937 !important;
    font-size: 0.875rem;
}

.form-check-label a {
    color: #3B82F6 !important;
    text-decoration: underline;
}

.contact-info-wrapper {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: fit-content;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Statistics Section */
.counter {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--accent-color) !important;
}

.text-warning {
    color: var(--primary-light) !important;
}

.text-info {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--neutral-500) !important;
}

/* Features */
.feature-item, .benefit-item {
    transition: var(--transition);
}

.feature-item:hover, .benefit-item:hover {
    transform: translateX(10px);
}

.feature-icon, .benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 1rem;
    flex-shrink: 0;
}

.feature-icon i, .benefit-icon i {
    color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-color);
}

/* Process Steps */
.process-step {
    padding: 1.5rem;
}

/* Modern Process Container */
.modern-process-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-line {
    position: absolute;
    top: 120px;
    bottom: 120px;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #6366f1, #8b5cf6, #06b6d4, #10b981);
    z-index: 1;
    border-radius: 2px;
}

.process-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -3px;
    right: -3px;
    background: linear-gradient(180deg, #6366f1, #8b5cf6, #06b6d4, #10b981);
    border-radius: 6px;
    opacity: 0.3;
    filter: blur(3px);
}

.process-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 400px;
}

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

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 20px 20px 0 0;
}

.process-icon-container {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ffffff;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.audit-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.optimization-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.content-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.tracking-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.blue-process-icon {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.process-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 3px solid #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #6366f1;
    z-index: 4;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

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

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.process-description {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.process-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #475569;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    transform: translateY(-2px);
}

.process-cta {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-cta h3 {
    color: #1e293b;
    font-weight: 700;
}

.process-cta p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-process-container {
        gap: 2rem;
    }

    .process-item,
    .process-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .process-line {
        left: 2rem;
        transform: none;
        width: 2px;
    }

    .process-card {
        padding: 2rem 1.5rem;
        max-width: none;
        margin-left: 4rem;
    }

    .process-icon {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }

    .process-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        top: -12px;
        right: -12px;
    }

    .process-cta {
        padding: 2rem 1.5rem;
    }
}

.step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Portfolio */
.portfolio-item {
    transition: var(--transition);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.9) 0%, rgba(108, 117, 125, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-image:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-image img {
    transition: var(--transition);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-image:hover img {
    transform: scale(1.05);
}

/* Skills & Progress Bars */
.skill-card {
    background: #fff;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.progress {
    height: 8px;
    border-radius: 10px;
    background-color: #e9ecef;
}

.progress-bar {
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Testimonials */
.testimonial-card {
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

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

.stars i {
    color: var(--warning-color);
}

/* Pricing Cards */
.card.border-primary {
    border-width: 3px !important;
    position: relative;
}

.card.border-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: var(--border-radius);
    z-index: -1;
}

.price {
    color: var(--primary-color);
}

/* FAQ Accordion */
.accordion {
    --bs-accordion-border-color: #e9ecef;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #ffffff;
    border: none;
    padding: 1.5rem 2rem;
    color: #1F2937;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23374151'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem 2rem 2rem 2rem;
    background-color: #f8fafc;
    color: #6B7280;
    line-height: 1.6;
    font-size: 1rem;
}

.accordion-collapse {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #495057 100%);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

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

/* Utility Classes */
.text-light-50 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.text-purple {
    color: #8b5cf6 !important;
}

.bg-purple {
    background-color: #8b5cf6 !important;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--neutral-800);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-600);
    margin-bottom: 2rem;
}

/* Separación visual entre secciones */
section {
    position: relative;
    margin-bottom: 2rem;
}

/* Bordes y separadores */
section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* Espaciado consistente */
section.py-5 {
    padding: 5rem 0 !important;
}

/* Alternancia de fondos */
section:nth-child(even) {
    background-color: #f8f9fa;
}

section:nth-child(odd) {
    background-color: #ffffff;
}

/* Secciones con clase bg-light mantienen su fondo */
section.bg-light {
    background-color: #f8f9fa !important;
}

/* Secciones con clase bg-white mantienen su fondo */
section.bg-white {
    background-color: #ffffff !important;
}

/* Secciones con clase bg-primary mantienen su fondo */
section.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Margen superior adicional para separación */
section + section {
    margin-top: 1rem;
}

/* Separadores de sección */
.section-separator {
    padding: 2rem 0;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.section-content {
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border-radius: 0;
}

/* Efecto de sombra suave entre secciones */
.section-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0,0,0,0.05) 25%, 
        rgba(0,0,0,0.05) 75%, 
        transparent 100%);
    z-index: 1;
}

/* Contenedor de sección mejorado */
.section-content {
    position: relative;
    margin-bottom: 0;
}

/* Espaciado mejorado para títulos de sección */
.section-content h2 {
    margin-bottom: 3rem;
    position: relative;
}

.section-content h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Centrar decoración solo en títulos centrados */
.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        text-align: center;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .hero-section .container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .modern-form-card {
        margin-top: 3rem;
        padding: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
        max-width: none;
        height: 55px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline::before {
        left: 0.5rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -1.5rem;
    }

    /* Modern Service Cards Responsive */
    .modern-service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .service-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-card-icon i {
        font-size: 2rem;
    }

    .service-card-title {
        font-size: 1.5rem;
    }

    .service-card-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .service-features {
        margin-bottom: 2rem;
    }

    .service-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 70px;
        padding-bottom: 60px; /* Más espacio inferior en móviles */
        min-height: auto;
    }
    
    .hero-section .row {
        flex-direction: column-reverse; /* Formulario primero, después texto en móviles */
    }
    
    .hero-section .col-lg-6:first-child {
        margin-bottom: 0;
        padding-bottom: 2rem; /* Espacio adicional después del texto */
    }
    
    .hero-section .col-lg-6:last-child {
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        margin-bottom: 3rem; /* Más espacio para separar del formulario */
        padding-bottom: 1rem; /* Espacio adicional para evitar cortes */
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .contact-highlights {
        font-size: 0.9rem;
    }

    .process-step {
        padding: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.btn.loading {
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Why SEO Local Cards */
.why-seo-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
}

.why-seo-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05);
}

.why-seo-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.why-seo-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.why-seo-card:hover .why-seo-icon i {
    transform: scale(1.1);
}

.location-icon {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.clients-icon {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.roi-icon {
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.blue-icon {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.why-seo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-seo-description {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Responsive adjustments for Why SEO cards */
@media (max-width: 768px) {
    .why-seo-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .why-seo-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

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

    .why-seo-title {
        font-size: 1.25rem;
    }

    .why-seo-description {
        font-size: 0.95rem;
    }
}

/* Modern Pricing Card */
.modern-pricing-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.modern-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.pricing-content {
    position: relative;
    z-index: 2;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    width: fit-content;
}

/* Price Tag estilo cartel de tienda */
.price-tag-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.price-tag {
    position: relative;
    background: linear-gradient(145deg, #FF6B6B, #FF5252);
    color: white;
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(255, 107, 107, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    border: 3px solid #fff;
    min-width: 280px;
}

.price-tag:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.price-tag-header {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.price-tag-amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.25rem;
}

.price-tag-period {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.price-old {
    margin-bottom: 0.5rem;
}

.old-price {
    font-size: 1.5rem;
    color: #000000;
    text-decoration: line-through;
    font-weight: 600;
    opacity: 0.8;
}

.price-tag-ribbon {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #10B981, #059669);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

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

.pricing-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1F2937;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #6B7280;```text
line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.pricing-main {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: #1F2937;
    line-height: 1;
    display: inline-block;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.25rem;
    color: #9CA3AF;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-text {
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-separator {
    color: #D1D5DB;
    font-weight: bold;
}

.pricing-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 28px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    min-width: 200px;
}

.btn-pricing-primary:hover {
    background: linear-gradient(135deg, #1D4ED8, #1E40AF);
    transform: translateY(-3px);
    box-shadow: 
        0 16px 32px rgba(59, 130, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.btn-pricing-secondary {
    background: rgba(37, 211, 102, 0.1);
    color: #059669;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(37, 211, 102, 0.2);
    min-width: 180px;
}

.btn-pricing-secondary:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
    color: #047857;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Responsive para la tarjeta de precios */
@media (max-width: 768px) {
    .modern-pricing-card {
        padding: 2.5rem 2rem;
        border-radius: 24px;
        margin: 0 1rem;
    }

    .pricing-title {
        font-size: 1.75rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .price-amount {
        font-size: 3rem;
    }

    .price-period {
        font-size: 1.1rem;
    }

    .pricing-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-pricing-primary,
    .btn-pricing-secondary {
        width: 100%;
        min-width: auto;
    }

    .pricing-features {
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .feature-separator {
        display: none;
    }

    .pricing-features {        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 576px) {
    .modern-pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer,
    .hero-section {
        display: none !important;
    }

    .container {
        max-width: none !important;
    }

    .card {
        box-shadow: none !important;
        border: 1px solid #dee2e6 !important;
    }
}

/* Floating geometric shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

/* Formas redondeadas estilo neumórfico */
.shape:nth-child(1) {
    width: 180px;
    height: 120px;
    top: 8%;
    left: 5%;
    animation-delay: 0s;
    border-radius: 60px 40px 60px 40px;
    transform: rotate(-15deg);
}

.shape:nth-child(2) {
    width: 100px;
    height: 140px;
    top: 55%;
    left: 15%;
    animation-delay: 2s;
    border-radius: 50px 20px 50px 20px;
    transform: rotate(25deg);
}

.shape:nth-child(3) {
    width: 160px;
    height: 80px;
    top: 15%;
    right: 10%;
    animation-delay: 4s;
    border-radius: 40px 80px 40px 80px;
    transform: rotate(45deg);
}

.shape:nth-child(4) {
    width: 90px;
    height: 160px;
    top: 65%;
    right: 20%;
    animation-delay: 1s;
    border-radius: 45px 15px 45px 15px;
    transform: rotate(-30deg);
}

.shape:nth-child(5) {
    width: 130px;
    height: 100px;
    top: 35%;
    left: 45%;
    animation-delay: 3s;
    border-radius: 65px 35px 65px 35px;
    transform: rotate(60deg);
}

.shape:nth-child(6) {
    width: 200px;
    height: 60px;
    top: 25%;
    left: 25%;
    animation-delay: 5s;
    border-radius: 30px 100px 30px 100px;
    transform: rotate(-45deg);
}

.shape:nth-child(7) {
    width: 80px;
    height: 180px;
    top: 45%;
    right: 35%;
    animation-delay: 1.5s;
    border-radius: 40px 20px 40px 20px;
    transform: rotate(15deg);
}

.shape:nth-child(8) {
    width: 150px;
    height: 90px;
    top: 75%;
    left: 35%;
    animation-delay: 3.5s;
    border-radius: 75px 25px 75px 25px;
    transform: rotate(-60deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(var(--rotation, 0deg));
        opacity: 0.08;
    }
    33% {
        transform: translateY(-30px) translateX(20px) rotate(calc(var(--rotation, 0deg) + 120deg));
        opacity: 0.15;
    }
    66% {
        transform: translateY(20px) translateX(-15px) rotate(calc(var(--rotation, 0deg) + 240deg));
        opacity: 0.12;
    }
}

/* Agregar patrón de fondo adicional con relieve */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at top, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    background-size: 800px 600px, 600px 800px, 400px 400px, 100% 300px;
    background-position: -200px bottom, right -200px, center center, top center;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    background-size: 200px 200px, 150px 150px;
    animation: subtle-move 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes subtle-move {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    25% {
        transform: translateX(20px) translateY(-10px);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-10px) translateY(20px);
        opacity: 0.4;
    }
    75% {
        transform: translateX(15px) translateY(10px);
        opacity: 0.6;
    }
}



/* Transición suave entre secciones */
.smooth-transition {
    position: relative;
    height: 80px;
    background: linear-gradient(180deg, 
        rgba(99, 102, 241, 0.03) 0%, 
        rgba(248, 249, 250, 0.8) 50%, 
        #ffffff 100%);
    overflow: hidden;
}

.smooth-transition::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    border-radius: 1px;
}

/* Efecto de ondas muy suaves */
.gentle-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.05) 100%);
    overflow: hidden;
}

.gentle-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V20C150,40 350,10 500,25C650,40 850,5 1200,20V0Z' fill='%23ffffff' opacity='0.3'/%3E%3C/svg%3E") repeat-x;
    animation: gentle-wave-animation 20s ease-in-out infinite;
}

.gentle-wave:nth-child(2) {
    animation-delay: -10s;
    opacity: 0.2;
}

@keyframes gentle-wave-animation {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-50px);
    }
}