* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #e0dcd7;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    min-height: 200vh;
}

/* ===== DECORACIÓN FIJA (LUZ SUTIL QUE SIGUE AL MOUSE) ===== */
.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(200, 180, 140, 0.03) 0%, transparent 60%);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
}

body:hover .spotlight {
    opacity: 1;
}

/* ===== HEADER CON LOGO CENTRADO ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 5%;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estado cuando hacemos scroll */
header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 180, 140, 0.2);
    padding: 1rem 5%;
}

header.scrolled .header-container {
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: all 0.4s;
    z-index: 1001;
}

.logo-img {
    height: 50px !important; /* Tamaño reducido */
    width: auto;
    display: block;
    transition: all 0.4s;
}

header.scrolled .logo-img {
    filter: brightness(0) invert(1);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C8B48C;
    transition: width 0.6s;
}

.logo:hover::after {
    width: 100%;
}

.logo:hover .logo-img {
    opacity: 0.9;
}

/* Menú de navegación (solo visible en desktop) */
nav {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

header.scrolled nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
    justify-content: flex-end;
}

nav a {
    text-decoration: none;
    color: #f0eae0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #C8B48C;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

nav a:hover {
    color: #C8B48C;
}

nav a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== MENÚ HAMBURGUESA FLOTANTE (SOLO MÓVIL) ===== */
.mobile-menu-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(200, 180, 140, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #0a0a0a;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active {
    background: #0a0a0a;
    border-color: #C8B48C;
}

.mobile-menu-btn.active span {
    background: #C8B48C;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menú móvil desplegable */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 2rem 0;
}

.mobile-menu a {
    color: #f0eae0;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #C8B48C;
}

/* ===== INDICADOR DE SCROLL MEJORADO PARA MÓVIL ===== */
.scroll-indicator {
    position: fixed;
    left: 5px;  /* Siempre a 5px del borde */
    top: 0;
    width: 2px;  /* Un poquito más grueso para móvil */
    height: 100vh;
    background: rgba(200, 180, 140, 0.15);
    z-index: 1001;
    pointer-events: none;
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #C8B48C;
    transition: height 0.1s;
    box-shadow: 0 0 8px rgba(200, 180, 140, 0.3);
}

/* ===== HERO CINEMATOGRÁFICO ===== */
.hero-cinema {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #050505;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.23, 1, 0.32, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 4;
    pointer-events: none;
}

/* ===== CONTENIDO DEL HERO (LIMITADO A 1200px) ===== */
.hero-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 5%;
    z-index: 5;
    color: #f0eae0;
    pointer-events: none;
}

.hero-pre-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #C8B48C;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpIn 0.8s forwards;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 0.8s 0.1s forwards;
}

.hero-description {
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(240, 234, 224, 0.9);
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 0.8s 0.2s forwards;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CONTROLES ===== */
.hero-controls {
    position: absolute;
    bottom: 15%;
    right: 50%;
    transform: translateX(calc(50% + 500px));
    z-index: 10;
    display: flex;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

@media (max-width: 1400px) {
    .hero-controls {
        right: 5%;
        transform: none;
    }
}

.hero-cinema:hover .hero-controls {
    opacity: 1;
    pointer-events: auto;
}

.hero-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200, 180, 140, 0.3);
    color: #C8B48C;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.hero-btn:hover {
    background: #C8B48C;
    color: #0a0a0a;
    border-color: #C8B48C;
    transform: scale(1.05);
}

