/* ============================================
   EL ABRIDOR DE OSTRAS - LUXURY DARK EDITION
   Diseño Profesional Ultra Refinado
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   PALETA DARK LUXURY - NEGRO PURO + TONALIDADES
   ============================================ */
:root {
    /* Tonos Negros con matices sutiles */
    --navy-darkest: #000000;    /* Negro puro */
    --navy-dark: #0A0A0A;       /* Negro profundo */
    --navy-medium: #1A1A1A;     /* Gris muy oscuro */
    --navy-light: #2A2A2A;      /* Gris oscuro */
    
    /* Acentos Plata - contraste sobre negro */
    --silver-dark: #A0A0A0;     /* Gris claro */
    --silver-light: #E0E0E0;    /* Plata clara */
    --silver-accent: #F0F0F0;   /* Plata muy clara */
    
    /* Grises Sofisticados Neutros */
    --gray-darkest: #0D0D0D;    
    --gray-dark: #1A1A1A;       
    --gray-medium: #333333;     
    --gray-light: #666666;      
    --gray-lighter: #999999;    
    
    /* Fondos y Superficies - Tonalidades de negro */
    --bg-darkest: #000000;      /* Negro puro */
    --bg-dark: #080808;         /* Negro casi puro */
    --bg-medium: #0F0F0F;       /* Negro suave */
    --bg-light: #141414;        /* Negro claro */
    --bg-card: #111111;         /* Fondo cards */
    --bg-card-hover: #1A1A1A;   /* Fondo cards hover */
    
    /* Textos - Cristal Frío */
    --text-primary: #E2E8F0;    /* Cristal claro - Texto principal */
    --text-secondary: #CBD5E1;  /* Cristal medio - Texto secundario */
    --text-tertiary: #B0BAC9;   /* Cristal suave - Texto terciario */
    
    /* Blancos elegantes */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    
    /* Tipografía Luxury */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    
    /* Sombras Profesionales con profundidad */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.7), 0 8px 20px rgba(0, 0, 0, 0.5);
    --glow-subtle: 0 0 40px rgba(200, 200, 220, 0.03);
    --glow-medium: 0 0 60px rgba(200, 200, 220, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TIPOGRAFÍA PROFESIONAL - COMPACTA Y ELEGANTE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin: 0;
}

h1 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

h3 {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
}

p {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    line-height: 1.65;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   HEADER - DARK PROFESSIONAL
   ============================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.site-logo,
.custom-logo-link {
    display: flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.site-logo:hover,
.custom-logo-link:hover {
    color: var(--silver-light);
}

.custom-logo {
    height: 30px;
    width: auto;
}

/* Logo imagen dentro del custom-logo-link */
.custom-logo-link img {
    height: 30px;
    width: auto;
    max-height: 30px;
    object-fit: contain;
}

/* Mobile Menu Toggle - Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--silver-light);
    outline-offset: 4px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    pointer-events: none;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Navegación Dark */
.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--silver-light);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FFFFFF;
}

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

/* CTA en navegación */
.nav-cta {
    background: var(--silver-dark);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--silver-light);
    color: var(--navy-darkest) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   HERO - DARK LUXURY ULTRA COMPACTO
   ============================================ */
.hero {
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2.5rem 3rem;
    text-align: center;
    background: #000000;
    position: relative;
    overflow: hidden;
}

/* Halo de luz sutil detrás del contenido hero */
.hero::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(180, 190, 210, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Línea decorativa dorada */
.hero::before {
    content: '';
    position: absolute;
    top: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--silver-dark);
    opacity: 0.6;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(200, 210, 230, 0.1);
}

.hero-tagline {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--font-sans);
    font-style: normal;
    letter-spacing: 0;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

/* Colaboradores - Carrusel de Logos Infinito */
.colaboradores-hero {
    margin-top: 3.5rem;
    opacity: 1;
    overflow: hidden;
    padding: 1.5rem 0;
}

.collaborators-label {
    font-size: 0.625rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1.25rem;
    font-weight: 400;
    font-family: var(--font-sans);
    text-align: center;
    display: block;
}

