/* --- IMPORTACIÓN DE FUENTES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Oswald:wght@700&display=swap');

/* --- VARIABLES DE COLOR --- */
:root {
    --red: #C41E3A; /* Rojo brasa / Punzó */
    --orange: #FF5722; /* Naranja fuego */
    --yellow: #FFD13B; /* Amarillo andino */
    --black: #1a1a1a;
    --white: #ffffff;
    --green-bolivia: #007A33; /* Verde de la bandera */
    
    /* PALETA NOCTURNA/ADOBE */
    --bg-dark-clay: #2A1A18; /* Ceniza/Parrilla */
    --card-clay: #3D2622;    /* Barro cocido */
    --text-maize: #F8E8D4;   /* Blanco choclo para lectura */
}

/* --- ESTILOS GENERALES --- */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    overflow-x: hidden;
}

/* --- DETALLE AGUAYO (Patrón Andino) --- */
.borde-aguayo {
    height: 8px;
    width: 100%;
    background: repeating-linear-gradient(
        to right,
        var(--red), var(--red) 10px,
        var(--yellow) 10px, var(--yellow) 20px,
        var(--green-bolivia) 20px, var(--green-bolivia) 30px,
        var(--orange) 30px, var(--orange) 40px
    );
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(196, 30, 58, 0.4)), url('https://images.unsplash.com/photo-1544025162-d76694265947?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}

.logo-main {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--yellow);
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.8);
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.logo-main:hover {
    transform: scale(1.05) rotate(5deg);
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 var(--red), 6px 6px 15px rgba(0,0,0,0.8);
    color: var(--yellow);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 22px;
    font-weight: 600;
    max-width: 650px;
    margin: 20px 0 40px;
    text-shadow: 1px 1px 5px #000;
    position: relative;
    z-index: 2;
    color: #f1f1f1;
}

.hero p span {
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
}

.btn-pedido {
    background: linear-gradient(45deg, var(--red), var(--orange));
    color: white;
    padding: 20px 45px;
    font-size: 24px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(196,30,58,0.6);
    border: 2px solid transparent;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.btn-pedido:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 209, 59, 0.5);
    border-color: var(--yellow);
}

/* --- INFO SECTION CON NUEVA IDENTIDAD --- */
.info-section {
    padding: 80px 20px;
    background: var(--bg-dark-clay);
    color: var(--text-maize);
    position: relative;
}

.grid-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--card-clay);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border-bottom: 5px solid var(--red);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.info-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.info-card h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--yellow);
    font-size: 28px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.info-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-maize);
}

/* --- TIKTOK SECTION --- */
.tiktok-section {
    padding: 80px 20px;
    background: radial-gradient(circle at center, #2a2a2a 0%, var(--black) 100%);
    position: relative;
}

.tiktok-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--yellow);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.tiktok-container {
    max-width: 325px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--red);
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.4);
    background: #000;
}

/* --- FOOTER --- */
footer {
    padding: 50px 20px 30px;
    background: var(--black);
    font-size: 14px;
    position: relative;
}

.social-links a {
    color: var(--yellow);
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 42px; }
    .hero p { font-size: 18px; padding: 0 10px; }
    .btn-pedido { font-size: 20px; padding: 15px 30px; }
    .info-card { padding: 30px 20px; }
}