/* /css/style.css - Versión Completa Restaurada y Corregida */

:root {
    /* Paleta de colores principal */
    --primary-color: #000;
    --primary-hover-color: #3454b4;

    /* --- PALETA TEMA CLARO --- */
    --background-color: #fff;
    --card-background-color: #FFFFFF;
    --text-color: #555e6f;
    --heading-color: #000;
    --border-color: #E0E0E0;
    
    /* Tipografía */
    --font-family: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 70px; /* Espacio para el header fijo */
	font-size: 14px !important;
}

/* Estilo global de container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HEADER ENCAPSULADO (Full Width)
   ========================================= */

.main-header {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none; 
    background-color: #ffffff;
    border-bottom: 1px solid #f1f1f1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
    min-height: 60px;
}

/* Ajuste para ancho total */
.main-header .container,
.main-header .container-fluid {
    width: 100% !important;
    max-width: none !important;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.main-header .logo {
    font-weight: 700;
    font-size: 35px;
    color: var(--heading-color);
    text-decoration: none;
    line-height: 1;
    letter-spacing: -1px;
}

.main-header .main-nav {
    display: flex;
    gap: 10px;
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-header .main-nav a.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    background: transparent;
    border: none;
    display: inline-block;
}

.main-header .main-nav a.nav-link:hover,
.main-header .main-nav a.nav-link.active {
    color: var(--primary-color);
    background: #f1f1f1;
}

.main-header .header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Botones específicos dentro del Header */
.main-header .btn {
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    line-height: 1.5;
}

.main-header .btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.main-header .btn-primary:hover {
    background-color: var(--primary-hover-color);
}

.main-header .btn-secondary {
    background-color: var(--card-background-color);
    color: var(--heading-color);
    border: 1px solid var(--border-color);
}

.main-header .btn-secondary:hover {
    background-color: #f0f0f0;
}

.main-header .btn-outline-danger {
    background-color: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.main-header .btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
}

/* Botón Hamburguesa (Móvil) */
.main-header .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    margin-left: 15px;
}

.main-header .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-header .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.main-header .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.main-header .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.main-header .mobile-actions { display: none; }

/* =========================================
   ESTILOS GLOBALES
   ========================================= */

/* Botones genéricos */


.btn-google {
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    border: 1px solid #ccc;
    color: #333;
}
.btn-google:hover { background-color: #f1f1f1; }

.btn-primary { background-color: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.btn-primary:hover { background-color: var(--primary-hover-color); border-color: var(--primary-hover-color); }

.btn-secondary { background-color: var(--card-background-color); color: var(--heading-color); border: 1px solid var(--border-color); }
.btn-secondary:hover { background-color: #ddd; }

.btn-outline { 
    background-color: transparent; 
    color: var(--heading-color); 
    border: 1px solid var(--border-color); 
}
.btn-outline:hover { 
    background-color: var(--primary-color); 
    border-color: var(--primary-color); 
    color: #fff; 
}

.btn-lg { padding: 10px 20px; font-size: 16px; }

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-color: #f8f9fa;
}

.hero h1 { 
    font-size: 40px; 
    line-height: 1.2; 
    color: var(--heading-color); 
    max-width: 800px; 
    
    /* CORRECCIÓN: Centrado y Negrita */
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
    font-weight: 700 !important; 
}

.hero p { 
    font-size: large; 
    max-width: 800px; 
    
    /* CORRECCIÓN: Centrado */
    margin: 0 auto 40px auto; 
    
    color: var(--text-color); 
}

.hero-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* Features Section */
.features-section { padding: 100px 0; background-color: var(--background-color); }

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

.section-header h2 { 
    font-size: 45px; 
    color: var(--heading-color); 
    margin-bottom: 10px;
    /* CORRECCIÓN: Negrita */
    font-weight: 700 !important; 
    line-height: 1.2;
}

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

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

.feature-card { 
    background-color: var(--card-background-color); 
    padding: 40px; 
    border-radius: 12px; 
    border: 1px solid var(--border-color); 
}


.feature-icon { margin-bottom: 20px; color: var(--primary-color); }
.feature-icon svg { width: 40px; height: 40px; }

.feature-card h3 { 
    font-size: 1.5rem; 
    color: var(--heading-color); 
    margin-bottom: 15px; 
    /* CORRECCIÓN: Negrita */
    font-weight: 700 !important;
}

.feature-card p { color: var(--text-color); }

/* Footer */
.main-footer { padding: 60px 0; background-color: var(--card-background-color); border-top: 1px solid var(--border-color); }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-about .logo { margin-bottom: 15px; display: block; }
.footer-about p { color: var(--text-color); }
.footer-links h4 { color: var(--heading-color); margin-bottom: 15px; font-weight: 700; }
.footer-links a { display: block; color: var(--text-color); text-decoration: none; margin-bottom: 10px; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--primary-color); }

/* Animations */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================
   ESTILOS DE USUARIO Y AVATAR (RESTAURADOS)
   ========================================= */

.user-menu-container {
    display: flex;
    align-items: center;
}

.user-profile-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--heading-color);
    gap: 10px;
    cursor: pointer;
}