/* Línea decorativa fina */
.collaborators-label::before,
.collaborators-label::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 210, 230, 0.2), transparent);
    vertical-align: middle;
    margin: 0 0.75rem;
}

.collaborators-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Degradados laterales para fundido elegante */
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollInfinite 45s linear infinite;
    width: fit-content;
    align-items: center;
}

/* Pausa la animación al hover */
.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 60px;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: all 0.4s ease;
}

.carousel-logo:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Estilos para imágenes dentro del logo */
.carousel-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: grayscale(30%) brightness(1.1);
    transition: all 0.4s ease;
}

.carousel-logo:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* Placeholder de texto (cuando no hay imagen) */
.carousel-logo .logo-placeholder {
    font-size: 0.6875rem;
    color: var(--text-tertiary);
    text-align: center;
    font-weight: 500;
    font-family: var(--font-sans);
    white-space: nowrap;
}

/* Animación de scroll infinito suave */
@keyframes scrollInfinite {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(-50%); 
    }
}

/* ============================================
   BOTONES DARK LUXURY - PROFESIONALES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-family: var(--font-sans);
    border: none;
    letter-spacing: 0.02em;
}

/* CTA Principal - Plata Elegante */
.btn-primary {
    background: var(--silver-dark);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--silver-light);
    color: var(--navy-darkest);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 0 25px rgba(200, 210, 230, 0.1);
}

/* Botón secundario - Borde elegante */
.btn-outline {
    background: transparent;
    color: var(--silver-light);
    border: 1.5px solid var(--silver-dark);
}

