/* --- RESET & BASICS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- CLASES DE UTILIDAD --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-full {
    width: 100%;
    margin: 0;
    padding: 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
    background: rgba(255,255,255,0.95); /* Fondo blanco sutil para asegurar lectura */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: padding 0.4s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    position: relative;
}

/* Efecto hover dorado elegante */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #C5A059;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* --- HERO --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax sutil */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2); /* Oscurecer ligeramente para leer texto */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background-color: white;
}

/* --- INTRO --- */
.intro {
    padding: 120px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.intro-text p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
}

.intro-image img {
    /* Filtro leve de escala de grises para elegancia */
    filter: grayscale(20%); 
    transition: filter 0.5s;
}

.intro-image:hover img {
    filter: grayscale(0%);
}

/* --- DUAL PATH SECTION (CORE REQUEST) --- */
.dual-path {
    display: flex;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.path-block {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    transition: flex 0.6s ease;
    cursor: pointer;
    border-right: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.path-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* Capa oscura sobre las imágenes */
.path-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
    transition: background 0.6s ease;
}

.path-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    max-width: 500px;
}

.path-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-style: italic;
}

.path-content .sub-detail {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
}

.btn-line {
    display: inline-block;
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Efectos Hover Interactivas */
.path-block:hover {
    flex: 1.5; /* Se expande */
}

.path-block:hover .path-bg {
    transform: scale(1.05); /* Zoom sutil */
}

.path-block:hover::before {
    background: rgba(0,0,0,0.2); /* Se aclara */
}

/* --- VALUES --- */
.values {
    padding: 100px 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.value-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #C5A059; /* Dorado */
    margin-bottom: 15px;
}

.values h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.values p {
    font-size: 0.9rem;
    color: #666;
}

/* --- FOOTER --- */
footer {
    background-color: #fcfcfc;
    padding: 80px 5% 30px;
    color: #1a1a1a;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col h6 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a, .footer-col p {
    font-size: 0.9rem;
    color: #444;
}

.footer-col ul li a:hover {
    color: #C5A059;
}

.socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    text-align: center;
    font-size: 0.75rem;
    color: #888;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    
    .intro { 
        grid-template-columns: 1fr; 
        padding: 60px 5%;
    }
    
    .intro-image { order: -1; } /* Imagen primero en móvil */
    
    .dual-path { flex-direction: column; height: auto; }
    
    .path-block { height: 50vh; }
    
    .values { grid-template-columns: 1fr; gap: 60px; }
    
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    
    nav ul { display: none; } /* Aquí iría un menú hamburguesa JS */
    .menu-toggle { display: block; }
}

/* =========================================
   ESTILOS ESPECÍFICOS: CONCEPT STORES PAGE
   ========================================= */

/* --- Page Hero --- */
.page-hero {
    position: relative;
    height: 60vh; /* Más corto que el home para ir al grano */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.6; /* Imagen más oscura para resaltar título */
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-top: 10px;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C5A059; /* Dorado */
}

/* --- Data Grid Section --- */
.data-grid {
    padding: 100px 5%;
    text-align: center;
}

.data-intro {
    max-width: 700px;
    margin: 0 auto 80px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.stat-card {
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; /* Número grande estilo editorial */
    color: #C5A059;
    line-height: 1;
    margin-bottom: 20px;
}

.stat-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* --- Editorial Block (Zig-Zag) --- */
.editorial-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 5% 100px;
    margin-top: 100px;
}

.editorial-img img {
    height: 100%;
    object-fit: cover;
    /* Estilo "Toteme": sin bordes, puro */
}

.editorial-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.editorial-text p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1rem;
}

/* --- Services List --- */
.services-list {
    background-color: #f9f9f9; /* Fondo gris muy tenue para separar */
    padding: 100px 0;
}

.services-list .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item h4 {
    font-family: 'Montserrat', sans-serif; /* Sans serif para encabezados técnicos */
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #1a1a1a;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    display: inline-block;
}

.service-item p {
    font-size: 0.9rem;
    color: #666;
}

/* --- CTA Section --- */
.cta-section {
    padding: 120px 5%;
    text-align: center;
    background-color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 40px;
    color: #666;
}

.btn-solid {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: background 0.3s;
}

