:root {
    --guinda: #5b1217;
    --dorado: #c39e5c;
    --fondo-gris: #f8f9fa;
    --texto: #2b2b2b;
    --blanco: #ffffff;
    --verde: #28a745;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--fondo-gris);
    color: var(--texto);
}

/* 1. NAVBAR */
.navbar {
    background-color: var(--guinda);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}
.navbar .logo {
    color: var(--dorado);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1px;
}
.nav-links a {
    color: var(--blanco);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 700;
    font-size: 14px;
}
.nav-links .btn-unirse {
    background-color: var(--dorado);
    color: var(--guinda);
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 800;
}

/* 2. HERO BANNER */
.hero-banner {
    background-color: var(--guinda);
    color: var(--dorado);
    text-align: center;
    padding: 60px 20px;
    border-bottom: 4px solid var(--dorado);
}
.hero-banner h1 {
    font-size: 38px;
    font-weight: 900;
    margin: 0 0 15px 0;
    letter-spacing: 1.5px;
}
.hero-banner p {
    color: var(--blanco);
    font-style: italic;
    font-size: 20px;
    margin: 0;
}

/* CONTENEDORES Y TIPOGRAFÍA */
.container {
    max-width: 1140px;
    margin: 50px auto;
    padding: 0 20px;
}
.text-center { text-align: center; }
.section-title {
    color: var(--guinda);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
}
.section-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}
.section-subtitle-green {
    color: var(--verde);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 30px;
}
.section-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    max-width: 900px;
    margin: 0 auto;
}
.text-italic-muted {
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
}

/* 4. TARJETA GUINDA (TERMÓMETRO) */
.card-guinda {
    background-color: var(--guinda);
    color: var(--blanco);
    padding: 45px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.card-guinda h2 {
    color: var(--dorado);
    font-size: 32px;
    font-weight: 900;
    margin-top: 0;
}
.card-guinda p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* TARJETAS BLANCAS GENERALES */
.card-white {
    background: var(--blanco);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

/* GRIDS Y CARRUSEL */
.carousel-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}
.cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}
.arrow-btn {
    background: none;
    border: none;
    color: var(--dorado);
    font-size: 45px;
    cursor: pointer;
    font-weight: bold;
}

/* DETALLES DE TARJETAS DE VIDEO Y PETICIONES */
.media-thumb {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}
.media-thumb img {
    width: 100%;
    display: block;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--guinda);
    color: var(--dorado);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}
.card-content h3, .card-white h3 {
    color: var(--guinda);
    font-size: 18px;
    font-weight: 800;
    margin: 10px 0;
}
.card-content p, .card-white p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* BOTONES Y BADGES */
.btn-guinda-full {
    background-color: var(--guinda);
    color: var(--blanco);
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    margin-top: 15px;
}
.btn-gold-full {
    background-color: var(--dorado);
    color: var(--guinda);
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    margin-top: 15px;
}
.btn-outline-gold {
    border: 2px solid var(--dorado);
    color: var(--guinda);
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    margin-top: 15px;
}
.link-gold {
    color: var(--dorado);
    display: block;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    margin-top: 10px;
}
.pill-badge {
    background: #f0f0f0;
    color: var(--guinda);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 800;
    display: inline-block;
    align-self: flex-start;
}
.pill-dark {
    background: var(--guinda);
    color: var(--blanco);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 800;
    display: inline-block;
    margin: 0 auto;
}
.pill-gray {
    background: #eee;
    color: #555;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
}

/* BARRAS DE PROGRESO Y STATUS */
.progress-container {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
}
.progress-title {
    font-size: 11px;
    font-weight: 800;
    color: #777;
}
.progress-bar {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    margin: 8px 0;
    overflow: hidden;
}
.progress-fill {
    background: var(--dorado);
    height: 100%;
}
.progress-desc {
    font-size: 11px !important;
    color: #888 !important;
    margin: 0 !important;
}
.status-green {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin: 15px 0;
}
.chart-label {
    font-size: 11px;
    font-weight: 800;
    color: #666;
}
.chart-placeholder {
    padding: 30px 10px;
    color: #aaa;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

/* MÓDULOS DE ACCIÓN Y RECAPTCHA */
.action-box {
    margin-top: 15px;
    background: #fdfdfd;
    padding: 12px;
    border: 1px dashed #ccc;
    border-radius: 8px;
}
.btn-flex {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.btn-guinda-sm {
    background: var(--guinda);
    color: var(--blanco);
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
}
.btn-outline-sm {
    border: 1px solid var(--guinda);
    color: var(--guinda);
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
}
.card-recaptcha {
    background: var(--blanco);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    max-width: 700px;
    margin: 30px auto;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}
.lock-icon { font-size: 30px; }
.btn-gold-large {
    background-color: var(--dorado);
    color: var(--guinda);
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
}

/* 10. FOOTER */
.footer {
    background-color: #0d0d0d;
    color: var(--blanco);
    padding: 50px 5% 20px 5%;
    margin-top: 60px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-brand { color: var(--dorado); font-size: 22px; font-weight: 900; }
.footer-col h4 { color: var(--dorado); font-size: 14px; margin-bottom: 15px; }
.footer-col a { color: var(--blanco); text-decoration: none; display: block; margin-bottom: 8px; font-size: 13px; }
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}