.btn-outline:hover {
    background: var(--silver-dark);
    color: var(--white);
    border-color: var(--silver-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   SECCIONES - COMPACTAS Y PROFESIONALES
   ============================================ */
section {
    padding: 3.5rem 2.5rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--silver-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
}

.section-title {
    margin-bottom: 0.875rem;
    font-weight: 400;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(200, 210, 230, 0.08);
}

.section-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   SERVICIOS - DARK PROFESSIONAL COMPACTO
   ============================================ */
.servicios {
    background: #0A0A0A;
    background-image: radial-gradient(ellipse at 20% 50%, rgba(150, 160, 180, 0.03) 0%, transparent 50%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.service-card {
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.9), rgba(15, 15, 18, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glow-subtle);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(180, 190, 210, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(145deg, rgba(28, 28, 35, 0.95), rgba(20, 20, 25, 0.98));
}

.service-image {
    width: 100%;
    height: 200px;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.85;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
    opacity: 1;
}

.service-content {
    padding: 1.5rem 1.25rem;
}

.service-tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--silver-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-family: var(--font-display);
    line-height: 1.25;
}

.service-card p {
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--silver-light);
    text-decoration: none;
    transition: gap 0.3s ease;
    letter-spacing: 0.02em;
}

.service-link:hover {
    gap: 0.625rem;
    color: var(--white);
}

/* ============================================
   PROCESO - DARK COMPACTO
   ============================================ */
.proceso {
    background: #050505;
    background-image: radial-gradient(ellipse at 80% 50%, rgba(150, 160, 180, 0.03) 0%, transparent 50%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(160deg, rgba(18, 18, 22, 0.9), rgba(12, 12, 15, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: var(--glow-subtle);
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 210, 230, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(180, 190, 210, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(160deg, rgba(26, 26, 32, 0.95), rgba(18, 18, 22, 0.98));
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--silver-dark) 0%, var(--silver-light) 100%);
    color: var(--navy-darkest);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-sans);
    box-shadow: var(--shadow-md), 0 0 20px rgba(180, 190, 210, 0.12);
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 500;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   SOBRE NOSOTROS - DARK PROFESSIONAL
   ============================================ */
.sobre-nosotros {
    background: #0D0D0D;
    background-image: radial-gradient(ellipse at 30% 60%, rgba(150, 160, 180, 0.025) 0%, transparent 50%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3.5rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 1.25rem;
}

.about-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.about-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(150deg, rgba(18, 18, 22, 0.9), rgba(12, 12, 15, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-subtle);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 25px rgba(180, 190, 210, 0.05);
    background: linear-gradient(150deg, rgba(26, 26, 32, 0.95), rgba(18, 18, 22, 0.98));
    border-color: rgba(255, 255, 255, 0.14);
}

.trust-item strong {
    display: block;
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--silver-light);
    margin-bottom: 0.375rem;
    font-family: var(--font-sans);
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(200, 210, 230, 0.15);
}

.trust-item span {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.about-image {
    background: var(--navy-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.4);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
}

.placeholder-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.placeholder-icon::before {
    content: '◆';
}

/* ============================================
   CTA - DARK LUXURY IMPACTANTE
   ============================================ */
.cta {
    background: linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #181818 100%);
    color: var(--white);
    text-align: center;
    padding: 4.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(180, 190, 220, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(148,163,184,0.08)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-family: var(--font-display);
    text-shadow: 0 0 40px rgba(200, 210, 230, 0.12);
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.cta .btn-primary {
    background: var(--silver-dark);
    color: var(--white);
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.cta .btn-primary:hover {
    background: var(--silver-light);
    color: var(--navy-darkest);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(200, 210, 230, 0.12);
}

/* ============================================
   L'ATELIER - DARK PROFESSIONAL
   ============================================ */
.latelier {
    background: #0A0A0A;
}

.atelier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3.5rem;
    align-items: center;
}

.atelier-image {
    background: var(--navy-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    aspect-ratio: 4/3;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.atelier-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.atelier-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
}

.atelier-intro {
    font-size: 1.125rem;
    color: var (--text-secondary);
    margin-bottom: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
}

.atelier-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.atelier-features {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: var(--silver-dark);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.feature-icon::before {
    content: '✓';
    font-size: 1.125rem;
}

.feature-item h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-weight: 600;
    font-family: var(--font-display);
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   CONTACTO - DARK PROFESSIONAL
   ============================================ */
.contacto {
    background: #050505;
    background-image: radial-gradient(ellipse at 50% 30%, rgba(150, 160, 180, 0.025) 0%, transparent 50%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-wrapper {
    max-width: 620px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(18, 18, 24, 0.95), rgba(10, 10, 14, 0.98));
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 210, 230, 0.2), transparent);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    font-weight: 500;
    color: #D4DAE4;
    background: rgba(30, 41, 59, 0.6);
    border: 1.5px solid rgba(148, 163, 184, 0.25);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Placeholder más visible */
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: #8B92A1;
    opacity: 0.8;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--silver-light);
    background: rgba(51, 65, 85, 0.8);
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.12), 0 0 20px rgba(148, 163, 184, 0.06);
    color: #D4DAE4;
}

/* Asegurar que el texto seleccionado sea visible */
.form-group input::selection,
.form-group textarea::selection,
.form-group select::selection {
    background: rgba(148, 163, 184, 0.4);
    color: #E8EDF5;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    background: var(--silver-dark);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    box-shadow: var(--shadow-md);
    letter-spacing: 0.02em;
}

.btn-submit:hover {
    background: var(--silver-light);
    color: var(--navy-darkest);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(200, 210, 230, 0.1);
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.75rem;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-benefit::before {
    content: '✓';
    color: var(--silver-light);
    font-weight: 600;
    font-size: 1rem;
}

/* ============================================
   FOOTER - DARK PROFESSIONAL
   ============================================ */
footer,
.site-footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.8);
    padding: 3.5rem 2.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

footer::before,
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 210, 230, 0.12), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 2.5rem;
}

.footer-about h3,
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 500;
}

/* Logo en footer con mismo estilo que header */
.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-logo .custom-logo-link img,
.footer-logo .custom-logo {
    height: 30px;
    width: auto;
    max-height: 30px;
}

.footer-logo .site-logo {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    color: var(--white);
    text-decoration: none;
}

.footer-about h3 {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.footer-about p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-family: var(--font-sans);
}

.footer-menu,
.contact-info {
    list-style: none;
}

.footer-menu li,
.contact-info li {
    margin-bottom: 0.625rem;
}

.footer-menu a,
.contact-info a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu a:hover,
.contact-info a:hover {
    color: var(--silver-light);
}

.contact-info li {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   RESPONSIVE - DARK PROFESSIONAL
   ============================================ */

/* Tablet y Móvil - Menú Hamburguesa */
@media (max-width: 1024px) {
    /* Mobile Menu Toggle visible */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Navigation mobile overlay */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: var(--navy-darkest);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 4rem 2.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        border-left: 1px solid rgba(148, 163, 184, 0.15);
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1rem;
        color: var(--text-secondary);
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        color: var(--white);
        padding-left: 0.5rem;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        margin-top: 1rem;
    }
    
    /* Mobile overlay backdrop */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 968px) {
    .header-wrapper {
        padding: 0 1.75rem;
    }
    
    .hero {
        padding: 7rem 1.75rem 2.5rem;
        min-height: 60vh;
    }
    
    section {
        padding: 3rem 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .about-grid,
    .atelier-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-trust-badges {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 0.625rem;
        text-align: center;
    }
    
    .contact-wrapper {
        padding: 2.25rem 1.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.75rem;
        line-height: 1.15;
    }
    
    h2 {
        font-size: 1.375rem;
    }
    
    .btn {
        padding: 0.625rem 1.375rem;
        font-size: 0.8125rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .hero {
        padding: 6.5rem 1.5rem 2rem;
    }
    
    section {
        padding: 2.5rem 1.5rem;
    }
    
    /* Carousel móvil - más compacto */
    .colaboradores-hero {
        margin-top: 2.5rem;
        padding: 1rem 0;
    }
    
    .collaborators-label {
        font-size: 0.5625rem;
        margin-bottom: 1rem;
    }
    
    .collaborators-label::before,
    .collaborators-label::after {
        width: 25px;
        margin: 0 0.5rem;
    }
    
    .carousel-track {
        gap: 1rem;
    }
    
    .carousel-logo {
        width: 100px;
        height: 48px;
        padding: 0.35rem 0.5rem;
    }
}

/* ============================================
   ACCESIBILIDAD
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   PÁGINAS INTERIORES - DARK LUXURY
   ============================================ */
.page-main {
    min-height: 100vh;
    background: var(--navy-darkest);
}

/* Hero de página interior */
.page-hero {
    padding: 10rem 2rem 3rem;
    background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.3), transparent);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.page-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--text-tertiary);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.post-meta {
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contenido de página */
.page-content {
    padding: 4rem 2rem 6rem;
    background: var(--navy-darkest);
}

.page-content > .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Entry Content - Estilos para el contenido del editor de WordPress */
.entry-content {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.entry-content > *:first-child {
    margin-top: 0;
}

/* Headings en contenido */
.entry-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--text-primary);
    margin: 3rem 0 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.entry-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    margin: 2.5rem 0 1.25rem;
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.2;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.08);
}

.entry-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-weight: 500;
    line-height: 1.25;
}

.entry-content h4 {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-primary);
    margin: 1.75rem 0 0.75rem;
    font-weight: 500;
    line-height: 1.3;
}

