/* Reset Básico y Variables */
:root {
    --primary-color: #d4af37; /* Dorado elegante */
    --primary-hover: #b8952b;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.nav-container {
    display: table;
    width: 100%;
}

.logo {
    float: left;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    line-height: 40px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    float: right;
}

.nav-links ul {
    list-style: none;
}

.nav-links li {
    display: inline-block;
    margin-left: 25px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 40px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: #000000 !important;
    padding: 8px 18px;
    border-radius: 4px;
    transition: background 0.3s ease !important;
}

.btn-nav:hover {
    background-color: var(--primary-hover);
}

/* Responsive Hamburger Menu (CSS Helper) */
.hamburger {
    display: none;
    float: right;
    cursor: pointer;
    padding: 10px 0;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: all 0.3s ease;
}


/* ===================================
   Hero Section - Patrón F (Respetando Margen del Sitio)
====================================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    background: url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?q=80&w=1920') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(18,18,18,0.95) 0%, rgba(18,18,18,0.8) 60%, rgba(18,18,18,0.5) 100%);
    z-index: 1;
}

/* El .container mantiene los márgenes centrados globales del sitio */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Bloque interno en F: texto alineado a la izquierda pero dentro del margen seguro */
.hero-content-f {
    text-align: left;
    max-width: 680px; /* Limita el ancho para forzar la lectura cómoda */
}

.hero-tagline {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: block;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    background-color: var(--primary-color);
    color: #000000;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

/* Responsive para Celulares */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
    }
}


/* ===================================
   Sección: Propuesta de Valor B2B
====================================== */
.value-prop {
    padding: 90px 0;
    background-color: var(--bg-dark);
    position: relative;
}

