/* 
 * PROMOVIL - Diseño Empresarial Moderno SPA
 * Single Page Application - Vista Completa Adaptativa
 * Colores basados en el logo corporativo
 */

/* Variables del Sistema de Diseño Empresarial */
:root {
    /* Colores principales del logo Promovil */
    --promovil-blue: #0066CC;
    --promovil-blue-dark: #004080;
    --promovil-blue-light: #3399FF;
    --promovil-accent: #00AAFF;
    
    /* Grises corporativos */
    --corp-dark: #1A1A2E;
    --corp-medium: #2D3748;
    --corp-light: #4A5568;
    --corp-lighter: #718096;
    
    /* Blancos y fondos */
    --corp-white: #FFFFFF;
    --corp-bg: #F7FAFC;
    --corp-bg-light: #EDF2F7;
    --corp-bg-darker: #E2E8F0;
    
    /* Gradientes corporativos */
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #004080 50%, #00AAFF 100%);
    --gradient-secondary: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    --gradient-accent: linear-gradient(90deg, #0066CC 0%, #3399FF 100%);
    
    /* Sombras profesionales */
    --shadow-sm: 0 2px 4px rgba(0, 102, 204, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 102, 204, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 102, 204, 0.15);
    --shadow-xl: 0 16px 40px rgba(0, 102, 204, 0.2);
    
    /* Espaciados */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    
    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--corp-bg);
    color: var(--corp-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-size: 16px;
    line-height: 1.6;
}

/* Layout Principal - Single Page */
.main-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Header Empresarial Fijo */
.corp-header {
    background: var(--corp-white);
    border-bottom: 2px solid var(--promovil-blue);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    position: relative;
    flex-shrink: 0;
    padding: 1rem 0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

/* Logo Principal */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.main-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 102, 204, 0.2));
    transition: var(--transition);
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 18px rgba(0, 102, 204, 0.3));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--promovil-blue);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--corp-light);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Navegación por Pestañas */
.tab-navigation {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid transparent;
    color: var(--corp-medium);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tab-button:hover {
    background: rgba(0, 102, 204, 0.05);
    color: var(--promovil-blue);
    border-color: rgba(0, 102, 204, 0.2);
    text-decoration: none;
}

.tab-button.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--promovil-blue-dark);
    box-shadow: var(--shadow-md);
}

.tab-button i {
    font-size: 0.9rem;
}

/* Área de Contenido Principal */
.content-area {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: var(--corp-bg);
}

.tab-content {
    display: none;
    height: 100%;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow-y: auto;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Página de Inicio - Hero Central */
.home-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-logo-large {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 8px 32px rgba(0, 102, 204, 0.2));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--corp-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--promovil-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    color: var(--corp-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Características Destacadas */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.feature-card {
    background: var(--corp-white);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 204, 0.1);
}

.feature-card:hover::before {
    left: 0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--corp-dark);
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--corp-light);
    font-size: 0.85rem;
    line-height: 1.4;
    flex-grow: 1;
}

/* Botones de Acción */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--promovil-blue);
    border: 2px solid var(--promovil-blue);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--promovil-blue);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        height: auto;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    .tab-navigation {
        justify-content: center;
        width: 100%;
        gap: 0.25rem;
    }
    
    .tab-button {
        flex: 1;
        min-width: 80px;
        justify-content: center;
        font-size: 0.7rem;
        padding: 0.4rem 0.3rem;
        flex-direction: column;
        gap: 0.2rem;
        border-radius: 8px;
    }
    
    .tab-button i {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }
    
    .tab-button span {
        display: block;
        font-size: 0.65rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    .tab-content {
        padding: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand-text {
        display: block;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .main-logo {
        height: 35px;
    }
    
    .header-content {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .tab-navigation {
        gap: 0.15rem;
    }
    
    .tab-button {
        min-width: 65px;
        padding: 0.3rem 0.15rem;
        font-size: 0.6rem;
        flex-direction: column;
    }
    
    .tab-button span {
        display: block;
        font-size: 0.55rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2px;
        line-height: 1;
    }
    
    .tab-button i {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }
}

/* Estados de loading y transiciones */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

/* Scrollbar personalizado para contenido */
.tab-content::-webkit-scrollbar {
    width: 6px;
}

.tab-content::-webkit-scrollbar-track {
    background: var(--corp-bg-light);
}

.tab-content::-webkit-scrollbar-thumb {
    background: var(--promovil-blue);
    border-radius: 3px;
}

.tab-content::-webkit-scrollbar-thumb:hover {
    background: var(--promovil-blue-dark);
}

/* Estilos Específicos para Servicios */
.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--corp-dark);
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--corp-light);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-card {
    background: var(--corp-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 204, 0.1);
}

.service-card:hover::before {
    left: 0;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--corp-dark);
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;
    flex-grow: 1;
}

