/* --- Variables y Estilo Base --- */
:root {
    --bg-color: #fcf7f2;       /* Fondo Crema */
    --gold-main: #b07d2a;      /* Dorado Oscuro */
    --gold-light: #c4b930;     /* Dorado Claro */
    --text-dark: #1a1a1a;      /* Negro Suave */
    --footer-bg: #111111;      /* Negro Footer */
    --footer-text: #cccccc;    /* Texto Footer */
    --white: #ffffff;
    
    --font-heading: 'GFS Didot', serif;
    --font-sub: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Barra Superior --- */
.top-bar {
    background-color: var(--gold-main);
    color: var(--white);
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 400;
}

#top-bar-text { opacity: 0; transform: translateY(10px); transition: all 0.5s ease; }
.text-visible { opacity: 1 !important; transform: translateY(0) !important; }

/* --- Navegación --- */
.navbar {
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.nav-left i, .nav-right i { font-size: 1.6rem; cursor: pointer; transition: 0.3s; }
.nav-left i:hover, .nav-right i:hover { color: var(--gold-main); }

.nav-center { position: absolute; left: 50%; transform: translateX(-50%); text-align: center; }
.brand-name { font-family: var(--font-heading); font-size: 2.2rem; color: var(--text-dark); line-height: 1; }
.brand-subtitle { font-family: var(--font-sub); font-size: 0.65rem; color: var(--gold-main); letter-spacing: 3px; display: block; margin-top: 5px; }

/* --- Menú Móvil --- */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.6); z-index: 999;
    opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.menu-content {
    background: var(--bg-color); width: 85%; max-width: 350px; height: 100%; padding: 2rem;
    transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-overlay.active .menu-content { transform: translateX(0); }

.menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; border-bottom: 1px solid #ddd; padding-bottom: 1rem; }
.menu-title { font-family: var(--font-sub); letter-spacing: 2px; color: var(--gold-main); }
.menu-content ul { list-style: none; }
.menu-content ul li { margin-bottom: 1.5rem; }
.menu-content a { text-decoration: none; font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-dark); transition: 0.3s; }
.menu-content a:hover { color: var(--gold-main); padding-left: 10px; }

/* --- Hero Section --- */
.hero {
    position: relative; height: 80vh;
    background-image: url('https://images.unsplash.com/photo-1618220179428-22790b461013?q=80&w=2000&auto=format&fit=crop');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white);
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.35); }
.hero-content { position: relative; z-index: 2; padding: 0 20px; max-width: 800px; }
.hero-content h2 { font-family: var(--font-heading); font-size: 3.5rem; margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.2rem; margin-bottom: 2.5rem; letter-spacing: 0.5px; }

.btn-primary {
    display: inline-block; padding: 15px 45px;
    border: 1px solid var(--white); color: var(--white);
    text-decoration: none; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem;
    transition: all 0.3s; background: rgba(0,0,0,0.2);
}
.btn-primary:hover { background: var(--white); color: var(--text-dark); }

/* --- Productos --- */
.products { padding: 5rem 5%; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; color: var(--text-dark); }
.section-subtitle { font-family: var(--font-sub); color: var(--gold-main); letter-spacing: 1px; font-size: 0.9rem; margin-top: 10px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 3rem; }
.product-card { transition: 0.3s; }
.image-box {
    width: 100%; height: 380px; background-color: #eee;
    margin-bottom: 1.2rem; position: relative; overflow: hidden;
}
.tag {
    background: var(--gold-main); color: white; padding: 6px 12px;
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
    position: absolute; top: 15px; left: 15px;
}
.product-info h4 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 5px; color: var(--text-dark); }
.product-info .price { color: var(--gold-main); font-weight: 600; font-family: var(--font-sub); margin-bottom: 15px; display: block; }

.btn-add {
    width: 100%; padding: 12px; background: transparent;
    border: 1px solid #ccc; color: var(--text-dark);
    cursor: pointer; text-transform: uppercase; letter-spacing: 1px; font-size: 0.75rem;
    transition: 0.3s;
}
.btn-add:hover { background: var(--text-dark); color: var(--white); border-color: var(--text-dark); }