/* Encabezados de Sección */
.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Grilla de Tarjetas */
.cards-grid {
    display: table;
    width: 100%;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 35px 25px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Layout de 2 columnas para pantallas medianas/grandes usando float/inline para alta compatibilidad */
@media (min-width: 769px) {
    .card {
        float: left;
        width: 48%;
        margin-right: 4%;
        min-height: 260px;
    }

    .card:nth-child(2n) {
        margin-right: 0;
    }
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.card-icon {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Limpieza de Floats para la grilla */
.cards-grid::after {
    content: "";
    display: table;
    clear: both;
}

/* ===================================
   Sección 3: Muestra de Talento
====================================== */
.talent-showcase {
    padding: 90px 0;
    background-color: #181818; /* Ligera variación de fondo para dar contraste */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Video Responsive Container */
.reel-wrapper {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 50px;
}

.reel-header {
    margin-bottom: 20px;
    text-align: left;
}

.reel-header h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.reel-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Audios y Sistema de Tabs */
.audio-showcase {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.audio-header {
    margin-bottom: 25px;
}

.audio-header h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.audio-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Navegación de Pestañas */
.tabs-nav {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 12px 20px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    display: inline-block;
}

.tab-btn:hover {
    color: var(--text-light);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

/* Contenido de Paneles */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.audio-card {
    display: table;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.audio-info {
    margin-bottom: 15px;
}

.audio-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.audio-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.audio-player audio {
    width: 100%;
    border-radius: 4px;
    outline: none;
}

/* Ajustes Responsive */
@media (max-width: 768px) {
    .tab-btn {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 0;
    }
}

/* ===================================
   Sección 4: Testimonios / Alianzas B2B
====================================== */
.social-proof {
    padding: 90px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Métricas Rápidas */
.stats-bar {
    display: table;
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 25px 15px;
    margin-bottom: 50px;
    text-align: center;
}

.stat-item {
    display: inline-block;
    width: 32%;
    vertical-align: middle;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grilla de Testimonios */
.testimonials-grid {
    display: table;
    width: 100%;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-bottom: 25px;
}

@media (min-width: 769px) {
    .testimonial-card {
        float: left;
        width: 31.33%;
        margin-right: 3%;
        min-height: 280px;
    }

    .testimonial-card:nth-child(3n) {
        margin-right: 0;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.quote-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1;
    font-family: Georgia, serif;
    height: 30px;
    opacity: 0.5;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.author-info strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
}

.author-info span {
    display: block;
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Banner de Alianzas */
.alliance-banner {
    background: linear-gradient(135deg, rgba(30, 30, 30, 1) 0%, rgba(45, 40, 20, 1) 100%);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 30px;
    display: table;
    width: 100%;
    margin-top: 20px;
}

.banner-content {
    float: left;
    width: 70%;
}

.banner-content h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.banner-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.alliance-banner .btn {
    float: right;
    margin-top: 5px;
}

/* Clears */
.testimonials-grid::after,
.alliance-banner::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive para la sección */
@media (max-width: 768px) {
    .stat-item {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .stat-item:last-child {
        margin-bottom: 0;
    }

    .banner-content {
        float: none;
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }

    .alliance-banner .btn {
        float: none;
        display: block;
        text-align: center;
        width: 100%;
    }
}

/* ===================================
   Sección 5: Formulario B2B & Captura
====================================== */
.lead-capture {
    padding: 90px 0;
    background-color: #161616;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.capture-wrapper {
    display: table;
    width: 100%;
}

.capture-info {
    float: left;
    width: 45%;
    padding-right: 40px;
}

.capture-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.capture-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Lista de Detalles de Contacto */
.contact-details {
    margin-top: 20px;
}

.contact-item {
    margin-bottom: 25px;
    display: table;
    width: 100%;
}

.contact-icon {
    float: left;
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 15px;
}

.contact-item strong {
    color: #ffffff;
    display: block;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Tarjeta del Formulario */
.capture-form-card {
    float: right;
    width: 50%;
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.b2b-form .form-group {
    margin-bottom: 20px;
}

.b2b-form label {
    display: block;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.b2b-form input[type="text"],
.b2b-form input[type="tel"],
.b2b-form input[type="date"],
.b2b-form select {
    width: 100%;
    padding: 12px 15px;
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.b2b-form input:focus,
.b2b-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Grupo del campo de Ubicación (Jalisco + Input) */
.input-location-group {
    display: table;
    width: 100%;
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    overflow: hidden;
}

.prefix-state {
    display: table-cell;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    font-weight: 700;
    padding: 12px 15px;
    font-size: 0.9rem;
    vertical-align: middle;
    white-space: nowrap;
    width: 1%;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.input-location-group input {
    display: table-cell;
    border: none !important;
    background: transparent !important;
    width: 100%;
}

.help-text {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 5px;
}

.btn-block {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
}

/* Botón Flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 999;
    display: table;
    transition: transform 0.3s ease;
}

.whatsapp-float svg {
    display: table-cell;
    vertical-align: middle;
    margin: 15px auto;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    padding: 25px 0;
    background-color: #0a0a0a;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Clears */
.capture-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive para la sección */
@media (max-width: 768px) {
    .capture-info,
    .capture-form-card {
        float: none;
        width: 100%;
        padding-right: 0;
    }

    .capture-info {
        margin-bottom: 40px;
    }
}

/* ===================================
   Sección 6: Recursos Descargables & Footer
====================================== */
.b2b-resources {
    padding: 50px 0;
    background-color: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.resources-card {
    background: linear-gradient(135deg, rgba(30,30,30,1) 0%, rgba(20,20,20,1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 30px;
    display: table;
    width: 100%;
}

.resources-info {
    float: left;
    width: 60%;
}

.badge-gold {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.resources-info h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.resources-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.resources-buttons {
    float: right;
    width: 38%;
    text-align: right;
    margin-top: 10px;
}

.btn-sm {
    padding: 10px 16px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: inline-block;
}

/* Tooltip & Botón Flotante de WhatsApp */
.whatsapp-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    align-items: center;
}

.wa-tooltip {
    background-color: #ffffff;
    color: #121212;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    white-space: nowrap;
    animation: pulseTooltip 3s infinite;
}

@keyframes pulseTooltip {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

.whatsapp-float {
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Estilos del Footer */
.footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: table;
    width: 100%;
    margin-bottom: 40px;
}

.footer-col {
    float: left;
    width: 25%;
    padding-right: 20px;
}

.footer-col.brand-col {
    width: 50%;
    padding-right: 40px;
}

.footer-col.brand-col p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 400px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.78rem;
}

/* Clears */
.resources-card::after,
.footer-grid::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive */
@media (max-width: 768px) {
    .resources-info,
    .resources-buttons {
        float: none;
        width: 100%;
        text-align: left;
    }

    .resources-buttons {
        margin-top: 20px;
    }

    .footer-col,
    .footer-col.brand-col {
        float: none;
        width: 100%;
        margin-bottom: 30px;
        padding-right: 0;
    }

    .wa-tooltip {
        display: none; /* Se oculta el texto en cel para no estorbar la pantalla */
    }
}