.btn-solid:hover {
    background-color: #C5A059; /* Hover dorado */
    color: white;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .page-hero { height: 50vh; }
    .page-hero-content h1 { font-size: 2rem; }
    
    .stats-row { grid-template-columns: 1fr; gap: 40px; }
    
    .editorial-block { grid-template-columns: 1fr; gap: 40px; }
    /* Invertimos orden en móvil para que la imagen quede arriba */
    .editorial-block .editorial-img { order: -1; } 
    
    .services-list .container { grid-template-columns: 1fr; gap: 50px; }
}

/* =========================================
   ESTILOS ESPECÍFICOS: BRANDS PAGE
   ========================================= */

/* --- Growth Section (Texto Izq, Foto Der) --- */
.growth-section {
    padding: 120px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.growth-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.stat-highlight {
    margin-top: 40px;
    padding-left: 20px;
    border-left: 2px solid #C5A059; /* Línea dorada vertical */
}

.big-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #1a1a1a;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.growth-img img {
    height: 120%; /* Efecto de imagen alargada elegante */
    object-fit: cover;
    margin-top: -10%; /* Rompe un poco la grilla hacia arriba */
}

/* --- Value Prop Grid (Estilo Mosaico) --- */
.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas */
    width: 100%;
}

.prop-card {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tarjeta Destacada (Negra) */
.prop-card.dark {
    background-color: #1a1a1a;
    color: white;
    grid-column: span 1; /* Ocupa 1 espacio */
}

/* Tarjetas de Lista (Blancas/Grises) */
.prop-card.light {
    background-color: #f4f4f4; /* Gris muy suave */
    border-right: 1px solid #e0e0e0;
}

.prop-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-style: italic;
}

.prop-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #C5A059;
}

.prop-card.dark .citation {
    margin-top: 30px;
    opacity: 0.7;
    font-size: 0.9rem;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

/* --- Quote Break (Franja Minimalista) --- */
.quote-break {
    background-color: white;
    padding: 100px 5%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.quote-content {
    max-width: 800px;
}

.quote-content p {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    line-height: 1.4;
}

/* --- Responsive Brands --- */
@media (max-width: 1024px) {
    .value-prop-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 en tablets */
    }
}

@media (max-width: 768px) {
    .growth-section { grid-template-columns: 1fr; gap: 40px; }
    .growth-img img { margin-top: 0; height: auto; }
    
    .value-prop-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
    }
    
    .prop-card { padding: 40px 20px; }
    
    .big-number { font-size: 3rem; }
}

/* =========================================
   ESTILOS ESPECÍFICOS: TÉRMINOS Y LEGAL
   ========================================= */

.legal-header {
    padding-top: 180px; /* Espacio para el header fijo */
    padding-bottom: 60px;
    text-align: center;
    background-color: #ffffff;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.last-updated {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-body {
    padding-bottom: 120px;
    background-color: #ffffff;
}

/* Columna central estrecha para lectura cómoda */
.legal-column {
    max-width: 750px; 
    margin: 0 auto;
}

.legal-body article {
    margin-bottom: 50px;
    border-bottom: 1px solid #f0f0f0; /* Separador sutil */
    padding-bottom: 40px;
}

.legal-body article:last-child {
    border-bottom: none;
}

.legal-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* Numeración o detalles en dorado */
.legal-body h3::before {
    content: '§ '; /* Símbolo de sección legal clásico */
    color: #C5A059;
    margin-right: 5px;
}

.legal-body p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8; /* Mayor interlineado para textos densos */
    margin-bottom: 20px;
    text-align: justify; /* Opcional: Justificado para look formal */
}

.contact-legal {
    margin-top: 60px;
    padding: 30px;
    background-color: #f9f9f9;
    text-align: center;
    border: 1px solid #eee;
}

.contact-legal a {
    color: #1a1a1a;
    font-weight: 500;
    border-bottom: 1px solid #C5A059;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-header { padding-top: 140px; }
    .legal-header h1 { font-size: 2.2rem; }
    .legal-body p { text-align: left; } /* En móvil mejor no justificar */
}

/* =========================================
   ESTILOS ADICIONALES: PRIVACIDAD
   ========================================= */

.legal-list {
    list-style: none; /* Quitamos los puntos feos por defecto */
    margin: 20px 0 30px 20px;
}

.legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #444;
    font-size: 0.95rem;
}