.hero-dots {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.hero-cinema:hover .hero-dots {
    opacity: 1;
    pointer-events: auto;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(240, 234, 224, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    padding: 0;
}

.hero-dot.active {
    background: #C8B48C;
    transform: scale(1.3);
    width: 12px;
    height: 12px;
}

.hero-dot:hover {
    background: #C8B48C;
}

.hero-image-info {
    position: absolute;
    top: 20%;
    right: 5%;
    z-index: 5;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(240, 234, 224, 0.4);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    pointer-events: none;
    opacity: 0.6;
}

/* ===== SECCIÓN DE EJEMPLO ===== */
.contenido-ejemplo {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5%;
}

.contenido-ejemplo h2 {
    font-size: 2.5rem;
    font-style: italic;
    color: #C8B48C;
    margin-bottom: 2rem;
}

.contenido-ejemplo p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.grid-ejemplo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.grid-ejemplo div {
    aspect-ratio: 1;
    background: rgba(200, 180, 140, 0.1);
    border: 1px solid rgba(200, 180, 140, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
}

.texto-ayuda {
    position: fixed;
    bottom: 30px;
    right: 30px;
    color: rgba(200, 180, 140, 0.4);
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    z-index: 100;
}

/* ===== MEDIA QUERIES PARA MÓVIL ===== */
@media (max-width: 768px) {
    /* Ocultar menú desktop */
    nav {
        display: none;
    }
    
    /* Mostrar botón flotante hamburguesa */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Ajustar logo en móvil */
    .logo {
        font-size: 1.8rem;
    }
    
    /* Header siempre centrado en móvil */
    header {
        padding: 1.5rem 5%;
    }
    
    header.scrolled {
        padding: 1rem 5%;
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(12px);
    }
    
    /* Forzar centrado del contenedor en móvil (por si acaso) */
    .header-container,
    header.scrolled .header-container {
        justify-content: center !important;
    }
    
    /* Ajustar controles del hero para móvil */
    .hero-controls {
        bottom: 20%;
        right: 5%;
        transform: none;
    }
    
    .hero-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-dots {
        bottom: 10%;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-image-info {
        display: none;
    }
    
    /* Ajustar grid de ejemplo */
    .grid-ejemplo {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Texto de ayuda más pequeño */
    .texto-ayuda {
        display: none;
    }
}

/* Ajuste para pantallas muy pequeñas */
@media (max-width: 480px) {
    .scroll-indicator {
        left: 3px;
        width: 2px;
    }
    
    .mobile-menu-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .mobile-menu-btn span {
        width: 20px;
    }
    
    /* Aseguramos centrado total en pantallas pequeñas */
    .header-container,
    header.scrolled .header-container {
        justify-content: center !important;
    }
}




/* ===== SECCIÓN SOBRE EL FOTÓGRAFO - VERSIÓN ELEGANTE Y LEGIBLE ===== */
.sobre-mi {
    width: 100%;
    background-color: #0a0a0a;
    padding: 5rem 0;
    position: relative;
    border-top: 1px solid rgba(200, 180, 140, 0.1);
    border-bottom: 1px solid rgba(200, 180, 140, 0.1);
}

.sobre-mi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ===== GRID CON ALTURAS EQUILIBRADAS ===== */
.sobre-mi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

/* ===== IMAGEN (SIN CAMBIOS, ESTÁ BIEN) ===== */
.sobre-mi-imagen {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.imagen-contenedor {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 100%;
    min-height: 500px;
}

.imagen-contenedor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, filter 0.8s ease;
    filter: grayscale(20%);
}

.imagen-contenedor:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.imagen-marco {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(200, 180, 140, 0.3);
    z-index: -1;
    transition: all 0.4s;
}

.sobre-mi-imagen:hover .imagen-marco {
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border-color: rgba(200, 180, 140, 0.6);
}

.experiencia-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    background: #C8B48C;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 5px 15px rgba(200, 180, 140, 0.3);
    z-index: 10;
}

.badge-anos {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.badge-texto {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TEXTO SIMPLIFICADO Y ELEGANTE ===== */
.sobre-mi-texto {
    color: #f0eae0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center; /* Centra verticalmente el contenido */
}

.sobre-mi-subtitulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: #C8B48C;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
}

.sobre-mi-texto h2 {
    margin-bottom: 1.5rem;
}

.titulo-linea {
    font-size: 1.3rem;
    font-weight: 300;
    display: block;
    color: rgba(240, 234, 224, 0.8);
    margin-bottom: 0.2rem;
}

.titulo-destacado {
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
    display: block;
    line-height: 1.2;
    color: #f0eae0;
}

.presentacion-nombre {
    margin: 1rem 0 1.5rem;
}

.nombre-grande {
    font-size: 1.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C8B48C;
    display: inline-block;
    border-bottom: 1px solid rgba(200, 180, 140, 0.3);
    padding-bottom: 0.3rem;
}

/* ===== TEXTO FILOSÓFICO - VERSIÓN ARIAL SIMPLE Y CLARA ===== */
.texto-filosofia {
    font-family: 'Arial', sans-serif;
    margin: 0.5rem 0;
}

.filosofia-principal {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: normal;
}

.texto-destacado {
    color: #C8B48C;
    font-weight: 600;
}

.frase-emergente {
    margin: 1rem 0;
}

.frase-emergente p {
    font-size: 1.3rem;
    line-height: 1.4;
    color: #f0eae0;
    font-family: 'Arial', sans-serif;
    font-weight: normal;
}

.frase-emergente strong {
    color: #C8B48C;
    font-weight: 700;
}

/* Lista */
.lista-momentos {
    list-style: none;
    margin: 1.2rem 0;
    font-family: 'Arial', sans-serif;
}

.lista-momentos li {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
    font-weight: normal;
}

.lista-momentos li::before {
    content: '✦';
    color: #C8B48C;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Texto discreto más limpio */
.texto-discreto {
    margin: 1.2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(200, 180, 140, 0.1);
}

.texto-discreto p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(240, 234, 224, 0.9);
}

.texto-enfasis {
    color: #C8B48C;
}

/* Estadísticas */
.sobre-mi-destacado {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(200, 180, 140, 0.1);
    border-bottom: 1px solid rgba(200, 180, 140, 0.1);
    font-family: 'Arial', sans-serif;
}

.destacado-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.destacado-numero {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C8B48C;
    font-family: 'Arial', sans-serif;
    line-height: 1.2;
}

.destacado-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(240, 234, 224, 0.5);
    font-family: 'Arial', sans-serif;
}

/* Firma simplificada */
.sobre-mi-firma {
    margin: 1rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: #C8B48C;
}

/* Botón */
.sobre-mi-boton {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid #C8B48C;
    color: #f0eae0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
    margin-top: 0.5rem;
}

.sobre-mi-boton:hover {
    background: #C8B48C;
    color: #0a0a0a;
}

.boton-flecha {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.sobre-mi-boton:hover .boton-flecha {
    transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .sobre-mi-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .imagen-contenedor {
        min-height: 400px;
    }
    
    .sobre-mi-texto {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .sobre-mi {
        padding: 3rem 0;
    }
    
    .titulo-destacado {
        font-size: 2.2rem;
    }
    
    .frase-emergente p {
        font-size: 1.3rem;
    }
    
    .lista-momentos li {
        font-size: 1.1rem;
    }
    
    .sobre-mi-destacado {
        flex-direction: column;
        gap: 1rem;
    }
    
    .experiencia-badge {
        width: 60px;
        height: 60px;
        bottom: -10px;
        right: -10px;
    }
    
    .badge-anos {
        font-size: 1.3rem;
    }
}






/* ===== SECCIÓN "CREEMOS JUNTOS" CON CARRUSEL LATERAL ===== */
.creemos-juntos {
    width: 100%;
    background-color: #0a0a0a;
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid rgba(200, 180, 140, 0.1);
    border-bottom: 1px solid rgba(200, 180, 140, 0.1);
}

.creemos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.creemos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ===== COLUMNA IZQUIERDA - TEXTO ===== */
.creemos-texto {
    color: #f0eae0;
    padding-right: 2rem;
}

.creemos-subtitulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: #C8B48C;
    margin-bottom: 1.5rem;
    display: block;
    text-transform: uppercase;
}

.creemos-frase {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #f0eae0;
}

.creemos-pregunta {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(240, 234, 224, 0.8);
    margin-bottom: 2.5rem;
    font-style: italic;
}

/* Acción y botón */
.creemos-accion {
    margin-bottom: 2rem;
}

.creemos-boton {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid #C8B48C;
    color: #f0eae0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.creemos-boton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #C8B48C;
    transition: left 0.4s ease;
    z-index: -1;
}

.creemos-boton:hover {
    color: #0a0a0a;
}

.creemos-boton:hover::before {
    left: 0;
}

.creemos-boton .boton-flecha {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.creemos-boton:hover .boton-flecha {
    transform: translateX(5px);
}

.creemos-disponibilidad {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(200, 180, 140, 0.5);
    text-transform: uppercase;
}

/* Detalles decorativos */
.creemos-detalles {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.detalle-linea {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 180, 140, 0.3), transparent);
}

.detalle-texto {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: rgba(200, 180, 140, 0.5);
    text-transform: uppercase;
    white-space: nowrap;
}

/* ===== COLUMNA DERECHA - CARRUSEL ===== */
.creemos-carrusel {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4; /* Formato vertical elegante */
    max-width: 400px;
    margin-left: auto;
}

.carrusel-contenedor {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
}

.carrusel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    border-radius: 4px;
}

.carrusel-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Marco decorativo alrededor del carrusel */
.carrusel-contenedor::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid rgba(200, 180, 140, 0.3);
    z-index: 1;
    border-radius: 4px;
    pointer-events: none;
}

/* Controles del carrusel */
.carrusel-controles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 0 0.5rem;
}

.carrusel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(200, 180, 140, 0.3);
    color: #C8B48C;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.carrusel-btn:hover {
    background: #C8B48C;
    color: #0a0a0a;
    border-color: #C8B48C;
}

.carrusel-indicadores {
    display: flex;
    gap: 0.8rem;
}

.carrusel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(200, 180, 140, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carrusel-dot.active {
    background: #C8B48C;
    transform: scale(1.3);
    width: 10px;
    height: 10px;
}

.carrusel-dot:hover {
    background: #C8B48C;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .creemos-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .creemos-texto {
        text-align: center;
        padding-right: 0;
        order: 2; /* Texto abajo en móvil */
    }
    
    .creemos-carrusel {
        margin: 0 auto;
        order: 1; /* Carrusel arriba en móvil */
    }
    
    .creemos-detalles {
        justify-content: center;
    }
    
    .creemos-frase {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .creemos-juntos {
        padding: 4rem 0;
    }
    
    .creemos-frase {
        font-size: 1.8rem;
    }
    
    .creemos-pregunta {
        font-size: 1.2rem;
    }
    
    .creemos-boton {
        padding: 0.8rem 2rem;
    }
    
    .carrusel-controles {
        padding: 0;
    }
}






/* ===== SECCIÓN DE TESTIMONIOS CON FOTOS ===== */
.testimonios-seccion {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    background-color: #0a0a0a;
}

/* Slides */
.testimonios-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonio-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    visibility: hidden;
}

.testimonio-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Imagen de fondo */
.testimonio-imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    transform: scale(1);
    transition: transform 8s ease;
}

