/* --- HERO SECTION --- */
.about-hero {
    height: 70vh;
    background: url('imagenes/nosotros-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.about-title {
    font-family: var(--font-titles);
    color: var(--gold);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    z-index: 2;
}

.about-title span {
    color: var(--white);
    font-size: 0.8em;
}

/* --- GRID NOSOTROS (BLANCO) --- */
.section-white {
    background-color: #fdfdfd;
    padding: 120px 0;
    color: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image-frame {
    position: relative;
    padding: 20px;
}

.about-image-frame img {
    width: 100%;
    filter: grayscale(0.2);
    border-radius: 2px;
}

.frame-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border-top: 2px solid var(--red-meat);
    border-right: 2px solid var(--red-meat);
    z-index: -1;
}

/* --- PILARES (NEGRO) --- */
.section-dark {
    background-color: #080808;
    padding: 100px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.pillar-num {
    font-family: var(--font-titles);
    color: var(--red-meat);
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
    opacity: 0.5;
}

.pillar-item h4 {
    font-family: var(--font-titles);
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.pillar-item p {
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    font-size: 0.9rem;
}

/* --- EXPERIENCE LAYOUT --- */
.experience-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.exp-img { flex: 1; }
.exp-img img { width: 100%; border-radius: 5px; }
.exp-content { flex: 1; }

/* --- RESPONSIVE --- */
@media (max-width: 850px) {
    .about-grid, .pillars-grid, .experience-layout {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
    }
    .about-text { text-align: center; }
    .about-hero { height: 50vh; }
}

/* --- AJUSTE NAV 4 ENLACES --- */
.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto; /* Links Izq - Logo - Links Der - Botón Reserva */
    align-items: center;
    gap: 20px;
}

.nav-side {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* En móvil ocultamos las partes laterales y mostramos el toggle */
@media (max-width: 850px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
    }
    .desktop-only {
        display: none !important;
    }
}

/* --- HERO NOSOTROS COMPACTO Y ELEGANTE --- */
/* --- HERO NOSOTROS: IMPACTO MAXIMO, ESPACIO MINIMO --- */
.nosotros-hero-clean {
    position: relative;
    width: 100%;
    height: 60vh; /* Un balance perfecto: ni muy alto, ni muy bajo */
    background: #000; /* Fondo de seguridad */
    display: flex;
    align-items: center; /* Centrado vertical */
    justify-content: center; /* Centrado horizontal */
    overflow: hidden;
    margin-top: 80px; /* Espacio para el header fixed */
    border-bottom: 2px solid rgba(212, 175, 55, 0.3); /* Línea dorada sutil inferior */
}

/* La Imagen de Fondo Protagonista */
.nosotros-hero-clean::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('imagenes/nosotros-hero.jpg'); /* ASEGÚRATE QUE LA RUTA ES CORRECTA */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax sutil de lujo */
    opacity: 0.5; /* Oscurecemos para que el texto dorado brille */
    z-index: 1;
}

/* Contenedor del Texto */
.nosotros-hero-wrapper {
    position: relative;
    z-index: 10; /* Por encima de la imagen */
    text-align: center;
    padding: 0 40px;
    width: 100%;
    max-width: 1400px; /* Evita que el texto se estire demasiado en monitores gigantes */
}

/* EL TITULO GIGANTE IMPONENTE */
.nosotros-main-title {
    font-family: var(--font-titles); /* Dela Gothic One */
    color: var(--white) !important;
    
    /* TAMAÑO MASIVO REFINADO */
    font-size: clamp(3.5rem, 12vw, 8rem) !important; /* De 3.5rem en móvil a 8rem en PC */
    
    /* EL SECRETO DEL LUJO EDITORIAL */
    line-height: 0.85 !important; /* Súper apretado para que se vea poderoso */
    letter-spacing: -5px !important; /* Letras casi pegadas, estilo póster de cine */
    
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8); /* Sombra profunda para separarlo del fondo */
}

.gold-text {
    color: var(--gold) !important;
    display: block; /* "ESENCIA" en su propia línea */
    margin-top: -5px; /* Lo pegamos aún más a la línea de arriba */
}