/* Viñeta personalizada cuadrada dorada */
.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px; /* Ajuste visual para centrar con el texto */
    width: 6px;
    height: 6px;
    background-color: #C5A059;
}

.legal-list li strong {
    color: #1a1a1a;
    font-weight: 500;
}

/* --- Quote Break (Actualizado para la frase larga) --- */
.quote-break {
    background-color: white;
    padding: 120px 5%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.quote-content {
    max-width: 900px; /* Un poco más ancho para que el texto respire */
}

/* Estilo específico para la declaración larga */
.curator-statement {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; /* Tamaño balanceado: grande pero legible */
    color: #1a1a1a;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 30px;
}

/* Estilo para la firma (Nic, The Curator) */
.quote-author {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C5A059; /* Dorado para la firma */
    font-weight: 500;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .curator-statement {
        font-size: 1.4rem; /* Más pequeño en celular */
        padding: 0 10px;
    }
}

/* =========================================
   NUEVAS SECCIONES: BRANDS PAGE (UPDATE)
   ========================================= */

/* --- 1. Mission Section (My Goal) --- */
.mission-section {
    padding: 80px 5% !important;
    text-align: center;
    background-color: #fafafa; /* Gris muy suave para diferenciar */
    margin-bottom: 0;
}

.mission-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    border: 1px solid #e0e0e0; /* Marco fino elegante */
    background: white;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C5A059;
    display: block;
    margin-bottom: 20px;
}

.mission-box h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.mission-box p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #666;
}

/* --- 2. The Bridge Section (3 Columns) --- */
.bridge-section {
    width: 100%;
}

.bridge-header {
    padding: 100px 5% 60px;
    text-align: center;
}

.bridge-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.bridge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 Columnas iguales */
    width: 100%;
}

.bridge-card {
    padding: 80px 40px;
    border-right: 1px solid #eee;
    border-top: 1px solid #eee;
    transition: all 0.3s ease;
}

.bridge-card:last-child {
    border-right: none;
}

/* Tarjeta Central Oscura para contraste */
.bridge-card.dark {
    background-color: #1a1a1a;
    color: white;
    border: none;
    transform: scaleY(1.05); /* Un poco más grande verticalmente */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.card-icon {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #C5A059;
    opacity: 0.5;
    margin-bottom: 20px;
}

.bridge-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.bridge-card ul {
    list-style: none;
}

.bridge-card ul li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 15px;
    position: relative;
    color: #555;
}

.bridge-card.dark ul li {
    color: #ccc;
}

/* Guión pequeño en la lista */
.bridge-card ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #C5A059;
}

/* --- 3. The Why Section (Editorial List) --- */
.why-section {
    padding: 120px 5%;
    display: grid;
    grid-template-columns: 1fr 2fr; /* Izquierda Título, Derecha Lista */
    gap: 60px;
}

.why-title h2 {
    font-size: 2.5rem;
    position: sticky;
    top: 100px; /* El título se queda fijo al hacer scroll */
}

.why-list {
    border-top: 1px solid #1a1a1a;
}

.why-item {
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: 1fr 2fr; /* Subtitulo vs Texto */
    gap: 20px;
    transition: padding 0.3s;
}

.why-item:hover {
    padding-left: 20px; /* Pequeño movimiento al pasar el mouse */
    background-color: #fafafa;
}

.why-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.why-item p {
    color: #555;
    font-size: 1rem;
}


/* --- Responsive Update --- */
@media (max-width: 1024px) {
    .bridge-grid {
        grid-template-columns: 1fr; /* 1 Columna en Tablet/Mobile */
    }
    .bridge-card.dark {
        transform: scaleY(1); /* Quitar efecto escala */
    }
    
    .why-section {
        grid-template-columns: 1fr; /* Título arriba, lista abajo */
        gap: 40px;
    }
    .why-title h2 {
        position: static;
        margin-bottom: 20px;
    }
    .why-item {
        grid-template-columns: 1fr; /* Stack vertical */
        gap: 10px;
    }
}

/* =========================================
   NUEVOS AJUSTES VISUALES
   ========================================= */

/* 1. Container Full (Ancho completo pero con padding lateral) */
.container-full {
    width: 100%;
    max-width: 100%; /* Sobrescribe el límite de 1200px */
    padding: 0 5%;   /* Mantiene el aire a los lados */
}