/* --- Footer Moderno --- */
.site-footer {
    background-color: var(--footer-bg); color: var(--footer-text);
    padding-top: 4rem; font-size: 0.9rem; margin-top: auto;
}
.footer-container {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 3rem;
}
.site-footer h5 { font-family: var(--font-sub); color: var(--white); letter-spacing: 2px; margin-bottom: 1.5rem; font-size: 0.8rem; text-transform: uppercase; }
.footer-logo { font-family: var(--font-heading); font-size: 1.8rem; color: var(--white); margin-bottom: 1rem; }
.footer-desc { line-height: 1.6; margin-bottom: 1.5rem; max-width: 300px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a { text-decoration: none; color: var(--footer-text); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-main); }
.social-icons i { font-size: 1.5rem; margin-right: 15px; cursor: pointer; transition: 0.3s; }
.social-icons i:hover { color: var(--gold-main); }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; margin-top: 1rem; }
.newsletter-form input { background: transparent; border: none; border-bottom: 1px solid #555; padding: 10px 0; color: var(--white); outline: none; font-family: var(--font-body); }
.newsletter-form button { background: var(--white); color: var(--footer-bg); border: none; padding: 10px; text-transform: uppercase; font-weight: bold; letter-spacing: 1px; cursor: pointer; margin-top: 10px; transition: 0.3s; }
.newsletter-form button:hover { background: var(--gold-main); color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: #666; }

/* --- WhatsApp Flotante --- */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px;
    bottom: 40px; right: 40px;
    background-color: #25d366; color: #FFF;
    border-radius: 50px; text-align: center; font-size: 35px;
    box-shadow: 2px 2px 3px #999; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease-in-out; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #20ba5a; }

/* --- Responsive --- */
@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
    .navbar { padding: 1rem; }
    .brand-name { font-size: 1.8rem; }
    .hero-content h2 { font-size: 2.5rem; }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; display: flex; }
    .footer-desc { margin: 0 auto 1.5rem auto; }
    .newsletter-form { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 10px; }

    /* Ajuste botón WhatsApp para celular */
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 28px; }
}
/* =========================================
   OPTIMIZACIÓN MÓVIL "PRO" (AGREGAR AL FINAL)
   ========================================= */

/* 1. Evita que el iPhone haga zoom in molesto al escribir en el formulario */
input, select, textarea {
    font-size: 16px !important; 
}

/* 2. Quita el parpadeo azul feo al tocar botones en Android */
* {
    -webkit-tap-highlight-color: transparent;
}

/* 3. Hace los botones más "gorditos" para el dedo (Touch Friendly) */
@media (max-width: 600px) {
    .btn-primary, .btn-add, button {
        min-height: 44px; /* Tamaño mínimo recomendado por Apple/Google */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Ajuste para que el botón de WhatsApp no tape el footer */
    .whatsapp-float {
        bottom: 20px;
        right: 15px;
    }
}
/* ===================================================
   PÁGINAS INTERNAS – HISTORIA
   Estilo editorial / lujo (Zara Home / RH)
=================================================== */

.page-wrapper.historia {
    background-color: #faf7f3;
}

/* ================= HERO INTERNO ================= */
.page-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(
        rgba(250,247,243,0.95),
        rgba(250,247,243,0.95)
    ),
    url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
}

.page-hero h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    letter-spacing: 0.12em;
    color: #2b2b2b;
    margin-bottom: 0.8rem;
}

.page-hero p {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    color: #6b6b6b;
    text-transform: uppercase;
}

/* ================= CONTENIDO ================= */
.page-content {
    max-width: 1200px;      /* ocupa bien la pantalla */
    margin: 0 auto;
    padding: 5rem 3rem 6rem;
}

/* GRID EDITORIAL */
.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* IMAGEN */
.historia-imagen {
    width: 100%;
    height: 520px;
    background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?q=80&w=1200&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    border-radius: 2px;
}

/* TEXTO */
.historia-texto {
    max-width: 520px;
}

.historia-texto p {
    font-family: 'GFS Didot', serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #3a3a3a;
    margin-bottom: 2.2rem;
}

/* DETALLE ELEGANTE */
.historia-texto p:last-child::after {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background: #c9b28d;
    margin-top: 2.5rem;
    opacity: 0.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .historia-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .historia-imagen {
        height: 380px;
    }

    .historia-texto {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-hero h2 {
        font-size: 2.2rem;
    }

    .page-content {
        padding: 3rem 1.5rem 4rem;
    }

    .historia-texto p {
        font-size: 1.05rem;
    }
}

/* ===================================================
   PÁGINAS INTERNAS – TIENDAS
   Estilo premium / editorial / escalable
=================================================== */

.page-wrapper.tiendas {
    background-color: #faf7f3;
}

/* HERO INTERNO */
.page-wrapper.tiendas .page-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(
        rgba(250,247,243,0.95),
        rgba(250,247,243,0.95)
    ),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1800&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
}

.page-wrapper.tiendas .page-hero h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    letter-spacing: 0.12em;
    color: #2b2b2b;
    margin-bottom: 0.8rem;
}

.page-wrapper.tiendas .page-hero p {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    color: #6b6b6b;
    text-transform: uppercase;
}

/* CONTENIDO */
.page-wrapper.tiendas .page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
}

/* GRID DE TIENDAS */
.tiendas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
}

/* CARD TIENDA */
.tienda-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* IMAGEN */
.tienda-imagen {
    overflow: hidden;
    max-height: 460px;
}