.user-profile-link:hover {
    opacity: 0.8;
}

/* ESTILO DEL AVATAR PEQUEÑO (HEADER) */
.header-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    background-color: #f0f0f0;
    display: block;
}

.username-text {
    font-weight: 600;
    font-size: 14px;
}

/* ESTILOS MÓVIL USUARIO */
.mobile-user-profile {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.header-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    margin-bottom: 10px;
}

.mobile-username {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--heading-color);
}

/* Botón de créditos en header */
.main-header .btn-outline-secondary {
    border-color: var(--border-color);
    color: var(--text-color);
    transition: all 0.2s ease;
}

.main-header .btn-outline-secondary:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
    transform: translateY(-1px);
}

/* Dropdown del Avatar */
.main-header .dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-header .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    color: var(--text-color);
}

.main-header .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.main-header .dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.main-header .dropdown-header {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px;
}

/* =========================================
   ESTILOS ESPECÍFICOS PARA PRICING
   ========================================= */

/* Sección de Calculadora */
.calculator-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.calc-card {
    background-color: var(--card-background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
}

.calc-result-box {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calc-result-box h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 10px 0;
    color: #fff;
    line-height: 1;
}

.calc-result-box small {
    opacity: 0.8;
    font-weight: 400;
}

/* Tarjetas de Precios (Heredan estética de feature-card) */
.pricing-card {
    background-color: var(--card-background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
    background-color: #fff;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin: 10px 0;
    line-height: 1;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 400;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
}

.pricing-features-list i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
    font-size: 0.8rem;
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Acordeón FAQ (Estilo limpio) */
.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.03);
    box-shadow: none;
    font-weight: 700;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}
.accordion-button {
    font-weight: 600;
    color: var(--heading-color);
}

/* =========================================
   ESTILOS DEL MENÚ MÓVIL (TIPO CAJÓN / DRAWER)
   ========================================= */

/* El contenedor del menú móvil (Oculto por defecto en escritorio mediante JS/HTML classes) */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px; /* Oculto a la derecha */
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0; /* Mostrar */
}

/* Cabecera del usuario en móvil */
.mobile-menu-header {
    padding: 20px;
}

.mobile-user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-user-info-text {
    display: flex;
    flex-direction: column;
}

.mobile-username {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
}

.mobile-credits {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

/* Enlaces del menú móvil */
.mobile-drawer .nav-link {
    font-size: 0.9rem;
    padding: 12px 25px;
    color: var(--text-color);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    display: block;
	font-weight: 500;
	border-top: 1px solid #f1f1f1;
}

.mobile-drawer .nav-link:hover,
.mobile-drawer .nav-link.active {
    background-color: #f8f9fa;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Acciones (Botones) al final del menú móvil */
.mobile-drawer .mobile-actions {
    margin-top: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
}

/* Overlay Oscuro */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

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

/* AJUSTES RESPONSIVE GENERALES */
@media (max-width: 991.98px) {
    .main-header .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        padding: 0;
        z-index: 1100;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: #333;
        border-radius: 3px;
        transition: all 0.3s;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* =========================================
   ESTILOS PÁGINA DEMO (Full Screen Layout)
   ========================================= */

body.demo-page {
    overflow: hidden;
}

.demo-container {
    display: flex;
    height: calc(100vh - 60px); /* Altura total menos header */
    width: 100%;
}

/* Sidebar Izquierdo */
.demo-sidebar {
    width: 320px;
    background-color: #fff;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    z-index: 10;
}

.demo-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    background-color: #fff;
}

.demo-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
}

/* Items de la lista */
.demo-item {
    display: flex;
    align-items: center;
    padding: 5px;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #dbdfe9;
    background: #f8f9fa00;
}

.demo-item:hover {
    background-color: #f8f9fa;
}

.demo-item.active {
    background-color: #eee;
    border-color: #dbdfe9;
}

.demo-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    background-color: #eee;
}