.testimonio-slide.active .testimonio-imagen {
    transform: scale(1.05);
}

/* Overlay oscuro con gradiente */
.testimonio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

/* Contenido centrado */
.testimonio-contenido {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
    z-index: 3;
    color: #f0eae0;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -30%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.testimonio-texto {
    position: relative;
    padding: 2rem;
}

/* Comilla decorativa */
.testimonio-comilla {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: #C8B48C;
    opacity: 0.3;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}

/* Texto del testimonio */
.testimonio-cita {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #f0eae0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Autor */
.testimonio-autor {
    margin-top: 1.5rem;
}

.autor-nombre {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #C8B48C;
    display: block;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.autor-evento {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: rgba(240, 234, 224, 0.6);
    display: block;
    font-style: italic;
}

/* Botones de navegación */
.testimonio-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200, 180, 140, 0.3);
    color: #C8B48C;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
    font-family: 'Montserrat', sans-serif;
}

.testimonio-btn:hover {
    background: #C8B48C;
    color: #0a0a0a;
    border-color: #C8B48C;
    transform: translateY(-50%) scale(1.1);
}

.testimonio-prev {
    left: 2rem;
}

.testimonio-next {
    right: 2rem;
}

/* Indicadores (dots) */
.testimonio-indicadores {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.testimonio-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(240, 234, 224, 0.3);
    border: 1px solid rgba(200, 180, 140, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonio-dot.active {
    background: #C8B48C;
    border-color: #C8B48C;
    transform: scale(1.3);
    width: 14px;
    height: 14px;
}

.testimonio-dot:hover {
    background: #C8B48C;
    border-color: #C8B48C;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .testimonios-seccion {
        height: 80vh;
        min-height: 500px;
    }
    
    .testimonio-cita {
        font-size: 1.6rem;
    }
    
    .testimonio-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .testimonio-prev {
        left: 1rem;
    }
    
    .testimonio-next {
        right: 1rem;
    }
}

@media (max-width: 600px) {
    .testimonios-seccion {
        height: 70vh;
        min-height: 450px;
    }
    
    .testimonio-cita {
        font-size: 1.3rem;
    }
    
    .testimonio-texto {
        padding: 1rem;
    }
    
    .testimonio-comilla {
        font-size: 4rem;
        top: -20px;
    }
    
    .testimonio-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .testimonio-indicadores {
        bottom: 1rem;
    }
}





/* ===== FOOTER ESTILO WINDOWS 10 ===== */
.footer-windows {
    width: 100%;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(200, 180, 140, 0.15);
    padding: 0.8rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 100;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: rgba(240, 234, 224, 0.7);
}

/* Número de contacto */
.footer-contacto {
    color: #C8B48C;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
    border-bottom: 1px solid transparent;
}

.footer-contacto:hover {
    color: #f0eae0;
    border-bottom-color: #C8B48C;
}

/* Separador */
.footer-separador {
    color: rgba(200, 180, 140, 0.3);
    font-weight: 300;
    font-size: 1rem;
}

/* Redes sociales */
.footer-redes {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-redes-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(240, 234, 224, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.2rem 0.3rem;
    border-radius: 3px;
}

.footer-redes-link:hover {
    color: #C8B48C;
    background: rgba(200, 180, 140, 0.05);
}

.icono-red {
    width: 16px;
    height: 16px;
}

.redes-nombre {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Copyright */
.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(240, 234, 224, 0.5);
}

.copyright-destacado {
    color: #C8B48C;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .footer-container {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .footer-separador {
        display: none; /* Ocultamos separadores en móvil */
    }
    
    .footer-redes {
        order: 1;
        width: 100%;
        justify-content: center;
    }
    
    .footer-contacto {
        order: 2;
        width: 100%;
        text-align: center;
    }
    
    .footer-copyright {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-windows {
        padding: 1rem 0;
    }
    
    .footer-redes-link {
        flex-direction: column;
        gap: 0.1rem;
    }
    
    .icono-red {
        width: 18px;
        height: 18px;
    }
    
    .redes-nombre {
        font-size: 0.6rem;
    }
}