/*
Theme Name: Cajas Fuertes Levante
Theme URI: https://cajasfuerteslevante.com
Author: Cajas Fuertes Levante
Author URI: https://cajasfuerteslevante.com
Description: Tema profesional para servicios de cajas fuertes en Valencia
Version: 14.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cajas-fuertes-levante
*/

/* ==========================================
   RESET Y VARIABLES
   ========================================== */

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

:root {
    /* Colores principales */
    --color-primary: #0a2540;
    --color-secondary: #d4af37;
    --color-accent: #1e5a8e;
    
    /* Colores de fondo */
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-dark: #0a2540;
    
    /* Colores de texto */
    --color-text: #2c3e50;
    --color-text-light: #6c757d;
    --color-text-white: #ffffff;
    
    /* Tipografía */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    
    /* Bordes */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==========================================
   HEADER MODERNO
   ========================================== */

.site-header-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header-container-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-logo-modern .logo-link-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
}

.header-logo-modern svg {
    width: 32px;
    height: 32px;
    color: var(--color-secondary);
}

.logo-text-modern {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-modern strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-text-modern small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.main-navigation-modern {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu-modern {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu-modern li a {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-menu-modern li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-menu-modern li a:hover {
    color: var(--color-secondary);
}

.nav-menu-modern li a:hover::after {
    width: 100%;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.menu-toggle-modern {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle-modern span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-modern {
    display: none;
}

/* ==========================================
   HERO MODERNO
   ========================================== */

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a2540 0%, #1e5a8e 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 90, 142, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--spacing-xl) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-secondary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
}

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

.hero-image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 500px;
    opacity: 0.9;
    position: relative;
}

.hero-image-placeholder canvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.2));
}

.hero-image-placeholder canvas:active {
    cursor: grabbing;
}

.hero-image-placeholder svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ==========================================
   SECCIONES MODERNAS
   ========================================== */

.services-modern,
.types-section-modern {
    padding: var(--spacing-xl) 0;
}

.brands-section-modern {
    padding: var(--spacing-xl) 0;
    background: #0a0a0a;
}

.section-header-modern {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.brands-section-modern .section-header-modern h2,
.brands-section-modern .section-tag {
    color: #ffffff;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-secondary);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.section-header-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

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

/* ==========================================
   SERVICIOS GRID
   ========================================== */

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

.service-card-modern {
    position: relative;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-card-modern.featured {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    border: none;
}

.service-card-modern.featured h3,
.service-card-modern.featured p {
    color: white;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.service-icon-modern {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.service-card-modern.featured .service-icon-modern {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon-modern svg {
    color: var(--color-secondary);
}

.service-card-modern.featured .service-icon-modern svg {
    color: white;
}

.service-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card-modern p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.service-card-modern.featured .service-link-modern {
    color: white;
}

.service-link-modern:hover {
    gap: 0.75rem;
}

/* ==========================================
   TIPOS GRID
   ========================================== */

.types-section-modern {
    background: var(--color-bg-light);
}

.types-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.type-card-modern {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-secondary);
}

.type-card-modern:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.type-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.type-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.type-card-modern p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ==========================================
   MARCAS GRID
   ========================================== */

/* Grid Premium de Marcas - Estilo Cristiano Ronaldo / Messi */
.brands-grid-premium {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem 2rem;
    padding: 3rem 2rem;
}

.brand-logo-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 2rem;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Imágenes de logos (ya convertidas a blanco) */
.brand-logo-premium img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo-premium:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Marcas solo con texto (sin logo) */
.brand-logo-premium.brand-text-only span {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.brand-logo-premium.brand-text-only:hover span {
    color: rgba(255, 255, 255, 0.95);
}

/* Efecto de brillo en hover */
.brand-logo-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
}

.brand-logo-premium:hover::before {
    left: 100%;
}

/* Borde dorado en hover */
.brand-logo-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 2px;
    background: linear-gradient(135deg, 
        var(--color-secondary), 
        transparent, 
        var(--color-secondary)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brand-logo-premium:hover {
    background: rgba(212, 175, 55, 0.08);
}

.brand-logo-premium:hover::after {
    opacity: 1;
}



/* ==========================================
   CTA FINAL
   ========================================== */

.cta-final-modern {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
}

.cta-content-modern {
    text-align: center;
}

.cta-content-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.cta-content-modern p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

/* Mostrar/ocultar texto del botón según dispositivo */
.btn-text-mobile {
    display: none;
}

@media (max-width: 768px) {
    .btn-text-desktop {
        display: none;
    }
    
    .btn-text-mobile {
        display: inline;
    }
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.cta-center {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-section h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   WHATSAPP BUTTON
   ========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* ==========================================
   PÁGINAS INTERNAS
   ========================================== */

.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.page-content {
    padding: var(--spacing-xl) 0;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .brands-grid-premium {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .brands-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 1rem;
    }
    
    .brand-logo-premium {
        height: 80px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .brands-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
    }
    
    .brand-logo-premium {
        height: 70px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.5rem;
    }
    
    .brand-logo-premium img {
        margin: 0 auto;
    }
}
    
    .main-navigation-modern,
    .header-cta-modern {
        display: none;
    }
    
    .menu-toggle-modern {
        display: flex;
    }
    
    .mobile-menu-modern {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .mobile-menu-modern.active {
        right: 0;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-title {
        font-family: var(--font-primary);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--color-primary);
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .mobile-nav-menu {
        list-style: none;
        padding: 1rem 0;
    }
    
    .mobile-nav-menu li a {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--color-text);
        font-family: var(--font-primary);
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-menu li a:hover {
        background: var(--color-bg-light);
        color: var(--color-secondary);
    }
    
    .mobile-menu-cta {
        padding: 1.5rem;
    }
    
    .btn-mobile-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 1rem;
        background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
        color: white;
        font-family: var(--font-primary);
        font-weight: 600;
        border-radius: var(--radius-lg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-header-modern h2 {
        font-size: 2rem;
    }
    
    .cta-content-modern h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}


/* ==========================================
   PÁGINAS INTERNAS
   ========================================== */

.page-hero-internal {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
}

.page-hero-internal h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.page-content-internal {
    padding: 4rem 0;
    background: #f8f9fa;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.main-content {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.main-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-secondary);
}

.main-content h2:first-child {
    margin-top: 0;
}

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

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

.cta-box {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-top: 4px solid var(--color-secondary);
}

.cta-box h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.btn-cta-sidebar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-cta-sidebar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.services-list-box {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.services-list-box h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.services-list-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list-box li {
    margin-bottom: 0.75rem;
}

.services-list-box a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.services-list-box a:hover {
    background: #f8f9fa;
    border-left-color: var(--color-secondary);
    padding-left: 1.5rem;
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar-content {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .page-hero-internal {
        padding: 4rem 0 3rem;
    }
    
    .page-hero-internal h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 2rem 1.5rem;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    .sidebar-content {
        flex-direction: column;
    }
}

/* Footer mejorado */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col-about {
    grid-column: span 1;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d4af37;
    font-size: 0.9rem;
}

.badge-item svg {
    flex-shrink: 0;
}

.footer-col-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-col-contact .contact-item svg {
    flex-shrink: 0;
    color: #d4af37;
    margin-top: 0.25rem;
}

.footer-col-contact .contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-col-contact .contact-item strong {
    font-size: 0.9rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col-contact .contact-item a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col-contact .contact-item a:hover {
    color: #d4af37;
}

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

.footer-tagline {
    color: #d4af37;
    font-size: 0.9rem;
    font-style: italic;
}

/* Marcas detalladas */
.brands-grid-detailed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.brand-card-detailed {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.brand-card-detailed:hover {
    border-color: #d4af37;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.brand-card-detailed h3 {
    color: #0a2540;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.brand-card-detailed p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .brands-grid-detailed {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brands-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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