.entry-content h5,
.entry-content h6 {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Párrafos */
.entry-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Links */
.entry-content a {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: rgba(226, 232, 240, 0.3);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.entry-content a:hover {
    color: var(--white);
    text-decoration-color: var(--white);
}

/* Imágenes */
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    display: block;
}

.entry-content .wp-block-image {
    margin: 2.5rem 0;
}

.entry-content .wp-block-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.entry-content .wp-block-image figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Imágenes alineadas */
.entry-content .alignleft {
    float: left;
    margin: 0.5rem 2rem 1.5rem 0;
    max-width: 50%;
}

.entry-content .alignright {
    float: right;
    margin: 0.5rem 0 1.5rem 2rem;
    max-width: 50%;
}

.entry-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.entry-content .alignwide {
    margin-left: -2rem;
    margin-right: -2rem;
    max-width: calc(100% + 4rem);
    width: calc(100% + 4rem);
}

.entry-content .alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: 100vw;
}

/* Listas */
.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 1.75rem;
    color: var(--text-secondary);
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.entry-content ul li::marker {
    color: var(--text-tertiary);
}

.entry-content ol li::marker {
    color: var(--text-tertiary);
    font-weight: 600;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
    margin: 0.5rem 0;
}

/* Blockquote */
.entry-content blockquote {
    margin: 2.5rem 0;
    padding: 1.75rem 2rem;
    border-left: 3px solid rgba(226, 232, 240, 0.2);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 12px 12px 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
}

