/* ESTÉTICA OBSIDIAN & LIGHT - CRISTINA DESIRÉE FOTOGRAFÍA */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --photo-bg: #121212;        /* Obsidiana / Fondo oscuro profundo */
    --photo-surface: #1E1E1E;   /* Gris Basalto / Tarjetas */
    --photo-accent: #D4A373;    /* Arena Volcánica / Dorado suave */
    --photo-text: #E0E0E0;      /* Blanco Roto / Lectura */
    --photo-text-muted: #9E9E9E;/* Gris Ceniza */
    --white: #FFFFFF;
    --transition: all 0.4s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--photo-bg); color: var(--photo-text); line-height: 1.7; font-weight: 300; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Cinzel', serif; font-weight: 400; color: var(--white); }

/* CABECERA INMERSIVA */
header { background: rgba(18, 18, 18, 0.9); backdrop-filter: blur(10px); padding: 25px 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(212, 163, 115, 0.2); }
.brand h1 { font-size: 2rem; letter-spacing: 3px; }
.brand h1 span { color: var(--photo-accent); }
.brand p { font-size: 0.75rem; letter-spacing: 5px; color: var(--photo-text-muted); text-transform: uppercase; margin-top: 5px; }
nav { display: flex; gap: 40px; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--photo-text); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; transition: var(--transition); }
.nav-links a:hover { color: var(--photo-accent); }
.lang-selector { border: none; background: var(--photo-surface); color: var(--photo-accent); padding: 8px 15px; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: var(--transition); border-radius: 2px; }
.lang-selector:hover { background: var(--photo-accent); color: var(--photo-bg); }

/* HERO (VISUAL Y CINEMATOGRÁFICO) */
.hero { display: flex; align-items: center; justify-content: center; min-height: 90vh; position: relative; text-align: center; overflow: hidden; }
.hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(40%) contrast(1.1); }
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 5%; }
.hero-content h2 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; letter-spacing: 2px; text-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.hero-content h2 i { color: var(--photo-accent); font-style: normal; }
.hero-content p { font-size: 1.2rem; color: var(--photo-text); margin-bottom: 40px; text-shadow: 0 5px 15px rgba(0,0,0,0.8); }

/* CONTENEDORES Y TÍTULOS */
.content-block { padding: 100px 5%; max-width: 1400px; margin: 0 auto; }
.section-title { font-size: 3rem; margin-bottom: 60px; text-align: center; letter-spacing: 2px; }
.section-title::after { content: ''; display: block; width: 60px; height: 1px; background: var(--photo-accent); margin: 20px auto 0; }

/* SERVICIOS (REGLA: SOLO TÍTULOS, DISEÑO TIPO GALERÍA MASONRY) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 20px; }
.service-card { position: relative; overflow: hidden; height: 450px; cursor: crosshair; }
.service-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: transform 1s ease, opacity 0.5s ease; filter: grayscale(30%); }
.service-card:hover img { transform: scale(1.05); opacity: 1; filter: grayscale(0%); }
.service-card h3 { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(18,18,18,0.9), transparent); color: var(--white); font-size: 1.4rem; padding: 40px 30px 30px; text-align: left; margin: 0; font-family: 'Cinzel', serif; letter-spacing: 1px; }

/* TESTIMONIOS (REGLA: 100% ANÓNIMOS) */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.testimonial-card { background: var(--photo-surface); padding: 50px 40px; position: relative; border-top: 1px solid var(--photo-accent); }
.testimonial-card p { font-size: 1.1rem; color: var(--photo-text); font-style: italic; line-height: 1.9; }
.testimonial-card::before { content: '”'; position: absolute; top: -30px; left: 30px; font-family: 'Cinzel', serif; font-size: 8rem; color: var(--photo-accent); opacity: 0.15; line-height: 1; }

/* DUDAS (REGLA: EXACTAMENTE 2, H3 + P) */
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-box { background: transparent; padding: 30px 0; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-box h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--photo-accent); font-family: 'Montserrat', sans-serif; font-weight: 500; }
.faq-box p { font-size: 1.1rem; color: var(--photo-text-muted); }

/* FOOTER MINIMALISTA */
footer { background-color: var(--photo-bg); padding: 100px 5% 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-columns { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 50px; max-width: 1400px; margin: 0 auto 60px; }
.footer-columns > div { flex: 1; min-width: 200px; }
.footer-columns h4 { color: var(--photo-accent); font-size: 1.1rem; margin-bottom: 30px; letter-spacing: 3px; font-family: 'Montserrat', sans-serif; }
.footer-columns p { margin-bottom: 15px; font-size: 0.95rem; color: var(--photo-text-muted); }
.footer-menu-links { list-style: none; }
.footer-menu-links li { margin-bottom: 15px; }
.footer-menu-links a { color: var(--photo-text-muted); text-decoration: none; font-size: 0.95rem; transition: var(--transition); letter-spacing: 1px; }
.footer-menu-links a:hover { color: var(--white); }

/* REGLA DEL LOGO KIT DIGITAL (NUEVA DIRECTRIZ ESTRICTA) */
.logo-kit-local { display: block; margin: 0 auto 40px; max-width: 280px; width: 100%; height: auto; background-color: #FFFFFF; padding: 15px; border-radius: 8px; }
.footer-legal-text { text-align: center; font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; color: var(--photo-text-muted); letter-spacing: 1px; }