* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Georgia", serif;
    background: #f4f3ef;
    color: #2c2c2c;
    line-height: 1.6;
}

/* ========== HERO (GALA) ========== */
.hero {
    background: radial-gradient(circle at top, #6b0f1a, #3a050a);
    padding: 70px 20px;
    text-align: center;
    border-bottom: 4px solid #d4af37;
    color: #f5e6b8;
}

.hero h1 {
    color: #d4af37;
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.fecha {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* BOTÓN */
.boton-principal {
    display: inline-block;
    padding: 16px 42px;
    background: linear-gradient(135deg, #f5e6b8, #d4af37);
    color: #3a050a;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.25s ease;
}

.boton-principal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

/* ========== BLOQUE INVERSIÓN (BLANCO) ========== */
.precios {
    background: #ffffff;
    padding: 60px 20px;
}

.precios h2 {
    color: #6b0f1a;
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 30px;
}

/* TABLA */
table {
    width: 100%;
    max-width: 900px;
    margin: auto;
    border-collapse: collapse;
    background: #fafafa;
    border: 1px solid #ddd;
}

th {
    background: #d4af37;
    color: #3a050a;
    padding: 14px;
    font-size: 1.05rem;
}

td {
    padding: 14px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-size: 1rem;
}

/* ========== BLOQUE INSTRUCCIONES (VINOTINTO SUAVE) ========== */
.instrucciones {
    background: #6b0f1a;
    color: #f5e6b8;
    padding: 60px 20px;
}

.instrucciones h2 {
    color: #f5e6b8;
    text-align: center;
    margin-bottom: 30px;
}

.instrucciones ol {
    max-width: 800px;
    margin: auto;
    font-size: 1.05rem;
}

.instrucciones li {
    margin-bottom: 15px;
}

/* ========== FOOTER CLARO ========== */
.footer {
    background: #f0efe9;
    text-align: center;
    padding: 30px;
    color: #6b0f1a;
    font-size: 0.95rem;
    border-top: 2px solid #d4af37;
}
