/* 
   Project: Fortuna del Dorado - Premium Edition 2026
   Palette: Gold (#D4AF37), Charcoal (#1A1A1A), Snow (#F9F9F9)
*/

:root {
    --oro: #D4AF37;
    --oro-dark: #B8860B;
    --negro-premium: #1A1A1A;
    --gris-fondo: #F4F4F9;
    --texto: #333333;
    --blanco: #ffffff;
    --shadow-premium: 0 10px 30px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--texto);
    background-color: var(--gris-fondo);
    line-height: 1.7;
}

h1, h2, h3, .brand { font-family: 'Outfit', sans-serif; font-weight: 800; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Barra Superior */
.top-bar {
    background: var(--negro-premium);
    color: var(--oro);
    font-size: 12px;
    text-align: center;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--oro);
}

/* Header */
.site-header {
    background: var(--blanco);
    padding: 25px 0;
    box-shadow: var(--shadow-premium);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 28px;
    color: var(--negro-premium);
    text-decoration: none;
    letter-spacing: -1px;
}

.brand span { color: var(--oro); }

.main-nav ul { display: flex; list-style: none; gap: 35px; }
.main-nav a {
    text-decoration: none;
    color: var(--negro-premium);
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
}
.main-nav a:hover { color: var(--oro); }

/* Hero */
.hero-gold {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #ffffff, #e5e7eb);
    text-align: center;
}

.hero-gold h1 { font-size: 52px; margin-bottom: 20px; line-height: 1.1; }
.hero-gold p { font-size: 20px; color: #666; max-width: 800px; margin: 0 auto; }

/* Ranking Cards */
.ranking-container { padding: 60px 0; }

.card-el-dorado {
    background: var(--blanco);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 250px 1fr 220px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s;
    box-shadow: var(--shadow-premium);
}

.card-el-dorado:hover { transform: translateY(-5px); border-color: var(--oro); }

.card-brand-area {
    background: #fdfdfd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 1px solid #eee;
}

.card-brand-area img { max-width: 160px; filter: grayscale(10%); }

.card-info { padding: 35px; }
.card-info h3 { font-size: 24px; margin-bottom: 12px; color: var(--negro-premium); }
.card-info .tag { 
    background: var(--oro); 
    color: #fff; 
    font-size: 10px; 
    padding: 3px 10px; 
    border-radius: 50px; 
    text-transform: uppercase;
}

.card-action-area {
    padding: 35px;
    background: #fafafa;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rating-box { font-size: 32px; font-weight: 900; color: var(--oro-dark); margin-bottom: 10px; }

.btn-gold {
    background: var(--negro-premium);
    color: var(--oro);
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: block;
    transition: 0.3s;
}

.btn-gold:hover { background: var(--oro); color: #fff; }

/* Footer */
.footer-dark {
    background: var(--negro-premium);
    color: #999;
    padding: 80px 0 40px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-dark h4 { color: var(--oro); margin-bottom: 20px; }
.footer-dark a { color: #ccc; text-decoration: none; display: block; margin-bottom: 10px; }

.disclaimer-box {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 900px) {
    .card-el-dorado { grid-template-columns: 1fr; }
    .card-brand-area { border-right: none; border-bottom: 1px solid #eee; }
}

/* PALETA: Oro (#D4AF37), Negro (#1A1A1A), Blanco (#FFFFFF) */
:root {
    --oro: #D4AF37;
    --oro-brillante: #F2D388;
    --negro: #1A1A1A;
    --gris-oscuro: #2D2D2D;
    --gris-claro: #F9F9F9;
    --blanco: #ffffff;
    --fuente-titulos: 'Outfit', sans-serif;
    --fuente-cuerpo: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--fuente-cuerpo); background: var(--gris-claro); color: #333; line-height: 1.6; }

/* Estilos de Texto */
h1, h2, h3 { font-family: var(--fuente-titulos); font-weight: 800; color: var(--negro); }
.text-gold { color: var(--oro); }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }

/* Age Gate Modal */
#age-gate {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--negro); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
}
.age-gate-content {
    background: var(--gris-oscuro); padding: 50px; border-radius: 15px;
    border: 2px solid var(--oro); text-align: center; max-width: 450px; width: 90%;
}
.age-gate-logo { font-size: 32px; color: var(--blanco); margin-bottom: 20px; font-family: var(--fuente-titulos); }
.age-gate-logo span { color: var(--oro); }
.age-gate-buttons { display: flex; gap: 15px; justify-content: center; margin-top: 30px; }
.btn-verify { 
    background: var(--oro); color: var(--negro); padding: 12px 30px; 
    border: none; border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.btn-verify:hover { background: var(--blanco); }
.btn-exit { background: transparent; color: #888; border: none; cursor: pointer; text-decoration: underline; }

/* Header & Nav */
.header { background: var(--blanco); border-bottom: 1px solid #eee; padding: 20px 0; position: sticky; top: 0; z-index: 100; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; text-decoration: none; color: var(--negro); font-family: var(--fuente-titulos); font-weight: 800; }
.logo span { color: var(--oro); }
.nav a { text-decoration: none; color: var(--negro); margin-left: 25px; font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav a:hover { color: var(--oro); }

/* Footer */
.footer { background: var(--negro); color: #888; padding: 60px 0 30px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--oro); margin-bottom: 20px; font-size: 14px; text-transform: uppercase; }
.footer a { color: #ccc; text-decoration: none; display: block; margin-bottom: 10px; font-size: 14px; }
.footer a:hover { color: var(--oro); }
.legal-warning { color: #ef4444; font-weight: bold; font-size: 12px; border-top: 1px solid #333; padding-top: 20px; text-align: center; }

/* Contenido Legal */
.content-page { background: white; padding: 60px; border-radius: 20px; margin-top: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.content-page h1 { margin-bottom: 30px; font-size: 36px; }
.content-page h2 { margin: 30px 0 15px; font-size: 22px; color: var(--oro-dark); }
.content-page p { margin-bottom: 15px; color: #555; }