/* --- VARIABLES DE MARCA --- */
:root {
    --csh-red: #e4212c;
    --csh-dark: #121212;
    --csh-dark-card: #1e1e1e;
    --csh-gold: #c5a059; /* Dorado elegante */
    --csh-text: #f5f5f5;
    --glass-bg: rgba(18, 18, 18, 0.85);
}

body {
    background-color: var(--csh-dark);
    color: var(--csh-text);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, .nav-link, .btn {
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
}

/* --- NAVEGACIÓN GLASSMORPHISM --- */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--csh-gold) !important;
}

.btn-nav-cta {
    background-color: transparent;
    border: 2px solid var(--csh-red);
    color: var(--csh-red) !important;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background-color: var(--csh-red);
    color: white !important;
}

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    /* Ajusta esta ruta a tu imagen de fondo real */
    background-image: url('../../assets/images/bg/bg-image-24.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

/* Degradado inteligente para leer texto */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, #121212 10%, rgba(18,18,18,0.4) 60%, rgba(18,18,18,0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 600px;
}

.text-gold { color: var(--csh-gold); }
.text-red { color: var(--csh-red); }

.btn-main {
    background: linear-gradient(45deg, var(--csh-red), #b01a23);
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    border: none;
    letter-spacing: 1px;
    transition: transform 0.3s;
}
.btn-main:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 20px rgba(228, 33, 44, 0.3);
}

/* --- SECCIONES GENERALES --- */
.section-padding { padding: 100px 0; }

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.divider {
    height: 4px;
    width: 80px;
    background: var(--csh-red);
    margin: 0 auto 30px;
}

.img-filter {
    filter: grayscale(20%);
}

.bg-black { background-color: #000; }

/* --- BENTO GRID SERVICIOS --- */
.service-card {
    background: var(--csh-dark-card);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--csh-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-icon {
    font-size: 2rem;
    color: var(--csh-gold);
    margin-bottom: 20px;
}

.service-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.service-card p { font-size: 0.9rem; color: #aaa; line-height: 1.6; }

/* --- SECCIÓN PATROCINIOS (LEAD MAGNET) --- */
.sponsor-section {
    background: linear-gradient(to right, #000 0%, #1a1a1a 100%);
    border-top: 1px solid #333;
}

.lead-form-card {
    background: #fff;
    color: #333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-control, .form-select {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: var(--csh-red);
    box-shadow: none;
}

/* --- FOOTER --- */
footer {
    background: #000;
    padding: 50px 0 20px;
    border-top: 1px solid #222;
}

.social-link {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 50%;
    background: #222;
    color: #fff;
    margin: 0 5px;
    transition: 0.3s;
    text-decoration: none;
}
.social-link:hover { background: var(--csh-red); color: white; }

/* AJUSTES MOBILE */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .lead-form-card { padding: 25px; margin-top: 30px; }
}

/* --- NUEVO HERO: AUTORIDAD --- */
.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px;
    font-family: 'Kanit', sans-serif;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-badge i {
    color: var(--csh-gold);
    margin-right: 10px;
}

/* --- NUEVA SECCIÓN COMERCIAL: TARJETAS DE VALOR --- */
.benefit-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
}

.benefit-icon-box {
    background: linear-gradient(135deg, var(--csh-red), #8a0e15);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(228, 33, 44, 0.3);
}

.benefit-content h5 {
    color: var(--csh-gold);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 1rem;
}

.benefit-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* --- CORRECCIÓN ENLACE HERO BADGE --- */
.hero-badge a {
    color: #fff !important;       /* Fuerza el texto a ser blanco */
    text-decoration: none;        /* Quita el subrayado feo */
    display: flex;                /* Mantiene el icono y texto alineados */
    align-items: center;
    transition: color 0.3s ease;  /* Suaviza el cambio de color */
}

.hero-badge a:hover {
    color: var(--csh-gold) !important; /* Se pone dorado al pasar el mouse */
}

/* Asegura que el icono mantenga su color o cambie con el hover */
.hero-badge a i {
    margin-right: 10px;
    color: var(--csh-gold);
}


/* FORZAR QUE LOS TEXTOS SUAVES SEAN LEGIBLES */
.text-muted {
    color: #b0b3b8 !important; /* Gris claro casi blanco */
}

/* Arreglar también los placeholders (el texto gris dentro de los inputs) */
::placeholder {
    color: #777 !important; 
    opacity: 1;
}

/* Arreglar bordes de los inputs para que se noten más */
.form-control, .form-select {
    border: 1px solid #444 !important;
}