:root {
    /* Paleta de colores principal */
    --primary-blue: #0B2B5E;
    /* Azul profundo profesional */
    --primary-blue-light: #15438c;
    --secondary-red: #E63946;
    /* Rojo vibrante para CTA */
    --secondary-red-hover: #c92a36;
    --light-bg: #f8f9fa;
    --dark-text: #333333;
}

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

/* Utilidades de color personalizadas */
.text-blue {
    color: var(--primary-blue) !important;
}

.text-red {
    color: var(--secondary-red) !important;
}

.bg-blue {
    background-color: var(--primary-blue) !important;
}

.bg-red {
    background-color: var(--secondary-red) !important;
}

.bg-light-gray {
    background-color: var(--light-bg) !important;
}

/* Botones */
.btn-red {
    background-color: var(--secondary-red);
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-red:hover {
    background-color: var(--secondary-red-hover);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-blue {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Navbar */

.navbar {
    background-color: var(--primary-blue);
    padding: 22px 0;
}

.navbar-brand {
    color: white !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand span {
    color: var(--secondary-red);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 400;
    margin: 0 5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    font-weight: 600;
}

.logo-01 {
    width: 250px;
}

.logo-02 {
    width: 280px;
    margin-bottom: 15px;
}

.slider-principal {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Sección 3: Servicios */
.services-section {
    padding: 80px 0;
}

.video-001 {
    margin-top: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--secondary-red);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--secondary-red);
}

.service-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Sección 4: Características */
.features-section {
    padding: 80px 0;
    color: white;
    position: relative;
    background: linear-gradient(rgba(11, 43, 94, 0.9), rgba(11, 43, 94, 0.9)), url('../img/img-fondo-0001.jpg') center/cover fixed;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-box i {
    font-size: 2rem;
    color: var(--secondary-red);
    margin-right: 20px;
    margin-top: 5px;
}

/* Sección 5: Estadísticas */
.stats-section {
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Sección 6: Call to Action */
.cta-section {
    padding: 80px 0;
    background-color: var(--secondary-red);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-weight: 700;
}

.btn-white {
    background-color: white;
    color: var(--secondary-red);
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

/* Footer */

.footer {
    background-color: #030b18;
    /* Azul muy oscuro */
    color: #a0aabf;
    padding-top: 70px;
    padding-bottom: 30px;
}

.footer h4 {
    color: var(--light-bg);
    font-weight: 700;
    margin-bottom: 25px;
}

.footer a {
    color: #a0aabf;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--secondary-red-hover);
}

.social-pie .nav-link {
    padding-right: 2px !important;
}

.social-pie .nav-link:hover {
    color: var(--secondary-red-hover) !important;
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-item {
        height: 60vh;
        min-height: 400px;
    }
}


/* Header de la Página */
.page-header {
    background: linear-gradient(rgba(11, 43, 94, 0.8), rgba(11, 43, 94, 0.8)), url('../img/cabecera-01.jpg') center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-top: 90px;
}

.section-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-red);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Estilo de Misión y Visión */
.mv-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
    height: 100%;
    padding: 30px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mv-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--secondary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Valores */
.value-item {
    padding: 20px;
    border-left: 4px solid var(--secondary-red);
    background: var(--light-bg);
    margin-bottom: 20px;
}

/* Team */
.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Categorías de Deportes */
.sport-icon-card {
    border: none;
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.sport-icon-card:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-5px);
}

.sport-icon-card i {
    font-size: 2.5rem;
    color: var(--secondary-red);
    margin-bottom: 15px;
}

.sport-icon-card:hover i {
    color: white;
}

/* Live Betting Section */
.live-section {
    background-color: #051530;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.live-badge {
    background-color: var(--secondary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.btn-red {
    background-color: var(--secondary-red);
    color: white;
    padding: 12px 35px;
    border: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-red:hover {
    background-color: #c92c3a;
    color: white;
    transform: translateY(-3px);
}

/* --- Estilos de Sección --- */
section {
    padding: 80px 0;
}

.section-title2 {
    text-align: center;
    margin-bottom: 50px;
}

.section-title2 h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title2 h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--secondary-red);
    bottom: 0;
    left: 20%;
}

/* --- 4. Características --- */
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--secondary-red);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-red);
    margin-bottom: 20px;
}

/* --- 5. Pistas --- */
.tracks-section {
    background-color: var(--soft-gray);
}

.track-category {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-blue);
    transition: 0.3s;
}

.track-category:hover {
    border-left-color: var(--secondary-red);
}

.track-category h5 {
    color: var(--secondary-red);
}

/* --- 6. Control del Agente --- */
.agent-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.agent-list i {
    color: var(--secondary-red);
    margin-right: 15px;
    margin-top: 5px;
}

/* --- 7. CTA --- */
.cta-box {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    border-radius: 20px;
    padding: 60px;
}


/* --- 3. ESTADÍSTICAS RÁPIDAS (RESUMEN) --- */
.stats-bar {
    background-color: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
    border-right: 1px solid #e2e8f0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--texto-secundario);
}

/* --- 4. HERRAMIENTAS DE GESTIÓN --- */
.tools-section {
    padding: 100px 0;
}

.tool-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
}

