/* ESTÉTICA EDITORIAL SPLIT-GRID - CAROLINA VÁZQUEZ (PELUQUERÍA) */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,600&family=Prata&display=swap');

:root {
    --salon-bg: #FAF9F6;       /* Blanco Alabastro */
    --salon-dark: #111111;     /* Negro Tinta */
    --salon-accent: #591C24;   /* Borgoña Oscuro */
    --salon-border: 2px solid var(--salon-dark);
    --transition: all 0.3s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background-color: var(--salon-bg); color: var(--salon-dark); line-height: 1.6; font-weight: 400; }
h1, h2, h3, h4 { font-family: 'Prata', serif; font-weight: 400; color: var(--salon-dark); }

/* CONTENEDOR PRINCIPAL TIPO REVISTA */
.magazine-wrapper { max-width: 1600px; margin: 0 auto; border-left: var(--salon-border); border-right: var(--salon-border); min-height: 100vh; display: flex; flex-direction: column; background: var(--salon-bg); }

/* INFO BAR SUPERIOR */
.top-info { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: var(--salon-border); text-align: center; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.top-info > div { padding: 12px; border-right: var(--salon-border); }
.top-info > div:last-child { border-right: none; }

/* CABECERA (HEADER) */
header { display: flex; justify-content: space-between; align-items: stretch; border-bottom: var(--salon-border); position: sticky; top: 0; background: var(--salon-bg); z-index: 1000; }
.brand { padding: 30px; border-right: var(--salon-border); display: flex; flex-direction: column; justify-content: center; }
.brand h1 { font-size: 2.2rem; text-transform: uppercase; letter-spacing: 2px; line-height: 1; }
.brand h1 span { color: var(--salon-accent); font-style: italic; }
.brand p { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; margin-top: 10px; font-weight: 600; }
nav { display: flex; flex: 1; }
.nav-links { display: flex; list-style: none; width: 100%; }
.nav-links li { flex: 1; display: flex; border-right: var(--salon-border); }
.nav-links a { width: 100%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--salon-dark); font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.nav-links a:hover { background: var(--salon-accent); color: var(--salon-bg); }
.lang-box { display: flex; align-items: center; padding: 0 20px; }
.lang-selector { border: none; background: transparent; color: var(--salon-dark); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; cursor: pointer; outline: none; }
.lang-selector:hover { color: var(--salon-accent); }

/* HERO SECTION (SPLIT-SCREEN EXTREMO) */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 75vh; border-bottom: var(--salon-border); }
.hero-content { padding: 80px 10%; display: flex; flex-direction: column; justify-content: center; border-right: var(--salon-border); }
.hero-content h2 { font-size: 4rem; line-height: 1.1; margin-bottom: 30px; text-transform: uppercase; }
.hero-content p { font-size: 1.2rem; font-weight: 300; border-left: 4px solid var(--salon-accent); padding-left: 20px; }
.hero-image { position: relative; }
.hero-image img { position: absolute; width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%) contrast(1.1); }

/* CONTENEDORES Y TÍTULOS */
.content-block { border-bottom: var(--salon-border); }
.section-header { padding: 40px; border-bottom: var(--salon-border); text-align: center; background: var(--salon-dark); color: var(--salon-bg); }
.section-title { font-size: 3rem; color: var(--salon-bg); margin: 0; text-transform: uppercase; letter-spacing: 2px; }

/* SERVICIOS (REGLA: SOLO TÍTULOS - FORMATO CATÁLOGO) */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-card { border-right: var(--salon-border); border-bottom: var(--salon-border); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.service-card:nth-child(3n) { border-right: none; }
.service-card img { width: 100%; height: 400px; object-fit: cover; filter: grayscale(80%); transition: filter 0.5s ease, transform 0.5s ease; }
.service-card:hover img { filter: grayscale(0%); transform: scale(1.05); }
.service-card h3 { padding: 25px; margin: 0; font-size: 1.3rem; text-align: center; border-top: var(--salon-border); background: var(--salon-bg); text-transform: uppercase; position: relative; z-index: 2; transition: var(--transition); }
.service-card:hover h3 { background: var(--salon-accent); color: var(--salon-bg); }

/* TESTIMONIOS (REGLA: 100% ANÓNIMOS - FORMATO CITA EDITORIAL) */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; }
.testimonial-card { padding: 60px; border-right: var(--salon-border); border-bottom: var(--salon-border); display: flex; align-items: center; justify-content: center; text-align: center; background: #fff; }
.testimonial-card:nth-child(even) { border-right: none; }
.testimonial-card p { font-family: 'Prata', serif; font-size: 1.5rem; color: var(--salon-dark); line-height: 1.5; position: relative; }
.testimonial-card p::before { content: '“'; display: block; font-size: 4rem; color: var(--salon-accent); line-height: 0.5; margin-bottom: 20px; }

/* DUDAS (REGLA: EXACTAMENTE 2, H3 + P - FORMATO COLUMNAS) */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; }
.faq-box { padding: 60px; border-right: var(--salon-border); }
.faq-box:last-child { border-right: none; }
.faq-box h3 { font-size: 1.8rem; margin-bottom: 25px; color: var(--salon-accent); line-height: 1.3; }
.faq-box p { font-size: 1.1rem; font-weight: 300; }

/* FOOTER EDITORIAL */
footer { padding: 0; display: flex; flex-direction: column; }
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: var(--salon-border); }
.footer-columns > div { padding: 40px; border-right: var(--salon-border); }
.footer-columns > div:last-child { border-right: none; }
.footer-columns h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1.1rem; text-transform: uppercase; margin-bottom: 25px; letter-spacing: 1px; color: var(--salon-accent); }
.footer-columns p { margin-bottom: 10px; font-size: 0.95rem; }
.footer-menu-links { list-style: none; }
.footer-menu-links li { margin-bottom: 12px; }
.footer-menu-links a { color: var(--salon-dark); text-decoration: none; font-size: 0.95rem; transition: var(--transition); text-transform: uppercase; font-weight: 600; font-size: 0.85rem; }
.footer-menu-links a:hover { color: var(--salon-accent); text-decoration: underline; }

/* REGLA ESTRICTA LOGO KIT DIGITAL: BLANCO, PADDING, SIN FILTROS */
.logo-kit-local { display: block; margin: 40px auto; max-width: 280px; width: 100%; height: auto; background-color: #FFFFFF; padding: 15px; border-radius: 8px; border: var(--salon-border); }
.footer-legal-text { text-align: center; padding: 25px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; background: var(--salon-dark); color: var(--salon-bg); letter-spacing: 1px; }

/* ADAPTABILIDAD BÁSICA */
@media (max-width: 1024px) {
    .top-info { display: none; }
    header { flex-direction: column; }
    .brand { border-right: none; border-bottom: var(--salon-border); text-align: center; }
    .hero, .services-grid, .testimonial-grid, .faq-grid, .footer-columns { grid-template-columns: 1fr; }
    .hero-content, .service-card, .testimonial-card, .faq-box, .footer-columns > div { border-right: none; border-bottom: var(--salon-border); }
    .hero-image { min-height: 400px; }
    .nav-links { flex-wrap: wrap; }
    .nav-links li { min-width: 50%; border-bottom: var(--salon-border); }
    .lang-box { padding: 15px; justify-content: center; }
}