/*
Theme Name: Rescatando Emprendedores Landing
Theme URI: https://rescatandoemprendedores.com
Author: Dani Vallejo - Rescatando Emprendedores
Author URI: https://rescatandoemprendedores.com
Description: Landing page premium de alto impacto para el entrenamiento presencial Rescatando Emprendedores 2026. Optimizada para conversión y velocidad.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rescatando-emprendedores
*/

:root {
    --primary-color: #FF6B00;
    /* Vibrant Orange */
    --secondary-color: #7B2CBF;
    /* Deep Purple */
    --accent-color: #00D4FF;
    /* Cyan for highlights */
    --dark-bg: #0a0a0a;
    --card-bg: #161616;
    --text-color: #f0f0f0;
    --text-muted: #a0a0a0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo-text,
.btn {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Typography & Utilities */
.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn.sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 90%;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.2) 0%, rgba(10, 10, 10, 0) 70%);
    transform: translate(20%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* Concept Cards */
.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.concept-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.concept-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon-lg {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.concept-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.video-placeholder:hover {
    border-color: var(--secondary-color);
}

.video-placeholder iframe,
.video-placeholder .tiktok-embed {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    border: none;
    pointer-events: auto;
}

/* Sub-container to hide Instagram Footer */
.instagram-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.instagram-wrapper iframe {
    position: absolute;
    top: -54px;
    /* Crops the Instagram header */
    height: calc(100% + 120px) !important;
    /* Pushes the footer well below the visible area */
    width: 100%;
    margin: 0 !important;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #fff;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    margin-bottom: 15px;
    transition: var(--transition);
}

.video-placeholder:hover .play-button {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Mission/Vision */
.gradient-bg {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a0b2e 50%, var(--dark-bg) 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-block {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border-left: 4px solid var(--secondary-color);
}

.mv-block h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.values ul {
    list-style: none;
}

.values ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.values ul li i {
    color: var(--accent-color);
}

/* Difference Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.quote-box {
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    font-size: 1.1rem;
    background: rgba(123, 44, 191, 0.1);
    border-radius: 0 10px 10px 0;
}

.animated-icon-container {
    width: 100%;
    height: 400px;
    background: radial-gradient(circle, #2a1b3d 0%, #0a0a0a 70%);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(123, 44, 191, 0.2);
    position: relative;
    overflow: hidden;
}

.rocket-wrapper {
    position: relative;
    transform: rotate(45deg);
    z-index: 2;
}

.big-icon {
    font-size: 8rem;
    color: #fff;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 2;
}

.rocket-fire {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 60px;
    background: linear-gradient(to bottom, #ff9d00, #ff0000, transparent);
    border-radius: 50%;
    filter: blur(5px);
    animation: fire-flicker 0.1s infinite alternate;
    z-index: 1;
}

.floating-fast {
    animation: float-shaking 3s ease-in-out infinite;
}

@keyframes fire-flicker {
    0% {
        height: 60px;
        width: 20px;
        opacity: 1;
    }

    100% {
        height: 80px;
        width: 25px;
        opacity: 0.8;
    }
}

@keyframes float-shaking {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    25% {
        transform: translateY(-15px) rotate(48deg);
    }

    50% {
        transform: translateY(0) rotate(45deg);
    }

    75% {
        transform: translateY(15px) rotate(42deg);
    }
}

/* Audience Grid */
.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.audience-item {
    padding: 15px 30px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.audience-item:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.audience-item.warning {
    background: rgba(255, 50, 50, 0.1);
    border-color: rgba(255, 50, 50, 0.3);
    color: #ff6b6b;
    width: 100%;
    text-align: center;
    max-width: 600px;
}

/* Content List */
.content-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.content-item {
    position: relative;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    border-top: 3px solid var(--accent-color);
}

.content-item .number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.1;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.content-item h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Method DOFI */
.highlight-section {
    background: var(--primary-color);
    color: white;
}

.display-title {
    font-size: 4rem;
    opacity: 0.9;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.method-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.mf-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}

/* Experience */
.experience-words {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 40px 0;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.1);
    background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: cover;
}

.experience-words span:hover {
    color: #fff;
    cursor: default;
}

.final-p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding-bottom: 100px;
}

.offer-card {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-header {
    background: linear-gradient(90deg, var(--secondary-color), #4a1c75);
    padding: 20px;
    text-align: center;
}

.offer-body {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 30px;
    max-width: 500px;
}

.details-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.details-list li i {
    width: 30px;
    color: var(--primary-color);
}

.price-box {
    margin: 30px 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.price-box .label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.price-box .price {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.scarcity-text {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
}

/* Footer */
footer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations using Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease backwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease backwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease backwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse-fast {
    animation: pulse 1s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

/* Scroll Animation classes (to be toggled by JS) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Webinar Section Top */
.webinar-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0b2e 100%);
    padding-top: 120px;
    border-bottom: 1px solid rgba(123, 44, 191, 0.2);
}

.webinar-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.webinar-content {
    flex: 1.2;
}

.webinar-content h2 {
    font-size: 3.5rem;
    margin: 20px 0;
    line-height: 1.1;
    color: #fff;
}

.badge.secondary {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-color);
    border-color: rgba(0, 212, 255, 0.2);
}

.webinar-info {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.info-item i {
    color: var(--primary-color);
}

.webinar-video {
    flex: 0.8;
}

.video-placeholder.horizontal {
    aspect-ratio: 16/9;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: #000;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .hero-bg-glow {
        width: 300px;
        height: 300px;
    }

    .webinar-card {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .webinar-logo {
        margin: 0 auto 20px;
    }

    .webinar-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .webinar-content h2 {
        font-size: 2.2rem;
    }

    .webinar-video {
        width: 100%;
    }
}

/* Extreme Visual Impact Styling */
.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.super-badge-container {
    margin: 20px 0;
}

.badge.giant {
    font-size: 1.5rem;
    padding: 10px 30px;
    background: rgba(255, 107, 0, 0.2);
    border: 2px solid var(--primary-color);
    color: #fff;
    text-shadow: 0 0 10px var(--primary-color);
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px var(--primary-color);
    }

    50% {
        box-shadow: 0 0 25px var(--primary-color);
    }

    100% {
        box-shadow: 0 0 5px var(--primary-color);
    }
}

.title-extreme {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.glow-text {
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.extreme-date-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    padding: 20px 60px;
    border-top: 1px solid rgba(255, 107, 0, 0.3);
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
    margin: 30px 0;
}

.banner-top {
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--primary-color);
}

.banner-main {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin: 5px 0;
    color: #fff;
}

.banner-bottom {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
}

.webinar-intro {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.shadow-impact {
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 107, 0, 0.1);
}

/* Hide Kommo Branding */
#amoforms_container .amoforms-footer,
.amoforms-footer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

.crm-form-container-top {
    width: 100%;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    min-height: 480px;
}

/* Impact Section (Instagram Video) */
.impact-section {
    background: radial-gradient(circle at bottom left, #11081a 0%, #0a0a0a 100%);
    position: relative;
    padding: 120px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.title-impact {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 20px 0;
    line-height: 1.1;
}

.impact-p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.check-list-impact {
    list-style: none;
}

.check-list-impact li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list-impact li i {
    color: var(--accent-color);
}

.impact-video-container {
    position: relative;
    z-index: 2;
}

.impact-frame {
    border: 8px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.impact-frame:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    border-color: var(--primary-color);
}

.glow-element {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.shadow-glow {
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.2);
}

@media (max-width: 900px) {
    .impact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .check-list-impact li {
        justify-content: center;
    }

    .impact-frame {
        transform: none;
    }
}

.tiktok-only {
    width: 100%;
    max-width: 420px;
    /* ajusta si lo quieres más grande */
    margin: 0 auto;
    border-radius: 20px;
    /* opcional */
    overflow: hidden;
    /* corta cualquier borde interno */
    aspect-ratio: 9 / 16;
    /* formato vertical */
    background: transparent;
}

.tiktok-only iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* === VIDEO LIMPIO (SIN MARCOS) === */
.insta-only {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.insta-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   LOGOS – CONTROL TOTAL
   ========================= */

/* Logo principal (webinar / arriba) */
.webinar-logo {
    width: auto;
    height: auto;
    max-width: 360px;
    /* 🔒 límite real */
    margin: 0 auto 16px;
    display: block;
}

/* Logo en hero */
.hero-logo {
    width: auto;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

/* 🔹 MÓVIL: NUNCA gigantes */
@media (max-width: 480px) {
    .webinar-logo {
        max-width: 280px;
        /* tamaño correcto en celular */
    }

    .hero-logo {
        max-width: 320px;
    }
}

/* 🔹 TABLET */
@media (min-width: 481px) and (max-width: 991px) {
    .webinar-logo {
        max-width: 360px;
    }

    .hero-logo {
        max-width: 400px;
    }
}

/* 🔹 DESKTOP */
@media (min-width: 992px) {
    .webinar-logo {
        max-width: 260px;
        /* aquí sí se ve pro */
    }

    .hero-logo {
        max-width: 300px;
    }
}

/* =========================
   FORMULARIO DE LEADS
   ========================= */

.custom-form-container {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 450px;
    margin: 2rem auto 0;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    position: relative;
}

.custom-form input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.custom-form input:focus {
    outline: none;
    border-color: #FF6B00;
    /* var(--primary) fallback */
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.custom-form button {
    width: 100%;
    padding: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    cursor: pointer;
}

.form-status {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 1rem;
    animation: fadeIn 0.3s ease;
}

.form-status.success {
    background: rgba(0, 255, 128, 0.1);
    color: #00ff80;
    border: 1px solid rgba(0, 255, 128, 0.2);
}

.form-status.error {
    background: rgba(255, 0, 80, 0.1);
    color: #ff0050;
    border: 1px solid rgba(255, 0, 80, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}