.tienda-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tienda-imagen img:hover {
    transform: scale(1.05);
}

/* INFO */
.tienda-info h3 {
    font-family: 'GFS Didot', serif;
    font-size: 2.1rem;
    margin-bottom: 1rem;
    color: #2b2b2b;
}

.tienda-direccion {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: #6b6b6b;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* MAPA */
.tienda-mapa iframe {
    width: 100%;
    height: 260px;
    border: none;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.tienda-mapa iframe:hover {
    filter: grayscale(0%);
}

/* MENSAJE FUTURO */
.tiendas-futuro {
    margin-top: 6rem;
    text-align: center;
}

.tiendas-futuro p {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: #9a8c6c;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .tienda-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tienda-imagen img {
        height: 420px;
        object-position: center 40%;
    }
}

@media (max-width: 600px) {
    .page-wrapper.tiendas .page-hero h2 {
        font-size: 2.2rem;
    }

    .tienda-info h3 {
        font-size: 1.7rem;
    }

    .tiendas-futuro p {
        font-size: 0.95rem;
    }
}
/* ===================================================
   PÁGINAS INTERNAS – ENVÍOS Y DEVOLUCIONES
   Estilo editorial / lujo / mobile-first
=================================================== */

.page-wrapper.envios {
    background-color: #faf7f3;
}

/* HERO */
.page-wrapper.envios .page-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(
        rgba(250,247,243,0.96),
        rgba(250,247,243,0.96)
    ),
    url("https://images.unsplash.com/photo-1529070538774-1843cb3265df?q=80&w=1800&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
}

.page-wrapper.envios .page-hero h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    letter-spacing: 0.12em;
    color: #2b2b2b;
    margin-bottom: 0.8rem;
}

.page-wrapper.envios .page-hero p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    color: #6b6b6b;
    text-transform: uppercase;
}

/* CONTENIDO */
.page-wrapper.envios .page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3.5rem 2rem 4.5rem;
}

/* BLOQUES DE INFORMACIÓN */
.info-block {
    margin-bottom: 4.5rem;
}

.info-block h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: #2b2b2b;
    margin-bottom: 1.8rem;
    position: relative;
}

/* línea elegante bajo títulos */
.info-block h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: #c9b28d;
    margin-top: 1rem;
    opacity: 0.6;
}

.info-block p {
    font-family: 'GFS Didot', serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

/* resaltados */
.info-block strong {
    font-weight: 600;
    color: #2b2b2b;
}

/* RESPONSIVE – TABLET */
@media (max-width: 1024px) {
    .page-wrapper.envios .page-content {
        padding: 4rem 2rem 5rem;
    }

    .info-block h3 {
        font-size: 1.45rem;
    }
}

/* RESPONSIVE – MÓVIL (iPhone / Android) */
@media (max-width: 600px) {
    .page-wrapper.envios .page-hero {
        padding: 4.5rem 1.5rem 3.5rem;
    }

    .page-wrapper.envios .page-hero h2 {
        font-size: 2.2rem;
    }

    .page-wrapper.envios .page-hero p {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .page-wrapper.envios .page-content {
        padding: 3rem 1.5rem 4rem;
    }

    .info-block {
        margin-bottom: 3.5rem;
    }

    .info-block h3 {
        font-size: 1.3rem;
    }

    .info-block p {
        font-size: 1.02rem;
        line-height: 1.8;
    }
}

/* ===============================
   PAGE HERO
================================ */
.page-hero {
    padding: 40px 20px 25px;
    text-align: center;
    background: linear-gradient(135deg, #f7f7f7, #ffffff);
    border-bottom: 1px solid #e5e5e5;
}

.page-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
}

/* ===============================
   CONTENIDO FAQ
================================ */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px 20px 50px;
}

/* Bloque de pregunta */
.page-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin: 22px 0 8px;
    position: relative;
    padding-left: 14px;
}

.page-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 16px;
    background: #111827;
    border-radius: 2px;
}

/* Respuesta */
.page-content p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 12px 14px;
}

/* Separador sutil */
.page-content h3:not(:first-child) {
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 1.7rem;
    }

    .page-content {
        padding: 30px 18px 45px;
    }

    .page-content h3 {
        font-size: 1rem;
    }

    .page-content p {
        font-size: 0.93rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 35px 15px 20px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-content {
        padding: 25px 15px 40px;
    }
}
/* ===================================================
   PÁGINAS LEGALES – TÉRMINOS, POLÍTICAS, FAQ
   Editorial premium · limpio · compacto
=================================================== */

.page-wrapper.legal .page-content,
.page-wrapper.faq .page-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 3rem 1.5rem 3.5rem;
    line-height: 1.6;
    color: #2e2e2e;
}

/* ================= TITULOS ================= */

.page-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1c1c1c;
    margin-top: 2rem;
    margin-bottom: 0.45rem;
    position: relative;
}