.demo-info {
    flex-grow: 1;
    overflow: hidden;
}

.demo-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--heading-color);
}

.demo-author {
    font-size: 0.75rem;
    color: #999;
}

/* Visor Principal */
.demo-viewer {
    flex-grow: 1;
    background-color: #000;
    position: relative;
    width: 100%; /* Asegura que ocupe el espacio restante */
}

/* Estilos para el iframe generado por loader.js */
.demo-viewer iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
}

/* Responsive para Demo */
@media (max-width: 991.98px) {
    .demo-container {
        flex-direction: column;
        height: calc(100vh - 60px);
    }
    
    /* OCULTAR SIDEBAR EN MÓVIL */
    .demo-sidebar {
        display: none !important;
    }
    
    /* Visor ocupa todo el alto disponible */
    .demo-viewer {
        height: 100%;
        width: 100%;
    }
	
.section-header h2 {
    font-size: 35px;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 700 !important;
    line-height: 1.2;
}

    /* Ocultar la barra de navegación completa */
    body.auth-page .main-header {
        display: none !important;
    }

    /* Eliminar el padding-top que compensa el header fijo,
       para que no quede un espacio blanco arriba */
    body.auth-page {
        padding-top: 0 !important;
    }

    /* Opcional: Ajustar el margen superior del contenedor 
       para que no quede pegado al borde superior de la pantalla */
    body.auth-page .container {
        margin-top: 40px !important;
    }
	
	
}

/* =========================================
   ESTILOS PÁGINA ABOUT (Estilo Case Study)
   ========================================= */

/* Hero Gigante */
.case-study-hero {
    position: relative;
    height: 600px;
    background-color: #111;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.case-study-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* Oscurecer imagen */
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

/* Barra inferior del Hero */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 2;
}

.hero-tag {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    color: #fff;
}

/* Layout Principal (Sidebar + Contenido) */
.case-study-layout {
    display: flex;
    gap: 60px;
}

/* Sidebar Pegajoso (Sticky) */
.case-study-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.sticky-menu-box {
    position: sticky;
    top: 100px; /* Se queda fijo al hacer scroll */
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
}

.sticky-menu-header {
    display: flex;
    justify-content: space-between;
    color: #6b7280;

    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.sticky-menu-link {
    display: block;
    padding: 8px 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Contenido */
.case-study-content {
    flex-grow: 1;
    max-width: 100%;
}

.content-section {
    margin-bottom: 80px;
    scroll-margin-top: 100px; /* Para que el header no tape el título al hacer click */
}

.custom-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #111;
}

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

.info-item h4 {
    color: #6b7280;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    font-weight: 600;
    color: #111;
    margin: 0;
}

/* Badge pequeño */
.badge-custom {
    border: 1px solid #e5e7eb;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    color: #374151;
    background: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .case-study-layout {
        flex-direction: column;
    }
    .case-study-sidebar {
        width: 100%;
        display: none; /* Ocultamos el sidebar en móvil para simplificar */
    }
    .case-study-hero {
        height: 400px;
    }
    .custom-section-title {
        font-size: 2rem;
    }
	
.hero h1 { 
    font-size: 25px; 
    line-height: 1.2; 
    color: var(--heading-color); 
    max-width: 800px; 
    
    /* CORRECCIÓN: Centrado y Negrita */
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
    font-weight: 700 !important; 
}

.app-header-menu .menu>.menu-item>.menu-link>.menu-title {
    font-weight: 600;
    font-size: 1.3rem;
}

.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    z-index: 2;
	font-size: 12px;
}

    .section-header h2 {
        font-size: 25px;
        color: var(--heading-color);
        margin-bottom: 10px;
        font-weight: 700 !important;
        line-height: 1.2;
    }

.hero p { 
    font-size: medium; 
    max-width: 800px; 
    
    /* CORRECCIÓN: Centrado */
    margin: 0 auto 40px auto; 
    
    color: var(--text-color); 
}
	
	
}

        /* Estilos específicos para contacto, heredando la estética de About */
        .contact-info-card {
            padding: 2rem;
            border: 1px solid #eee;
            border-radius: 12px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #fff;
        }
        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .feature-icon-box {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

.app-header .app-container {
    background-color: #ffffff !important; /* Usamos !important para asegurar la anulación del framework */
    border-bottom: 1px solid #dedede !important;
}