/* 2. El Separador Sutil (Fading Line) */
.fade-divider {
    border: 0;
    height: 1px;
    /* Gradiente: Transparente -> Dorado Oscuro (Sutil) -> Transparente */
    background-image: linear-gradient(
        to right, 
        rgba(0, 0, 0, 0), 
        rgba(197, 160, 89, 0.4), 
        rgba(0, 0, 0, 0)
    );
    width: 80%; /* No toca los bordes de la pantalla */
    margin: 0 auto; /* Se centra automáticamente */
    display: block;
}

/* Ajuste opcional para la growth-section para que se vea bien con la línea */
.growth-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer-logo{
    height: 100px;
    width: auto;
    margin-bottom: 15px;
}


/* =========================================
   WHAT I OFFER (DARK SECTION)
   ========================================= */
.offer-section {
    background-color: #1a1a1a; /* Fondo oscuro elegante */
    color: #ffffff;
    padding: 100px 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle-gold {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C5A059;
    display: block;
    margin-bottom: 10px;
}

.offer-section h2 {
    font-size: 2.5rem;
    color: white;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columnas */
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.offer-item {
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Línea sutil arriba */
    padding-top: 30px;
    transition: transform 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px); /* Pequeña elevación al pasar el mouse */
}

.offer-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #C5A059;
    margin-bottom: 15px;
}

.offer-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.offer-item p {
    color: #ccc; /* Gris claro para texto en fondo oscuro */
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   HOW WE WORK (PROCESS CARDS)
   ========================================= */
.process-section {
    padding: 120px 5%;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-card {
    background-color: #fafafa; /* Gris muy suave */
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: all 0.3s ease;
}

/* Estilo para la segunda tarjeta (Bordeado) */
.process-card.bordered {
    background-color: white;
    border: 1px solid #e0e0e0;
}

.process-top h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.process-top h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.process-body p {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.process-body ul {
    list-style: none;
    margin-bottom: 40px;
}

.process-body ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center;
}

/* Checkmark dorado simulado */
.process-body ul li::before {
    content: '✓';
    color: #C5A059;
    margin-right: 10px;
    font-weight: bold;
}

.link-gold {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #C5A059;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

.link-gold:hover {
    border-bottom: 1px solid #C5A059;
}

/* Responsive */
@media (max-width: 768px) {
    .offer-grid, .process-grid {
        grid-template-columns: 1fr; /* Columna única en móvil */
        gap: 40px;
    }
}

/* =========================================
   UPDATES: OFFER & PROCESS (CORRECCIÓN)
   ========================================= */

/* --- Offer Grid: Adaptación a 3 Columnas --- */
.offer-grid.three-cols {
    grid-template-columns: repeat(3, 1fr); /* Antes eran 2 */
    gap: 40px;
    max-width: 1100px; /* Más ancho para que quepa texto */
}

/* Ajuste de listas dentro de la sección oscura */
.offer-item ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.offer-item ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Bullet point dorado pequeño */
.offer-item ul li::before {
    content: '•';
    color: #C5A059;
    position: absolute;
    left: 0;
    top: 0;
}

/* --- Phases Grid (Nuevo Estilo 2x2) --- */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 arriba, 2 abajo */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.phase-card {
    background: #fafafa;
    padding: 40px 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.phase-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
    border-color: #C5A059; /* Detalle dorado al pasar el mouse */
}

.phase-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C5A059;
    margin-bottom: 15px;
    font-weight: 600;
}

.phase-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.phase-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* --- Responsive Update --- */
@media (max-width: 1024px) {
    .offer-grid.three-cols {
        grid-template-columns: 1fr; /* Una columna en Tablet/Mobile */
    }
    
    .phases-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   NEW SECTION: WHAT ARTISAN BRANDS DELIVER
   ========================================= */

.benefits-section {
    background-color: #f9f9f9; /* Fondo gris suave para diferenciar */
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columnas */
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 30px 25px;
    border: 1px solid #eee;
    text-align: left; /* Alineación izquierda para lectura fácil */
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #C5A059;
}

.benefit-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 15px;
    border-bottom: 2px solid #C5A059; /* Línea dorada corta */
    display: inline-block;
    padding-bottom: 5px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive para Benefits */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 en tablet */
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
    }
}

/* =========================================
   CONTACT PAGE: GLAMOUR & EXCLUSIVITY
   ========================================= */

/* Layout de Pantalla Dividida */
.contact-wrapper {
    display: flex;
    min-height: 100vh;
    padding-top: 80px; /* Espacio para el header */
}

/* Columna Visual (Imagen Fija a la izquierda) */
.contact-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.visual-overlay {
    background: rgba(0,0,0,0.3); /* Capa oscura sutil */
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end; /* Texto abajo */
    padding: 60px;
}

.visual-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    font-style: italic;
    line-height: 1.4;
    max-width: 400px;
    margin-bottom: 20px;
}

