        :root {
            --verde-lima: #a8b944;
            --morado-pastel: #c9b5e8;
            --blanco: #ffffff;
            --negro: #333333;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--verde-lima) 0%, #8ba832 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            position: relative;
        }

        /* Header */
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: var(--morado-pastel);
            padding: 1rem 2rem;
            border-bottom: 3px solid var(--verde-lima);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .header-logo {
            height: 50px;
            border-radius: 50%;
        }

        .brand-name {
            font-size: 1.5rem;
            color: var(--blanco);
            font-weight: 700;
        }

        .nav {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .nav-link {
            color: var(--blanco);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-link:hover,
        .nav-link--active {
            background-color: var(--verde-lima);
            color: var(--blanco);
        }

        .stars {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .star {
            position: absolute;
            color: rgba(255, 255, 255, 0.6);
            font-size: 24px;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        .container {
            text-align: center;
            padding: 40px;
            position: relative;
            z-index: 1;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .logo-container {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 30px;
            animation: bounce 2s ease-in-out infinite;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .logo-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        h1 {
            color: white;
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
            letter-spacing: 2px;
        }

        .teen {
            color: var(--morado-pastel);
            font-weight: 900;
        }

        .subtitle {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .coming-soon {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 30px 50px;
            display: inline-block;
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

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

        .emoji {
            font-size: 2rem;
            margin: 0 10px;
        }

        .description {
            margin-top: 40px;
            color: white;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* --- Webinar page styles --- */

        .container {
            justify-content: flex-start;
            padding-top: 50px;
            padding-bottom: 60px;
        }

        .webinar-banner {
            width: 100%;
            max-width: 520px;
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
            margin: 0 auto 32px;
            display: block;
        }

        .webinar-name {
            color: var(--morado-pastel);
            font-size: 2.2rem;
            font-weight: 900;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            margin-bottom: 24px;
            letter-spacing: 1px;
        }

        .hook-text {
            color: white;
            font-size: 1.15rem;
            max-width: 600px;
            line-height: 1.7;
            margin-bottom: 20px;
            opacity: 0.95;
        }

        .webinar-desc {
            color: white;
            font-size: 1.05rem;
            max-width: 580px;
            line-height: 1.7;
            margin-bottom: 36px;
            opacity: 0.9;
        }

        .learn-section {
            background: #ffe94d;
            border-radius: 20px;
            padding: 30px 36px;
            max-width: 620px;
            width: 100%;
            text-align: left;
            margin-bottom: 36px;
        }

        .learn-title {
            color: #333333;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .learn-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .learn-list li {
            color: #333333;
            font-size: 1rem;
            line-height: 1.5;
        }

        .event-details {
            background: #ffe94d;
            border-radius: 16px;
            padding: 22px 32px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 400px;
            width: 100%;
            margin-bottom: 36px;
        }

        .detail-item {
            color: #333333;
            font-size: 1.05rem;
            font-weight: 600;
        }

        .detail-highlight {
            color: #6a3fa0;
            font-weight: 700;
            font-size: 1rem;
            margin-top: 4px;
        }

        .price-section {
            margin-bottom: 30px;
            text-align: center;
        }

        .price-question {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            opacity: 0.9;
            margin-bottom: 6px;
        }

        .price-amount {
            color: white;
            font-size: 2.8rem;
            font-weight: 900;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 36px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-stripe {
            background: #635BFF;
        }

        .btn-paypal {
            background: #FFC439;
        }

        .btn-logo {
            font-family: 'Arial Black', Arial, Helvetica, sans-serif;
            font-weight: 900;
            font-size: 1.5rem;
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .btn-logo--stripe {
            color: #ffffff;
        }

        .sign-off {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }

            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .brand-name {
                font-size: 1.2rem;
            }

            .nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .nav-link {
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem;
            }

            .container {
                padding: 30px 20px 50px;
            }

            h1 {
                font-size: 2rem;
                margin-bottom: 10px;
            }

            .logo-container {
                margin-bottom: 20px;
            }

            .logo-container {
                width: 120px;
                height: 120px;
            }

            .webinar-name {
                font-size: 1.6rem;
            }

            .webinar-banner {
                border-radius: 14px;
            }

            .learn-section {
                padding: 22px 20px;
            }

            .event-details {
                padding: 18px 22px;
            }

            .price-amount {
                font-size: 2.2rem;
            }

            .btn {
                padding: 14px 28px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .brand-name {
                font-size: 1rem;
            }

            .header-logo {
                height: 40px;
            }

            .nav-link {
                font-size: 0.8rem;
                padding: 0.35rem 0.6rem;
            }

            h1 {
                font-size: 1.7rem;
            }

            .logo-container {
                width: 100px;
                height: 100px;
            }

            .webinar-name {
                font-size: 1.35rem;
            }

            .hook-text,
            .webinar-desc {
                font-size: 0.95rem;
            }

            .learn-list li {
                font-size: 0.9rem;
            }

            .detail-item {
                font-size: 0.95rem;
            }

            .price-amount {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                text-align: center;
                padding: 14px 20px;
            }
        }
