 
@font-face {
    font-family: 'Inter-Black';
    src: url('../fonts/inter/Inter-Black.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('../fonts/inter/Inter-Bold.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-ExtraBold';
    src: url('../fonts/inter/Inter-ExtraBold.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-ExtraLight';
    src: url('../fonts/inter/Inter-ExtraLight.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Light';
    src: url('../fonts/inter/Inter-Light.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Medium';
    src: url('../fonts/inter/Inter-Medium.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Regular';
    src: url('../fonts/inter/Inter-Regular.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-SemiBold';
    src: url('../fonts/inter/Inter-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Thin';
    src: url('../fonts/inter/Inter-Thin.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bree';
    src: url('../fonts/Bree/BreeRegular.otf');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BreeBold';
    src: url('../fonts/Bree/BreeBold.otf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/*  Bree  */
@font-face {
    font-family: 'Bree-SemiBold';
    src: url('../fonts/Bree/bree-semibold.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
 
 :root {
            --pink: #D5006D;
            --pink-light: #E91E8C;
            --pink-gradient-start: #D5006D;
            --pink-gradient-end: #FF4D94;
            --bg-light-pink: #FFF5F9;
            --bg-gray: #F5F5F5;
            --text-dark: #252A2D;
            --text-gray: #666666;
            --white: #FFFFFF;
            --red-cta: #E53935;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        
        .navbar {
            background: #FFFFFF;
            padding: 14px 0;
            text-align: center;
            top: 0;
            z-index: 100;
        }
        .navbar .logo-img {
            height: 40px;
            display: block;
            margin: 0 auto;
        }

        
        .hero {
            background: linear-gradient(180deg, #FFF5F9 0%, #ffffff 100%);
            padding: 60px 5% 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }
        .hero-wrapper {
            background: linear-gradient(180deg, #FFF5F9 0%, #ffffff 100%);
            position: relative;
        }
        .hero-text {
            flex: 1;
            max-width: 500px;
            position: relative;
            z-index: 1;
        }
        .hero-text h1 {
            font-family: 'Bree';
            font-size: 2.6rem;
            font-weight: 900;
            color: #D50057;
            line-height: 1.15;
            margin-bottom: 18px;
        }
        .hero-text p {
            font-size: 1rem;
            color: #252A2D;
            line-height: 1.6;
            margin-bottom: 8px;
        }
        .hero-text p strong {
            color: #D50057;
        }
        .hero-image {
            flex: 1;
            max-width: 420px;
            position: relative;
            z-index: 1;
        }
        .hero-image .img-placeholder {
            width: 100%;
            aspect-ratio: 4/3;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            border: none;
        }
       
        
        .section-como {
            padding: 70px 5%;
            text-align: center;
            background: var(--white);
        }
        .section-como h2 {
            font-family: 'Bree';
            font-size: 2rem;
            font-weight: 800;
            color: #D50057;
            margin-bottom: 10px;
        }
        .section-como .subtitle {
            font-size: 1rem;
            color: #252A2D;
            margin-bottom: 50px;
        }

        .steps-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .step-card {
            flex: 1;
            min-width: 280px;
            max-width: 340px;
            background: var(--white);
            border: 1px solid #eee;
            border-radius: 16px;
            padding: 40px 28px 35px;
            text-align: center;
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }
        .step-number {
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 16px;
        }
        .step-number.green { color: #00A859; }
        .step-number.pink { color: #D50057; }
        .step-number.orange { color: #FFA300; }
        .step-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.4rem;
            color: var(--white);
        }
        .step-icon img {
             width: 40px;
            height: 40px;
        }
        .step-icon.green {
            background: #00A859;
        }
        .step-icon.pink {
            background: #D50057;
        }
        .step-icon.orange {
            background: #FFA300;
        }
        .step-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 14px;
            font-family: 'Bree';
        }
        .step-card p {
            font-size: 0.88rem;
            color: var(--text-dark);
            line-height: 1.55;
            margin-bottom: 8px;
        }
        .step-card .highlight {
            color: var(--pink);
            font-weight: 600;
            font-size: 0.85rem;
        }
        .step-card .link {
            color: var(--pink);
            text-decoration: underline;
            cursor: pointer;
            font-weight: 600;
        }

     
        .section-premios {
            background: linear-gradient(180deg, #FFF5F9 0%, #ffffff 100%);
            padding: 70px 5%;
            text-align: center;
        }
        .section-premios h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--pink);
            margin-bottom: 50px;
            font-family: 'Bree';
        }
        .premios-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .premio-card {
            flex: 1;
            min-width: 240px;
            max-width: 300px;
            text-align: left;
            border: 1px solid #eee;
            border-radius: 16px;
            padding: 15px;
        }
        .premio-img {
            width: 120px;
            height: 120px;
            border-radius: 16px;
            margin-bottom: 15px;
        }
        .premio-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            font-family: 'Bree';
        }
        .premio-card p {
            font-size: 0.88rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

       
        .section-ganadores {
            background: linear-gradient(180deg, #f8f8f8 0%, #f0f0f0 100%);
            padding: 70px 5%;
            text-align: center;
        }
        .section-ganadores h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--pink);
            margin-bottom: 12px;
        }
        .section-ganadores .subtitle {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 40px;
        }
        .video-placeholder {
            max-width: 700px;
            margin: 0 auto;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, #D50057, #FF1976);
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }
        .video-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
        }
        .play-btn {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: transform 0.3s, background 0.3s;
            position: relative;
            z-index: 1;
        }
        .play-btn:hover {
            transform: scale(1.1);
            background: rgba(255,255,255,0.35);
        }
        .play-btn i {
            font-size: 1.8rem;
            color: white;
            margin-left: 4px;
        }
        .video-placeholder .video-text {
            color: white;
            font-weight: 700;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }
        .video-placeholder .video-subtext {
            color: rgba(255,255,255,0.7);
            font-size: 0.8rem;
            margin-top: 6px;
            position: relative;
            z-index: 1;
        }

        
        .section-contacto {
            padding: 50px 5%;
            text-align: center;
            background: var(--white);
        }
        .section-contacto p {
            font-size: 0.95rem;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .section-contacto .phone {
            color: var(--pink);
            font-weight: 700;
        }
        .section-contacto .links {
            margin: 16px 0 30px;
        }
        .section-contacto .links a {
            color: var(--pink);
            text-decoration: underline;
            margin: 0 12px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .section-contacto .cta-text {
            font-size: 0.95rem;
            color: var(--text-dark);
            margin-bottom: 18px;
        }
        .btn-cta {
            display: inline-block;
            background: rgb(213, 0, 87);
            color: white;
            padding: 14px 36px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(213, 0, 87, 0.35);
        }

        
        .footer {
            background: var(--white);
            padding: 40px 5% 30px;
            text-align: center;
        }
        .footer-logo-img {
            height: 40px;
            display: block;
            margin: 0 auto 4px;
        }
        .footer-gentera {
            font-size: 0.8rem;
            color: var(--text-dark);
            margin: 12px 0 6px;
        }
        .footer-gentera strong {
            color: #1b5e20;
            font-weight: 700;
        }
        .footer-copyright {
            font-size: 0.78rem;
            color: #999;
            margin-bottom: 20px;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 28px;
            padding-bottom: 28px;
            border-bottom: 1px solid #eee;
        }
        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            text-decoration: none;
            transition: transform 0.3s;
        }
        .social-icons a:hover {
            transform: scale(1.1);
        }
        

        .footer-discover {
            font-family: 'Bree-SemiBold';
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--pink);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 24px;
        }
        .footer-links a {
            font-size: 0.85rem;
            color: var(--pink);
            text-decoration: underline;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        .footer-links a:hover {
            opacity: 0.7;
        }
        .footer-legal {
            font-size: 0.72rem;
            color: #252A2D;
            line-height: 1.5;
            max-width: 800px;
            margin: 0 auto 10px;
        }
        .footer-terms {
            font-size: 0.78rem;
        }
        .footer-terms a {
            color: var(--pink);
            text-decoration: underline;
        }

        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-in {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }

        
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                padding: 40px 5%;
                text-align: center;
            }
            .hero-text h1 {
                font-size: 2rem;
            }
            .hero-image {
                max-width: 300px;
            }
            .steps-container {
                flex-direction: column;
                align-items: center;
            }
            .premios-container {
                flex-direction: column;
                align-items: center;
            }
            .section-como h2,
            .section-premios h2,
            .section-ganadores h2 {
                font-size: 1.5rem;
            }
        }


        #video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.video-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-modal iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  padding: 4px 8px;
}

.video-close:hover {
  color: #ccc;
}


.thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


.thumb-mobile  { display: none; }
.thumb-desktop { display: block; }

@media (max-width: 767px) {
  .thumb-mobile  { display: block; }
  .thumb-desktop { display: none; }
}