.tool-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.tool-icon {
    font-size: 2.5rem;
    color: var(--secondary-red);
    margin-bottom: 1.5rem;
}

/* --- 5. REPORTES AVANZADOS --- */
.reports-section {
    padding: 100px 0;
    background-color: var(--color-fondo-claro);
}

.report-list {
    list-style: none;
    padding: 0;
}

.report-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.report-list li i {
    color: var(--primary-blue);
    margin-right: 15px;
}

/* --- 6. SEGURIDAD --- */
.security-section {
    padding: 100px 0;
    text-align: center;
}

.security-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(211, 47, 47, 0.1);
    color: var(--secondary-red);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}



/* --- 3. Tarjetas de Servicios --- */
.addon-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
}

.addon-card:hover {
    border-color: var(--secondary-red);
    transform: scale(1.02);
}

.addon-icon {
    width: 60px;
    height: 60px;
    background-color: var(--soft-gray);
    color: var(--secondary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* --- 4. Prop Builder --- */
.prop-builder-section {
    background-color: var(--soft-gray);
}

/* --- 5. Digital vs Live Casino --- */
.casino-split {
    background-color: white;
}

.casino-box {
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.bg-blue {
    background-color: var(--primary-blue);
}

.bg-red {
    background-color: var(--secondary-red);
}

/* --- 6. Beneficios --- */
.benefit-item i {
    color: var(--secondary-red);
    margin-right: 15px;
}

/* --- 7. CTA --- */
.cta-banner {
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}


/* --- SECCIÓN 3: PRECIO PRINCIPAL (BOX) --- */
.price-focus-card {
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-top: 8px solid var(--secondary-red);
    text-align: center;
}

.espacio-tarifa-01 {
    padding-top: 30px;
}

.addon-card span {
    color: var(--secondary-red);
    font-weight: bold;
}

.price-focus-card .fa-regular {
    color: var(--secondary-red);
}

.main-amount {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.main-amount span {
    font-size: 2.5rem;
    color: var(--secondary-red);
    vertical-align: top;
    margin-right: 5px;
}

.price-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-top: 10px;
}

/* --- SECCIÓN 4: SERVICIOS INCLUIDOS --- */
.service-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    transition: 0.3s;
}

.service-item:hover {
    border-left-color: var(--secondary-red);
    transform: translateX(5px);
}

.service-item i {
    font-size: 1.5rem;
    margin-right: 20px;
    color: var(--secondary-red);
    width: 30px;
    text-align: center;
}

/* --- SECCIÓN 5: TABLA DE ADD-ONS --- */
.addon-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.addon-card:hover {
    border-color: var(--secondary-red);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.addon-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.addon-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-red);
}

/* --- SECCIÓN 6: CÓMO FUNCIONA / FACTURACIÓN --- */
.step-box {
    padding: 20px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(13, 27, 42, 0.05);
    position: absolute;
    z-index: 0;
    margin-top: -30px;
}

.step-content {
    position: relative;
    z-index: 1;
}

/* --- SECCIÓN 7: LLAMADO A LA ACCIÓN (CTA) --- */
.cta-strip {
    background-color: var(--primary-blue);
    color: white;
    padding: 80px 0;
    border-radius: 30px;
    position: relative;
    z-index: 5;
}

.btn-custom-red {
    background-color: var(--secondary-red);
    color: white;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    border: none;
    transition: 0.3s;
}

.btn-custom-red:hover {
    background-color: #c92c3a;
    color: white;
    transform: translateY(-3px);
}



/* ==========================================
           ESTILOS PÁGINA CONTACTO
           ========================================== */

/* 2. Hero Contacto */
.hero-contact {
    background: linear-gradient(45deg, var(--primary-blue) 0%, #153a7a 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 3. Información de Contacto (Cards) */
.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(217, 4, 41, 0.1);
    color: var(--secondary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

/* 4. Formulario de Contacto */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--secondary-red);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.1);
}

/* 5. Canales de Chat Directo */
.chat-channel {
    padding: 20px;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
    margin-bottom: 15px;
}

.chat-whatsapp {
    background-color: #25D366;
}

.chat-telegram {
    background-color: #0088cc;
}

.chat-channel:hover {
    opacity: 0.9;
    transform: scale(1.02);
    color: white;
}

/* Botones */
.btn-red {
    background-color: var(--secondary-red);
    color: white;
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
}

.btn-red:hover {
    background-color: #b00320;
    color: white;
}

/* Animaciones */
.page-view {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* --- 7. CTA  de Admin--- */
.cta-admin {
    padding: 80px 0;
    background-color: var(--secondary-red);
    color: #ffffff;
    text-align: center;
}

.btn-white {
    background: #ffffff;
    color: var(--secondary-red);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-white:hover {
    background: var(--primary-blue);
    color: #ffffff;
}


/* Estilos básicos para que el contador se vea bien */
.counter-container {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a4b;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.counter-number {
    font-weight: bold;
    color: var(--secondary-red);
    /* Color verde para resaltar el número */
    font-size: 1.2em;
}

/* Boton de Whatsaap */

.float-wa {
    position: fixed;
    width: 74px;
    height: 74px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 42px;
    z-index: 100;
}