.service-list li {
    padding: 0.25rem 0;
    color: var(--corp-light);
    font-size: 0.85rem;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.3;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--promovil-blue);
    font-weight: bold;
}

.btn-service {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    width: 100%;
    font-size: 0.9rem;
    margin-top: auto;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-box {
    background: var(--corp-white);
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--promovil-blue);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--corp-light);
    font-weight: 500;
    font-size: 0.85rem;
}

/* Estilos para La Empresa */
.company-content {
    max-width: 1000px;
    margin: 0 auto;
}

.company-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    background: var(--corp-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(0, 102, 204, 0.1);
    transform: translateX(10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--corp-dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--corp-light);
    line-height: 1.4;
    margin: 0;
    font-size: 0.9rem;
}

.company-values {
    margin: 1.5rem 0;
}

.company-values h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--corp-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.value-item {
    text-align: center;
    padding: 1rem;
    background: var(--corp-bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.value-item:hover {
    background: var(--corp-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.value-item i {
    font-size: 1.5rem;
    color: var(--promovil-blue);
    margin-bottom: 0.5rem;
}

.value-item h4 {
    font-weight: 600;
    color: var(--corp-dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.value-item p {
    font-size: 0.8rem;
    color: var(--corp-light);
    margin: 0;
}

.company-achievements {
    margin: 1.5rem 0;
}

.company-achievements h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--corp-dark);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.achievement-card {
    background: var(--gradient-primary);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-8px) scale(1.05);
}

.achievement-number {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.achievement-text {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}

.company-cta {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--corp-bg-light);
    border-radius: var(--radius-lg);
}

.company-cta h3 {
    margin-bottom: 0.75rem;
    color: var(--corp-dark);
    font-size: 1.3rem;
}

.company-cta p {
    margin-bottom: 1rem;
    color: var(--corp-light);
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Estilos para Planes */
.plans-content {
    max-width: 1200px;
    margin: 0 auto;
}

.plans-header {
    text-align: center;
    margin-bottom: 3rem;
}

.plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.plan-card {
    background: var(--corp-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 3px solid transparent;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Colores específicos para cada plan */
.plan-bronce {
    border-color: #cd7f32;
}

.plan-plata {
    border-color: #c0c0c0;
}

.plan-oro {
    border-color: #ffd700;
}

.plan-platino {
    border-color: #e5e4e2;
}

.plan-default {
    border-color: var(--promovil-blue);
}

.plan-header {
    padding: 1.5rem 1rem;
    text-align: center;
    background: var(--corp-bg-light);
}

.plan-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.plan-bronce .plan-icon {
    background: #cd7f32;
}

.plan-plata .plan-icon {
    background: #c0c0c0;
}

.plan-oro .plan-icon {
    background: #ffd700;
}

.plan-platino .plan-icon {
    background: #e5e4e2;
}

.plan-default .plan-icon {
    background: var(--promovil-blue);
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--corp-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--promovil-blue);
    margin-bottom: 0;
}

.plan-price span {
    font-size: 1rem;
    color: var(--corp-light);
    font-weight: 500;
}

.plan-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--corp-light);
    border-bottom: 1px solid var(--corp-bg-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--promovil-blue);
    font-size: 1.1rem;
}

.plan-footer {
    padding: 1.5rem 2rem 2rem;
}

.btn-plan {
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    width: 100%;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
    text-decoration: none;
}

.plans-info {
    margin-top: 3rem;
}

.info-box {
    background: var(--corp-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-box h3 {
    color: var(--corp-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 0.5rem 0;
    color: var(--corp-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-box li i {
    color: var(--promovil-blue);
}

/* Estilos para Contacto */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--corp-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(0, 102, 204, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.contact-card h3 {
    color: var(--corp-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--corp-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-contact {
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-contact:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.contact-form-section {
    background: var(--corp-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-section h3 {
    color: var(--corp-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--corp-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input {
    padding: 0.875rem;
    border: 2px solid var(--corp-bg-darker);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--corp-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--promovil-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-submit {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

.form-result {
    margin-top: 1rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
}

/* Responsive específico */
@media (max-width: 768px) {
    .tab-content {
        padding: 0.5rem 1rem;
    }
    
    .home-hero {
        padding: 0.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .plans-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .plan-card {
        min-width: 100%;
        max-width: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .contact-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .achievements-grid,
    .values-grid,
    .service-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .features-grid,
    .achievements-grid,
    .values-grid,
    .service-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        gap: 0.75rem;
    }
    
    .hero-logo-large {
        max-width: 200px;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
}

/* Espaciador de sección */
.section-spacer {
    height: 3rem;
}

/* PIE DE PÁGINA COMPACTO */
.corp-footer-compact {
    background: linear-gradient(135deg, var(--corp-dark) 0%, var(--promovil-blue) 100%);
    color: var(--corp-white);
    padding: 1rem 0;
    margin-top: 2rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}



.footer-compact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-brand-compact {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--corp-white);
    margin-bottom: 0.25rem;
}

.footer-legal-compact {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.footer-legal-compact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-compact a:hover {
    color: var(--corp-white);
    text-decoration: underline;
}

.footer-contact-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact-compact span {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-contact-compact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--corp-white);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-contact-compact a:hover {
    background: var(--corp-white);
    color: var(--promovil-blue);
    transform: translateY(-2px);
}

/* Responsive para pie compacto */
@media (max-width: 768px) {
    .footer-compact-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .footer-contact-compact {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-legal-compact {
        font-size: 0.75rem;
    }
}

/* PIE DE PÁGINA */
.corp-footer {
    background: linear-gradient(135deg, var(--corp-dark) 0%, var(--promovil-blue) 100%);
    color: var(--corp-white);
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--corp-white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--corp-white);
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--corp-white);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--corp-white);
    color: var(--promovil-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-legal {
    font-size: 0.8rem !important;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--corp-white);
    text-decoration: underline;
}

/* Responsive para pie de página */
@media (max-width: 768px) {
    .corp-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* SISTEMA DE COOKIES */

/* Banner de cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--corp-dark) 0%, var(--promovil-blue) 100%);
    color: var(--corp-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: none;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--corp-white);
}

.cookie-text h3 i {
    color: #f39c12;
    margin-right: 0.5rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cookie-accept {
    background: #27ae60;
    color: white;
}

.btn-cookie-accept:hover {
    background: #219a52;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: #e74c3c;
    color: white;
}

.btn-cookie-reject:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-cookie-config {
    background: rgba(255, 255, 255, 0.2);
    color: var(--corp-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-config:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Modal de configuración */
.cookie-config-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-config-content {
    background: var(--corp-white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-config-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--corp-bg-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--corp-bg);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.cookie-config-header h2 {
    margin: 0;
    color: var(--corp-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.cookie-config-header h2 i {
    color: #f39c12;
    margin-right: 0.5rem;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--corp-medium);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-close:hover {
    background: var(--corp-bg-light);
    color: var(--corp-dark);
}

.cookie-config-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--corp-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--corp-bg-light);
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--corp-dark);
    font-weight: 600;
}

.cookie-category-info p {
    margin: 0;
    color: var(--corp-medium);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Switch de cookies */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--promovil-blue);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider.essential {
    background-color: #27ae60;
    cursor: not-allowed;
}

input:disabled + .cookie-slider.essential:before {
    transform: translateX(26px);
}

.cookie-config-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--corp-bg-light);
    background: var(--corp-bg);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-config-footer button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cookie-save {
    background: var(--promovil-blue);
    color: white;
}

.btn-cookie-save:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.btn-cookie-accept-all {
    background: #27ae60;
    color: white;
}

.btn-cookie-accept-all:hover {
    background: #219a52;
    transform: translateY(-2px);
}

/* Responsive para cookies */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-buttons button {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .cookie-config-modal {
        padding: 0.5rem;
    }
    
    .cookie-config-footer {
        flex-direction: column;
    }
    
    .cookie-config-footer button {
        width: 100%;
        justify-content: center;
    }
}