.entry-content blockquote p {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-content blockquote cite {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-style: normal;
    color: var(--text-tertiary);
    margin-top: 0.75rem;
}

/* Tablas */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.entry-content th {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(226, 232, 240, 0.1);
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.entry-content td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.06);
    color: var(--text-secondary);
}

.entry-content tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Código */
.entry-content code {
    background: rgba(255, 255, 255, 0.06);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--text-primary);
    font-family: 'SF Mono', Menlo, monospace;
}

.entry-content pre {
    background: rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid rgba(226, 232, 240, 0.06);
}

.entry-content pre code {
    background: none;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Separador HR */
.entry-content hr,
.entry-content .wp-block-separator {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.15), transparent);
    margin: 3rem 0;
}

/* Videos y embeds */
.entry-content iframe,
.entry-content .wp-block-embed {
    max-width: 100%;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.entry-content .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.entry-content .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Botones de WordPress */
.entry-content .wp-block-button__link,
.entry-content .wp-block-button a {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--white);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.entry-content .wp-block-button__link:hover,
.entry-content .wp-block-button a:hover {
    background: var(--text-primary);
    color: #000;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.entry-content .wp-block-buttons {
    margin: 2rem 0;
}

/* Columnas de WordPress */
.entry-content .wp-block-columns {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.entry-content .wp-block-column {
    flex: 1;
}

/* Galería */
.entry-content .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.entry-content .wp-block-gallery img {
    border-radius: 10px;
    margin: 0;
    width: 100%;
    object-fit: cover;
}

/* Cover block */
.entry-content .wp-block-cover {
    border-radius: 12px;
    overflow: hidden;
    margin: 2.5rem 0;
    min-height: 350px;
}

/* Group block */
.entry-content .wp-block-group {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.06);
}

/* Post featured image */
.post-featured-image {
    margin-bottom: 2.5rem;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   POSTS GRID (Archive)
   ============================================ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.post-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(226, 232, 240, 0.12);
    box-shadow: var(--shadow-lg);
}

.post-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.post-card-content {
    padding: 1.5rem;
}

.post-card-content time {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-sans);
}

.post-card-content h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0.5rem 0;
    line-height: 1.3;
}

.post-card-content h2 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-content h2 a:hover {
    color: var(--white);
}

.post-card-content p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin: 0.5rem 0 1rem;
    line-height: 1.6;
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.08);
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.pagination .page-numbers.current {
    background: var(--white);
    color: #000;
    font-weight: 600;
    border-color: var(--white);
}

/* ============================================
   INNER PAGES - RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .page-hero {
        padding: 8rem 1.5rem 2.5rem;
    }

    .page-content {
        padding: 3rem 1.5rem 5rem;
    }

    .entry-content .alignleft,
    .entry-content .alignright {
        float: none;
        max-width: 100%;
        margin: 1.5rem 0;
    }

    .entry-content .wp-block-columns {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .page-hero {
        padding: 7rem 1rem 2rem;
    }

    .page-content {
        padding: 2rem 1rem 4rem;
    }

    .entry-content {
        font-size: 1rem;
    }

    .entry-content blockquote {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }

    .entry-content .alignwide {
        margin-left: -1rem;
        margin-right: -1rem;
        max-width: calc(100% + 2rem);
        width: calc(100% + 2rem);
    }

    .entry-content .wp-block-gallery {
        grid-template-columns: 1fr 1fr;
    }
}