/* Subtítulo sutil (Opcional, si lo tienes en el HTML) */
.nosotros-hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-top: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* RESPONSIVO PARA MÓVIL */
@media (max-width: 768px) {
    .nosotros-hero-clean {
        height: 50vh; /* Un poco más bajo en móvil */
    }
    .nosotros-main-title {
        letter-spacing: -2px !important; /* Menos apretado en pantallas pequeñas */
        line-height: 0.9 !important;
    }
}

.nosotros-hero-line {
    width: 60px;
    height: 2px;
    background-color: var(--red-meat);
    margin: 0 auto 20px;
}

/* --- SEDES PREMIUM --- */
.sedes-layout-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.sede-item {
    padding: 30px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    transition: 0.5s;
    background: #fff;
}

.sede-item.active {
    border-color: var(--gold);
    box-shadow: 15px 15px 0px var(--red-meat); /* Efecto de diseño moderno */
    transform: translateY(-5px);
}

.sede-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--red-meat);
    font-weight: 900;
}

.btn-mapa {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    font-size: 0.7rem;
    border-bottom: 1px solid var(--gold);
}

/* El Marco del Mapa */
.map-visual-frame {
    height: 500px;
    position: relative;
    padding: 15px;
    background: #f4f4f4;
}

.map-corner-detail {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    border-bottom: 3px solid var(--red-meat);
    border-right: 3px solid var(--red-meat);
    z-index: 5;
}

@media (max-width: 850px) {
    .sedes-layout-grid { grid-template-columns: 1fr; }
    .map-visual-frame { height: 350px; order: -1; }
    .sede-item.active { box-shadow: 10px 10px 0px var(--red-meat); }
}

/* --- SEDES BOGOTÁ: ESTILO EDITORIAL --- */
.sedes-editorial-section {
    background-color: #0a0a0a; /* Fondo oscuro para que resalte la elegancia */
    padding: 120px 0;
    color: #fff;
}

.editorial-header {
    margin-bottom: 80px;
    border-left: 3px solid var(--red-meat);
    padding-left: 30px;
}

.editorial-main-title {
    font-family: var(--font-titles);
    font-size: 4.5rem;
    line-height: 0.9;
    color: var(--gold);
}

.editorial-main-title span {
    color: #fff;
    display: block;
    font-size: 0.6em;
}

/* El Grid de las tarjetas */
.editorial-grid-sedes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px; /* Línea divisoria muy fina entre tarjetas */
    background-color: rgba(212, 175, 55, 0.1);
    margin-bottom: 60px;
}

.sede-editorial-card {
    background-color: #0a0a0a;
    padding: 50px 30px;
    display: flex;
    gap: 20px;
    cursor: pointer;
    transition: 0.5s all ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sede-editorial-card:hover, .sede-editorial-card.active {
    background-color: #111;
    border-top: 4px solid var(--red-meat);
}

.card-index {
    font-family: var(--font-titles);
    font-size: 1.2rem;
    color: var(--red-meat);
    opacity: 0.5;
}

.location-tag {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.card-main-body h3 {
    font-family: var(--font-titles);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.editorial-address {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tel-label {
    font-size: 0.6rem;
    font-weight: 700;
    margin-right: 10px;
    color: var(--red-meat);
}

.tel-num {
    font-family: var(--font-titles);
    font-size: 0.8rem;
}

/* MARCO DEL MAPA */
.map-editorial-frame {
    position: relative;
    height: 550px;
    width: 100%;
    border: 10px solid #111;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

#mapa-brazzeiro {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) brightness(1.1); /* Mapa en modo oscuro premium */
}

.map-overlay-decor {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    z-index: 5;
    pointer-events: none;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .editorial-grid-sedes { grid-template-columns: 1fr; }
    .editorial-main-title { font-size: 3rem; }
}

/* ==========================================================================
   BRAZZEIRO - REDISEÑO DE FOOTER PREMIUM (CORREGIDO)
   ========================================================================== */

.footer-brazzeiro {
    position: relative;
    background-color: #050505;
    padding: 120px 0 40px;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.3); /* Línea dorada superior muy fina */
}

/* Marca de agua corregida: más sutil y más abajo */
.footer-bg-text {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-titles);
    font-size: 22vw;
    color: rgba(255, 255, 255, 0.015); /* Casi invisible */
    z-index: 0;
    pointer-events: none;
    letter-spacing: -10px;
}

.footer-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr; /* El centro es un poco más ancho */
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-label {
    font-family: var(--font-titles);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-column p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin: 0;
    letter-spacing: 1px;
}

/* Columna del Logo */
.logo-column {
    align-items: center;
    border-left: 1px solid rgba(212, 175, 55, 0.1);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0 40px;
}

.footer-logo-v3 {
    width: 160px;
    margin-bottom: 25px;
    filter: brightness(1.1);
}

.footer-divider-gold {
    width: 40px;
    height: 1px;
    background-color: var(--gold);
    margin-bottom: 25px;
}

.footer-btn-minimal {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--red-meat);
    padding: 12px 25px;
    transition: 0.4s ease;
}

.footer-btn-minimal:hover {
    background-color: var(--red-meat);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
}

/* Redes Sociales */
.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.3s;
}