.visual-content p {
    color: rgba(255,255,255,0.8);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Columna Formulario (Derecha) */
.contact-form-section {
    flex: 1;
    padding: 80px 10%; /* Mucho aire a los lados */
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 50px;
}

.form-header h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.form-header p {
    color: #666;
    font-size: 1rem;
    max-width: 450px;
}

/* --- Formulario "Floating Label" (Muy Elegante) --- */
.elegant-form {
    display: grid;
    gap: 30px;
}

.form-group {
    position: relative;
    padding-top: 15px;
}

/* El Input en sí: Solo línea abajo */
.form-input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ddd;
    background: transparent;
    padding: 10px 0;
    font-family: 'Playfair Display', serif; /* Input con serif se ve muy lujo */
    font-size: 1.1rem;
    color: #1a1a1a;
    outline: none;
    transition: all 0.4s ease;
}

.form-input.textarea {
    resize: none;
    height: 40px; /* Crece al escribir si usaras JS, por ahora fijo sutil */
}

/* Efecto al hacer clic (Focus) */
.form-input:focus {
    border-bottom: 1px solid #C5A059; /* Dorado */
}

/* La Etiqueta (Label) que flota */
.form-label {
    position: absolute;
    top: 15px;
    left: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Magia CSS: Si el input tiene foco O texto (placeholder hack), el label sube */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    font-size: 0.75rem;
    color: #C5A059;
    letter-spacing: 1px;
}

/* --- Radio Buttons Personalizados --- */
.form-group-radio {
    margin-bottom: 10px;
}

.radio-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.radio-options {
    display: flex;
    gap: 30px;
}

.custom-radio {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-radio input {
    accent-color: #C5A059; /* Color nativo del navegador dorado */
    transform: scale(1.2);
}

.radio-text {
    font-size: 1rem;
    color: #1a1a1a;
}

/* --- Botón Submit --- */
.btn-submit {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    transition: all 0.4s ease;
}

.btn-submit:hover {
    background-color: #C5A059; /* Dorado al hover */
    padding-right: 30px; /* Efecto movimiento */
}

.btn-submit .arrow {
    transition: transform 0.3s;
}

.btn-submit:hover .arrow {
    transform: translateX(5px);
}

/* --- Direct Contact Info --- */
.direct-contact {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}

.direct-contact .emails {
    margin-top: 10px;
}

.direct-contact a {
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.direct-contact a:hover {
    color: #C5A059;
}

.direct-contact .divider {
    margin: 0 10px;
    color: #ddd;
}

/* --- Responsive Contact --- */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column; /* Stack vertical en móvil */
    }
    .contact-visual {
        height: 300px; /* Altura fija para la imagen arriba */
        flex: none;
    }
    .contact-form-section {
        padding: 60px 5%;
    }
    .form-header h1 {
        font-size: 2.5rem;
    }
}

/* =========================================
   MANIFESTO PAGE STYLES
   ========================================= */

/* --- Hero Simple --- */
.manifesto-hero {
    padding: 180px 5% 80px;
    text-align: center;
    background-color: #fff;
}

.manifesto-hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-top: 20px;
    color: #1a1a1a;
}

/* --- Story Section (Imagen Izq, Texto Der) --- */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-bottom: 100px;
}

.story-img img {
    height: auto;
    width: 100%;
    /* Filtro leve sepia para darle toque 'memoria/historia' */
    filter: sepia(10%) contrast(90%); 
    border-radius: 2px;
}

.story-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    font-style: italic;
}

.story-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-text strong {
    font-weight: 500;
    color: #1a1a1a;
    border-bottom: 1px solid #C5A059; /* Subrayado dorado en "The Artisan Lab" */
}

.signature p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #C5A059;
    margin-top: 30px;
    font-style: italic;
}

