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

        :root {
            --color-cream: #F5F1E8;
            --color-emerald: #2C5F4F;
            --color-emerald-dark: #1a3a2f;
            --color-gold: #D4AF37;
            --color-charcoal: #1C1C1C;
            --color-gray: #6B7280;
            --color-light-gray: #E5E7EB;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--color-cream);
            color: var(--color-charcoal);
            line-height: 1.2;
        }

        h1,
        h2,
        h3 {
            font-family: "Montserrat", Sans-serif;
            font-weight: bold;
            text-transform: uppercase;
            font-style: normal;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        header {
            padding: 2rem 0;
            border-bottom: 1px solid rgba(44, 95, 79, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .infinity-symbol {
            width: 40px;
            height: 40px;
            color: var(--color-emerald);
        }

        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--color-emerald);
            margin-bottom: 0.25rem;
        }

        .logo-text p {
            font-size: 0.75rem;
            color: var(--color-gray);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .header-cta {
            background-color: var(--color-gold);
            font-size: 1.5rem;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .header-cta:hover {
            background-color: gold;
        }

        /* Hero Section */
        .hero {
            padding: 1rem 0;
            text-align: center;
        }

        .badge {
            display: inline-block;
            background-color: rgba(44, 95, 79, 0.1);
            color: var(--color-emerald);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: 1.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--color-charcoal);
        }

        .highlight {
            color: rgb(188, 160, 1);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--color-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Countdown */
        .countdown {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .countdown-title {
            font-size: 1rem;
            color: var(--color-gray);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

        .countdown-item {
            text-align: center;
        }

        .countdown-value {
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-emerald);
            font-family: 'Playfair Display', serif;
        }

        .countdown-label {
            font-size: 0.875rem;
            color: var(--color-gray);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Benefits Section */
        .benefits {
            padding: 4rem 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--color-charcoal);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .benefit-card {
            background: var(--color-cream);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            transition: transform 0.3s;
        }

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

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: gold;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--color-emerald);
        }

        .benefit-card p {
            color: var(--color-gray);
            line-height: 1.6;
        }

        /* What's Included */
        .whats-included {
            padding: 4rem 0;
        }

        .included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .included-item {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background: white;
            border-radius: 0.75rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .check-icon {
            width: 24px;
            height: 24px;
            background: gold;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .included-item h4 {
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
            color: var(--color-charcoal);
        }

        .included-item p {
            margin-top: 10px;
            font-size: 1.2rem;
            color: var(--color-gray);
        }

        /* Form Section */
        .form-section {
            padding: 2rem 0;
            background: #000000;
            color: white;
        }

        .form-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
            align-items: center;
        }

        .form-container {
            text-align: center;
        }

        .form-section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: white;
        }

        .form-section .form-text {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .form {
            background: white;
            padding: 1.5rem;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 0.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--color-charcoal);
            font-weight: 500;
            font-size: 0.875rem;
        }

        .form-group input {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid var(--color-light-gray);
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--color-emerald);
        }

        .submit-btn {
            width: 100%;
            background: var(--color-gold);
            color: black;
            padding: 1rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .submit-btn:hover {
            background: gold;
        }

        .form-note {
            margin-top: 1rem;
            font-size: 0.75rem;
            color: var(--color-gray);
        }

        .countdown-compact {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            padding: 0.5rem;
            margin-bottom: 1rem;
            margin-top: 1rem;
            backdrop-filter: blur(10px);
        }

        .countdown-compact .countdown-title {
            font-size: 0.875rem;
            color: white;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-align: center;
        }

        .countdown-compact .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .countdown-compact .countdown-item {
            text-align: center;
        }

        .countdown-compact .countdown-value {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            font-family: 'Playfair Display', serif;
        }

        .countdown-compact .countdown-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .form-image-container {
            position: relative;
            height: 100%;
            min-height: 400px;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .form-image-container img {
            width: 100%;
            height: 100%;
        }

        /* Footer */
        footer {
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid rgba(44, 95, 79, 0.1);
            background-color: black;
        }

        footer p {
            color: white;
            font-size: 0.875rem;
        }

        .no-gaste{
            font-size: 1rem;
            line-height: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h2 {
                font-size: 1rem;
            }

            .countdown-timer {
                gap: 1rem;
            }

            .countdown-value {
                font-size: 2rem;
            }

            .countdown-compact .countdown-timer {
                gap: 1rem;
            }

            .countdown-compact .countdown-value {
                font-size: 1.5rem;
            }

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

            .benefits-grid,
            .included-grid {
                grid-template-columns: 1fr;
            }

            .form-content-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-container {
                order: 1;
            }

            .form-image-container {
                order: 2;
                min-height: 300px;
            }

            .form-section h2 {
                font-size: 2rem;
            }

            p{
                font-size: 1rem;
            }
        }

        /* Color del texto en el dropdown del país */
        .iti__selected-flag {
            color: #000000 !important;
        }

        /* Color del texto en la lista de países */
        .iti__country-list {
            color: #000000 !important;
        }

        /* Opcional: cambiar el fondo del input si es oscuro */
        #phone {
            background-color: #ffffff !important;
            color: #000000 !important;
        }

        .iti {
            width: 100%;
        }

        p {
            font-size: 1.2rem;
            font-weight: 500;
        }