.footer-social-links a:hover {
    color: var(--gold);
    padding-left: 5px; /* Efecto sutil de desplazamiento */
}

/* Barra inferior */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #444;
    letter-spacing: 2px;
}

/* RESPONSIVO */
@media (max-width: 850px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .logo-column {
        border: none;
        padding: 0;
        order: -1; /* Logo arriba en móvil */
    }
    .footer-column { align-items: center; }
    .footer-bottom-bar { flex-direction: column; gap: 20px; }
}

/* --- SECCIÓN HISTORIA --- */
.section-white {
    background-color: #faf9f6; /* Blanco cálido tipo "hueso" */
    padding: 100px 0;
    overflow: hidden;
}

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Decoraciones visuales */
.historia-visual {
    position: relative;
}

.img-principal {
    width: 40%;
    border-radius: 4px;
    box-shadow: 20px 20px 0px var(--gold); /* Sombra sólida dorada */
    position: relative;
    z-index: 2;
}

.decor-circle-warm {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.experiencia-tag {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--red-meat);
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experiencia-tag .anos {
    display: block;
    font-family: var(--font-titles);
    font-size: 2rem;
    line-height: 1;
}

/* Estilos de Texto */
.titulo-historia {
    font-family: var(--font-titles);
    font-size: 2.8rem;
    line-height: 1.1;
    color: var(--black);
    margin: 20px 0;
}

.titulo-historia span {
    color: var(--red-meat);
}

.divider-warm {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--gold), #ffcc00);
    margin-bottom: 30px;
}

.p-historia {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* Lista de Bogotá */
.lista-puntos {
    list-style: none;
    padding: 0;
}

.lista-puntos li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #333;
}