/* --- Vision & Mission (Grid Centrado) --- */
.vision-mission-section {
    padding: 100px 5%;
    background-color: #fafafa;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.vm-card {
    text-align: center;
    padding: 20px;
}

.vm-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    display: block;
    margin-bottom: 15px;
}

.vm-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.vm-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- The Approach (Imagen de Fondo con Texto) --- */
.approach-section {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.approach-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax */
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-overlay {
    background: rgba(255, 255, 255, 0.95); /* Caja blanca casi sólida */
    padding: 60px;
    max-width: 700px;
    text-align: center;
    margin: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.approach-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.approach-overlay p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-overlay strong {
    color: #C5A059;
    font-weight: 500;
}

/* Responsive Manifesto */
@media (max-width: 768px) {
    .manifesto-hero h1 { font-size: 3rem; }
    
    .story-section { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .vm-grid { 
        grid-template-columns: 1fr; 
        gap: 60px; 
    }
    
    .approach-overlay { 
        padding: 40px 20px; 
    }
}

/* =========================================
   FLOATING INSTAGRAM BUTTON
   ========================================= */

.floating-ig {
    position: fixed;
    bottom: 40px; /* Separación del fondo */
    right: 40px;  /* Separación de la derecha */
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 1px solid #1a1a1a; /* Borde fino elegante */
    border-radius: 50%; /* Círculo perfecto */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000; /* Asegura que esté encima de todo */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animación con rebote suave */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Sombra muy sutil */
}

/* El Icono SVG */
.floating-ig svg {
    width: 20px;
    height: 20px;
    fill: #1a1a1a; /* Color negro inicial */
    transition: fill 0.3s ease;
}

/* Efecto Hover (Al pasar el mouse) */
.floating-ig:hover {
    border-color: #C5A059; /* Borde dorado */
    transform: translateY(-5px) scale(1.05); /* Sube y crece un poco */
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2); /* Sombra dorada suave */
}

.floating-ig:hover svg {
    fill: #C5A059; /* Icono dorado */
}

/* Responsive: Ajuste para móviles para que no tape contenido */
@media (max-width: 768px) {
    .floating-ig {
        bottom: 25px;
        right: 25px;
        width: 45px;
        height: 45px;
    }
    
    .floating-ig svg {
        width: 18px;
        height: 18px;
    }
}

/* =========================================
   FLOATING SOCIAL BUTTONS (IG & WHATSAPP)
   ========================================= */

/* Contenedor Fijo: Mantiene los botones apilados */
.social-floating-wrapper {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column; /* Uno encima del otro */
    gap: 15px; /* Espacio entre botones */
    z-index: 2000;
}

/* Estilo Compartido de los Botones */
.floating-btn {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 1px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* El Icono SVG */
.floating-btn svg {
    width: 20px; /* Tamaño unificado para IG y WA */
    height: 20px;
    fill: #1a1a1a;
    transition: fill 0.3s ease;
}

/* Efecto Hover Individual */
.floating-btn:hover {
    border-color: #C5A059;
    transform: translateX(-5px) scale(1.05); /* Se mueven un poco a la izq al pasar mouse */
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.floating-btn:hover svg {
    fill: #C5A059;
}

/* Responsive */
@media (max-width: 768px) {
    .social-floating-wrapper {
        bottom: 25px;
        right: 25px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* =========================================
   SUBSTACK "WOW" SECTION
   ========================================= */

.substack-wow {
    position: relative;
    height: 80vh; /* Ocupa casi toda la pantalla para impacto */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* El fondo que se mueve lento (Parallax) */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* ESTA ES LA CLAVE DEL EFECTO WOW */
    z-index: 0;
    filter: brightness(0.7); /* Oscurece un poco para que el texto resalte */
}

/* La tarjeta flotante */
.substack-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9); /* Blanco semitransparente */
    backdrop-filter: blur(10px); /* Efecto vidrio esmerilado (Glassmorphism) */
    padding: 60px 50px;
    max-width: 500px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.substack-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C5A059; /* Dorado */
    display: block;
    margin-bottom: 20px;
}

.substack-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; /* Título gigante editorial */
    line-height: 1;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.substack-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Botón Especial Substack */
.btn-substack {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 18px 35px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    width: 100%; /* Botón ancho */
    justify-content: center;
}

.btn-substack:hover {
    background-color: #FF6719; /* El color naranja oficial de Substack (opcional, o usa Dorado #C5A059) */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-substack svg {
    transition: transform 0.3s ease;
}

.btn-substack:hover svg {
    transform: translateX(5px);
}

.substack-note {
    font-size: 0.75rem !important;
    color: #999 !important;
    margin-top: 20px;
    margin-bottom: 0 !important;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .substack-wow {
        height: 60vh;
    }
    .parallax-bg {
        background-attachment: scroll; /* En móvil a veces fixed falla, mejor scroll normal */
    }
    .substack-card {
        margin: 0 20px;
        padding: 40px 30px;
    }
    .substack-card h2 {
        font-size: 2.5rem;
    }
}


/* =========================================
   GALLERY VIEW STYLES
   ========================================= */

/* Hero Específico de Galería */
.gallery-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff; /* Opcional: poner un gris muy suave #f9f9f9 */
    padding-top: 80px;
}

.gallery-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.gallery-hero p {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #888;
}

/* Menú de Filtros */
.gallery-filter-section {
    text-align: center;
    margin-bottom: 50px;
}

.filter-menu {
    display: inline-flex;
    gap: 30px;
}

.filter-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    color: #999;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.filter-btn:hover, .filter-btn.active {
    color: #1a1a1a;
    border-color: #C5A059; /* Subrayado Dorado */
}

/* El Grid Masonry (Columna de Pinterest) */
.gallery-feed {
    column-count: 3; /* 3 Columnas */
    column-gap: 30px;
    padding: 0 5%;
    padding-bottom: 100px;
}

/* Ajuste Responsive */
@media (max-width: 1024px) {
    .gallery-feed { column-count: 2; }
}
@media (max-width: 768px) {
    .gallery-feed { column-count: 1; }
    .gallery-hero h1 { font-size: 2.5rem; }
}

/* Las Tarjetas de Imagen */
.gallery-item {
    break-inside: avoid; /* Evita que las fotos se corten entre columnas */
    margin-bottom: 30px;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* El Overlay (Capa oscura al pasar mouse) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Oscuro elegante */
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    text-align: center;
}

.category-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s; /* Retraso ligero */
}

.overlay .line {
    width: 0px;
    height: 1px;
    background-color: #C5A059; /* Línea dorada */
    transition: width 0.4s ease 0.2s;
}

/* Efectos Hover */
.img-wrapper:hover img {
    transform: scale(1.1); /* Zoom suave */
}

.img-wrapper:hover .overlay {
    opacity: 1;
}

.img-wrapper:hover .category-tag,
.img-wrapper:hover .overlay h3 {
    transform: translateY(0); /* El texto sube a su sitio */
}

.img-wrapper:hover .line {
    width: 50px; /* La línea crece */
}

/* =========================================
   THE AGENCY VIEW
   ========================================= */

/* Hero */
.agency-hero {
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fcfcfc;
    padding-top: 60px;
}

.agency-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.agency-hero p {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #888;
}

/* Agency Grid (Editorial Split) */
.agency-info-section {
    padding: 80px 5%;
    background-color: #fff;
}

.agency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.agency-image-col img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.agency-text-col {
    padding-right: 40px;
}

.eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C5A059;
    display: block;
    margin-bottom: 15px;
}

.agency-text-col h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.agency-text-col p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Estadísticas sutiles */
.agency-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

/* =========================================
   DIRECT BUY CTA (WHATSAPP)
   ========================================= */
.direct-buy-cta {
    background-color: #1a1a1a; /* Fondo oscuro para máximo contraste */
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.direct-buy-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.direct-buy-cta p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 40px;
}

/* Botón grande de WhatsApp */
.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #fff;
    color: #1a1a1a;
    padding: 20px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp-large svg {
    width: 24px;
    height: 24px;
    fill: #1a1a1a;
    transition: fill 0.3s ease;
}

.btn-whatsapp-large:hover {
    background-color: #C5A059; /* Pasa a dorado */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-whatsapp-large:hover svg {
    fill: #fff;
}

.response-time {
    display: block;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
    .agency-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .agency-image-col img {
        height: 400px;
    }
    .agency-text-col {
        padding-right: 0;
    }
    .direct-buy-cta h2 {
        font-size: 2.2rem;
    }
}