/* ESTRUCTURA PREMIUM CUSTODIA - LEANDRO EKMAN */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-color: #0a0a0a;
    --surface: #141414;
    --gold: #d4af37;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-color); color: var(--text-main); font-family: 'Lato', sans-serif; line-height: 1.8; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; color: var(--gold); font-weight: normal; }

/* CABECERA MINIMALISTA Y CENTRADA */
header { background: #000; border-bottom: 1px solid var(--border-color); padding: 2.5rem 5% 1.5rem; display: flex; flex-direction: column; align-items: center; position: sticky; top: 0; z-index: 1000; }
.brand-logo { font-size: 2.8rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 5px; text-align: center; }
.brand-subtitle { font-size: 0.75rem; letter-spacing: 6px; color: var(--text-muted); text-transform: uppercase; text-align: center; }
nav { margin-top: 25px; width: 100%; display: flex; justify-content: center; gap: 35px; flex-wrap: wrap; }
nav a { color: var(--text-main); text-decoration: none; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; transition: color 0.3s; }
nav a:hover { color: var(--gold); }
.lang-selector { background: transparent; border: 1px solid var(--border-color); color: var(--text-muted); padding: 5px 10px; font-family: 'Lato'; font-size: 0.7rem; cursor: pointer; text-transform: uppercase; }

/* CONTENEDORES PREMIUM */
.premium-container { max-width: 1000px; margin: 6rem auto; padding: 0 2rem; }
.page-title { font-size: 3.5rem; text-align: center; margin-bottom: 4rem; border-bottom: 1px solid var(--border-color); padding-bottom: 1.5rem; }
.text-content p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.1rem; font-weight: 300; }
.text-content h3 { font-size: 1.8rem; margin: 3rem 0 1rem; border-left: 3px solid var(--gold); padding-left: 15px; }

/* FORMULARIOS DE ALTA GAMA */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info { background: var(--surface); padding: 3rem; border: 1px solid var(--border-color); }
.contact-info p { margin-bottom: 1rem; color: var(--text-muted); }
.contact-info strong { color: var(--text-main); }
.gold-form input, .gold-form textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border-color); color: var(--text-main); padding: 1rem 0; margin-bottom: 2.5rem; font-family: 'Lato'; font-size: 1rem; outline: none; transition: border-color 0.3s; }
.gold-form input:focus, .gold-form textarea:focus { border-bottom-color: var(--gold); }
.gold-button { background: var(--gold); color: #000; border: none; padding: 1rem 3rem; font-family: 'Lato'; text-transform: uppercase; letter-spacing: 3px; cursor: pointer; font-weight: bold; width: 100%; transition: background 0.3s; }
.gold-button:hover { background: var(--text-main); }

/* GRID SITEMAP */
.sitemap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.sitemap-box { background: var(--surface); padding: 3rem; border: 1px solid var(--border-color); }
.sitemap-box ul { list-style: none; }
.sitemap-box li { margin-bottom: 1rem; }
.sitemap-box a { color: var(--text-muted); text-decoration: none; font-size: 1.1rem; transition: color 0.3s; }
.sitemap-box a:hover { color: var(--gold); }

/* FOOTER ELEGANTE */
footer { border-top: 1px solid var(--border-color); background: #050505; padding: 5rem 5% 2rem; margin-top: 6rem; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; max-width: 1200px; margin: 0 auto 4rem; }
.footer-grid h4 { font-size: 1.3rem; margin-bottom: 1.5rem; letter-spacing: 1px; }
.footer-grid p, .footer-grid a { color: var(--text-muted); font-size: 0.9rem; text-decoration: none; display: block; margin-bottom: 0.8rem; }
.footer-grid a:hover { color: var(--gold); }
/* Sustituye o añade esta regla en tu style.css para hacer el logo más grande */
.kit-digital { 
    margin: 0 auto 3rem; 
    display: block; 
    max-width: 700px; /* Aumentado de 180px a 350px */
    width: 100%;
    filter: grayscale(100%) brightness(1.5); 
}.footer-bottom { text-align: center; color: #555; font-size: 0.8rem; border-top: 1px solid var(--border-color); padding-top: 2rem; letter-spacing: 1px;}