.lista-puntos .dot {
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

/* Responsivo */
@media (max-width: 900px) {
    .historia-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .img-principal {
        box-shadow: 10px 10px 0px var(--gold);
    }
    .divider-warm { margin: 0 auto 30px; }
    .lista-puntos li { text-align: left; }
}

/* --- CONTENEDOR DE VIDEO EDITORIAL --- */
/* --- CÁPSULA DE VIDEO PREMIUM --- */
.video-capsule {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.video-header-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.luxury-line-short {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.video-body-frame {
    width: 100%;
    min-height: 200px; /* Le damos una altura mínima obligatoria */
    background-color: #111; /* Si el video falla, verás un fondo gris oscuro en lugar de blanco */
    display: block !important;
}

.video-body-frame video {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

/* Decoración de esquina: el sello de Brazzeiro */
.video-corner-decor {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--red-meat);
    border-right: 3px solid var(--red-meat);
    z-index: 5;
    pointer-events: none;
}

/* --- OPTIMIZACIÓN MÓVIL (MANTENIENDO EL LUJO) --- */
@media (max-width: 768px) {
    .video-capsule {
        margin: 40px auto;
        padding: 0 15px; /* Mantiene el "aire" lateral que te gusta */
    }

    .video-body-frame {
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .video-corner-decor {
        width: 40px;
        height: 40px;
        bottom: -5px;
        right: -5px;
    }
}

/* --- LAYOUT EDITORIAL (PC) --- */
.historia-editorial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Texto izquierda, Video derecha */
    gap: 80px;
    align-items: center;
    padding: 60px 0;
}

/* Ajuste del Video para que no sea inmenso en PC */
.editorial-video-block {
    position: relative;
    width: 100%;
    max-width: 600px; /* Evita que crezca demasiado en monitores grandes */
    justify-self: center;
}

.video-body-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    box-shadow: 30px 30px 60px rgba(0,0,0,0.05); /* Sombra suave de lujo */
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.video-body-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-caption {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-top: 15px;
    text-align: right;
    font-weight: 700;
}

/* --- RESPONSIVE (CELULAR) --- */
@media (max-width: 900px) {
    .historia-editorial-wrapper {
        grid-template-columns: 1fr; /* Una sola columna */
        gap: 40px;
        text-align: center;
    }

    .editorial-video-block {
        order: -1; /* El video aparece arriba del texto en móvil */
        max-width: 100%;
    }

    .titulo-historia {
        font-size: 2.2rem !important;
    }

    .video-caption {
        text-align: center;
    }
}

/* --- POSICIONAMIENTO EXACTO --- */
.pin-luxury {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none; /* Elimina subrayado de links */
    color: #fff;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

/* 01. EL EDÉN (Kennedy - Zona Sur-Occidente) */
.pin-luxury.eden {
    top: 65%; 
    left: 25%;
}

/* 02. NUESTRO BOGOTÁ (Engativá - Zona Centro-Occidente) */
.pin-luxury.nuestro {
    top: 42%; 
    left: 30%;
}

/* 03. MALL PLAZA (Calle 19 / Centro - Oriente) */
.pin-luxury.mall {
    top: 52%; 
    left: 58%;
}

/* --- ESTILO DE PUNTO TIPO "BRASA" --- */
.pin-dot {
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px var(--gold);
}

/* Efecto de pulso sutil */
.pin-dot::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(3.5); opacity: 0; }
}

/* --- TEXTOS EDITORIALES --- */
.pin-text {
    border-left: 1px solid rgba(212, 175, 55, 0.5);
    padding-left: 12px;
    background: rgba(0,0,0,0.4); /* Fondo sutil para legibilidad */
    backdrop-filter: blur(2px);
    padding-right: 10px;
}

.pin-name {
    font-family: var(--font-titles);
    font-size: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Hover: El punto se vuelve blanco (fuego intenso) */
.pin-luxury:hover {
    transform: scale(1.1) translateY(-5px);
}

.pin-luxury:hover .pin-dot {
    background: #fff;
    box-shadow: 0 0 25px #fff;
}

/* CONTENEDOR PRINCIPAL */
.map-immersive-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.map-frame {
    position: relative; /* ESTO ES VITAL: permite que los pines se ubiquen respecto a la imagen */
    width: 100%;
    overflow: hidden;
    background: #000;
}

.map-img-v2 {
    width: 100%;
    display: block;
    opacity: 0.6;
}

/* ESTILO DE LOS PINES */
.pin-luxury {
    position: absolute; /* Se ubican respecto al .map-frame */
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 10;
    transition: 0.3s ease;
}

/* POSICIONES CORREGIDAS (Basadas en tu mapa) */
/* --- POSICIONES FINALES NIVELADAS --- */

/* 01. EL EDÉN */
.pin-luxury.eden { 
    top: 52%; 
    left: 28%; 
}

/* 02. NUESTRO BOGOTÁ */
.pin-luxury.nuestro { 
    top: 19%; 
    left: 32%; 
}

/* 03. MALL PLAZA - AHORA MÁS ABAJO QUE EDÉN */
.pin-luxury.mall { 
    top: 70%; /* Subimos el porcentaje para que baje visualmente */
    left: 55%; 
}

/* DETALLES VISUALES */
.pin-dot {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

.pin-text {
    color: #fff;
    font-family: var(--font-titles);
    font-size: 0.8rem;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.6);
    padding: 5px 10px;
    border-left: 2px solid var(--gold);
    white-space: nowrap;
}

.pin-text span {
    color: var(--gold);
    font-weight: bold;
    margin-right: 5px;
}

.pin-luxury:hover {
    transform: scale(1.1);
    z-index: 20;
}