/* Primer título más cercano */
.page-content h3:first-of-type {
    margin-top: 1.2rem;
}

/* Línea editorial */
.page-content h3::after {
    content: "";
    display: block;
    width: 36px;
    height: 1px;
    background: #c8b98a;
    margin-top: 0.35rem;
}

/* ================= TEXTO ================= */

.page-content p {
    font-family: 'Lato', sans-serif;
    font-size: 0.93rem;
    color: #4b4b4b;
    margin-bottom: 0.75rem;
}

/* Primer párrafo (intro legal) */
.page-content > p:first-child {
    font-size: 0.95rem;
    color: #3a3a3a;
    margin-bottom: 1.2rem;
}

/* Resaltados */
.page-content strong {
    font-weight: 600;
    color: #000;
}

/* ================= LINKS ================= */

.page-content a {
    color: #9b8d6c;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.25s ease;
}

.page-content a:hover {
    border-bottom-color: #9b8d6c;
}

/* ================= SEPARACIÓN VISUAL SUAVE ================= */

.page-content article:not(:last-child) {
    margin-bottom: 0.8rem;
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width: 768px) {
    .page-wrapper.legal .page-content,
    .page-wrapper.faq .page-content {
        padding: 2.4rem 1.2rem 3rem;
    }

    .page-content h3 {
        font-size: 0.98rem;
        margin-top: 1.7rem;
    }

    .page-content p {
        font-size: 0.91rem;
        margin-bottom: 0.7rem;
    }
}

@media (max-width: 480px) {
    .page-wrapper.legal .page-content,
    .page-wrapper.faq .page-content {
        padding: 2rem 1rem 2.5rem;
    }

    .page-content h3 {
        font-size: 0.95rem;
        margin-top: 1.5rem;
    }

    .page-content p {
        font-size: 0.89rem;
        line-height: 1.55;
    }
}
/* ===================================================
   LIBRO DE RECLAMACIONES – QORI HOME
   Estilo editorial · elegante · compacto
=================================================== */

.page-wrapper.legal {
    background: #faf9f7;
}

/* HERO */
.page-hero {
    text-align: center;
    padding: 3.2rem 1.5rem 2.2rem;
}

.page-hero h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1c1c1c;
    margin-bottom: 0.4rem;
}

.page-hero p {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #6a6a6a;
}

/* CONTENIDO */
.page-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 2.8rem 1.5rem 3.8rem;
    font-family: 'Lato', sans-serif;
    color: #2f2f2f;
}

.page-content > p {
    font-size: 0.95rem;
    margin-bottom: 1.6rem;
    color: #444;
}

/* TÍTULOS */
.page-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1f1f1f;
    margin: 2rem 0 0.8rem;
    position: relative;
}

.page-content h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    background: #c2b28a;
    margin-top: 0.45rem;
}

/* FORMULARIO */
.reclamos-form {
    background: #ffffff;
    border-radius: 14px;
    padding: 2.2rem 2rem 2.5rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    margin-top: 2rem;
}

/* FILAS */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input {
    flex: 1;
}

/* INPUTS */
.reclamos-form input,
.reclamos-form select,
.reclamos-form textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #333;
    background: #fafafa;
    transition: border 0.3s ease, background 0.3s ease;
    margin-bottom: 1rem;
}

.reclamos-form input::placeholder,
.reclamos-form textarea::placeholder {
    color: #9a9a9a;
}

.reclamos-form input:focus,
.reclamos-form select:focus,
.reclamos-form textarea:focus {
    outline: none;
    border-color: #bfa76f;
    background: #fff;
}

/* TEXTAREA */
.reclamos-form textarea {
    resize: vertical;
    min-height: 90px;
}

/* BOTÓN */
.btn-primary {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.75rem 2.4rem;
    border-radius: 40px;
    border: none;
    background: #1c1c1c;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s ease;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
}

/* BLOQUE LEGAL */
.legal-box {
    margin-top: 2.4rem;
    padding: 1.4rem 1.6rem;
    background: #f4f2ed;
    border-left: 3px solid #c2b28a;
    border-radius: 10px;
}

.legal-box p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #4a4a4a;
    margin-bottom: 0.6rem;
}

.legal-box p:last-child {
    margin-bottom: 0;
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width: 768px) {

    .page-hero h2 {
        font-size: 1.6rem;
    }

    .reclamos-form {
        padding: 1.8rem 1.5rem 2.2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .page-hero {
        padding: 2.4rem 1rem 1.8rem;
    }

    .page-content {
        padding: 2.2rem 1rem 3rem;
    }

    .page-content h3 {
        font-size: 0.95rem;
        margin-top: 1.6rem;
    }

    .reclamos-form input,
    .reclamos-form textarea,
    .reclamos-form select {
        font-size: 0.88rem;
    }
}
