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

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            min-height: 100vh;
            background-color: #0F2A43;
            color: #FFFFFF;
            display: flex;
            flex-direction: column;
        }

        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 16px 28px;
            flex: 1;
        }

        @media (max-width: 900px) {
            .container {
                padding: 16px 20px;
            }
        }

        header {
            padding: 1rem 0;
            background-color: #0F2A43;
            position: relative;
        }

        .agentes-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: #EAB308;
            color: #0F2A43;
            border: none;
            border-radius: 6px;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .agentes-btn:hover {
            background-color: #D4A007;
        }

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

        .logo-square {
            width: 32px;
            height: 32px;
            background-color: #EAB308;
            border-radius: 4px;
        }

        .logo-center {
            text-align: center;
            margin-bottom: 0.25rem;
        }

        .wordmark {
            height: 100px;
            width: auto;
        }

        .hero {
            color: #FFFFFF;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .hero .etiqueta-colgante {
            position: static;
            margin-top: 1rem;
            margin-bottom: 0;
            transform: none;
            animation: none;
        }

        .hero-content {
            flex: 1;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #EAB308;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
        }

        .hero p {
            font-size: 1.125rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        @media (min-width: 1024px) {
            .hero {
                flex-direction: row;
                align-items: center;
                gap: 4rem;
            }

            .hero-content {
                flex: 1;
                max-width: 50%;
            }

            .form-card {
                flex: 1;
                max-width: 50%;
                margin-top: 0;
                height: fit-content;
            }
        }

        @media (max-width: 1023px) {
            .hero {
                gap: 2rem;
            }

            .form-card {
                margin-top: 2rem;
            }
        }

        .social-proof {
            position: relative;
        }

        .highlight-box {
            background-color: #EAB308;
            border: 2px solid #D4A007;
            border-radius: 12px;
            padding: 1.5rem;
            max-width: 500px;
            font-size: 1rem;
            line-height: 1.6;
            color: #0F2A43;
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 20px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid #EAB308;
        }

        .highlight-number {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0F2A43;
        }

        .form-card {
            background-color: #FFFFFF;
            border: 1px solid #E5EAF1;
            border-radius: 12px;
            padding: 1.9rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            position: relative;
            width: 100%;
            max-width: none;
        }

        .form-card h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #0F2A43;
            margin-bottom: 0.5rem;
        }

        .form-card p {
            color: #6B7280;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        input, select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #D1D5DB;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        input:focus, select:focus {
            outline: none;
            border-color: #1D4ED8;
            box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
        }

        .phone-group {
            display: flex;
            gap: 0.5rem;
        }

        .dial-code {
            flex-shrink: 0;
            width: 80px;
            padding: 0.75rem;
            border: 1px solid #D1D5DB;
            border-radius: 6px;
            background-color: #F9FAFB;
            color: #374151;
            font-size: 1rem;
            display: flex;
            align-items: center;
        }

        .phone-input {
            flex: 1;
        }

        .hint {
            font-size: 0.75rem;
            color: #6B7280;
            margin-top: 0.25rem;
        }

        .form-card .btn {
            background-color: #EAB308;
            color: #0F2A43;
        }

        .form-card .btn:hover {
            background-color: #D4A007;
        }

        .btn {
            width: 100%;
            padding: 0.75rem 1rem;
            background-color: #0F2A43;
            color: #FFFFFF;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
            position: relative;
            overflow: hidden;
        }

        .btn:hover {
            background-color: #0A1F33;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
        }

        .btn:disabled {
            background-color: #9CA3AF;
            cursor: not-allowed;
        }

        .etiqueta-colgante {
            position: absolute;
            top: -20px;
            right: 10px;
            background-color: #EAB308;
            border: 1px solid #D4A007;
            border-radius: 8px 8px 8px 0;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: #0F2A43;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            transform: rotate(5deg);
            animation: swing 4s ease-in-out infinite;
            z-index: 10;
        }

        .form-card .etiqueta-colgante {
            position: absolute;
            top: 10px;
            right: 10px;
            transform: none;
            animation: none;
            border-radius: 8px;
            z-index: 10;
        }

        .etiqueta-colgante::before {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 15px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #EAB308;
        }

        @keyframes swing {
            0%, 100% { transform: rotate(5deg) translateY(0) translateX(0); }
            25% { transform: rotate(8deg) translateY(-3px) translateX(1px); }
            50% { transform: rotate(5deg) translateY(-5px) translateX(0); }
            75% { transform: rotate(2deg) translateY(-3px) translateX(-1px); }
        }

        .social-proof-small {
            text-align: center;
            font-size: 0.875rem;
            color: #6B7280;
            margin: 0.75rem 0;
            line-height: 1.4;
            font-weight: 500;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .social-proof-small {
                font-size: 0.8rem;
                margin: 0.5rem 0;
            }
        }

        .privacy {
            text-align: center;
            font-size: 0.75rem;
            color: #6B7280;
            margin-top: 1rem;
        }

        .success-message {
            display: none;
            text-align: center;
            color: #059669;
            font-weight: 500;
            margin-top: 1rem;
        }

        .error {
            color: #DC2626;
            font-size: 0.75rem;
            margin-top: 0.25rem;
        }

/* Coming Soon Page Styles */
        header {
            background-color: #0F2A43;
            color: #FFFFFF;
            padding: 2rem 0;
            text-align: center;
        }

        header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #EAB308;
            overflow: hidden;
            border-right: 2px solid #EAB308;
            white-space: nowrap;
            animation: typing 4s steps(45, end), blink-caret 0.75s step-end infinite;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
                animation: typing 4s steps(45, end), blink-caret 0.75s step-end infinite;
            }
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: #EAB308; }
        }

        header p {
            font-size: 1.125rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
            overflow: hidden;
            border-right: 2px solid #FFFFFF;
            white-space: nowrap;
            animation: typing-subtitle 2s steps(50, end) 1.5s both, blink-caret-subtitle 0.75s step-end infinite 3.5s;
        }

        @media (max-width: 768px) {
            header p {
                font-size: 1rem;
                animation: typing-subtitle 2s steps(50, end) 1.5s both, blink-caret-subtitle 0.75s step-end infinite 3.5s;
            }
        }

        @keyframes typing-subtitle {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink-caret-subtitle {
            from, to { border-color: transparent; }
            50% { border-color: #FFFFFF; }
        }

        .reveal-section, .benefits-section, .form-section, .confirmation-section {
            background-color: #FFFFFF;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .benefits-section {
            margin-top: 3rem;
        }

        .reveal-section h2, .benefits-section h2, .form-section h2, .confirmation-section h2 {
            color: #0F2A43;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .reveal-section p, .benefits-section p {
            color: #374151;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .agents-section {
            margin-bottom: 2rem;
        }

        .agents-section h2 {
            color: #0F2A43;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .agents-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        @media (max-width: 768px) {
            .agents-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 1rem;
                padding: 0 1rem;
                margin: 0 -1rem;
            }

            .agent-card {
                flex: 0 0 85%;
                scroll-snap-align: start;
                margin-right: 1rem;
            }

            .agent-card:last-child {
                margin-right: 0;
            }
        }

        .agent-card {
            background-color: #FFFFFF;
            border: 1px solid #E5EAF1;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease;
            position: relative;
        }

        .agent-card:hover {
            transform: translateY(-10px);
        }

        /* Mobile touch support for hover animation */
        @media (hover: none) and (pointer: coarse) {
            .agent-card:active {
                transform: translateY(-10px);
            }
        }

        .agent-card h3 {
            color: #0F2A43;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .agent-card h4 {
            color: #374151;
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .agent-card ul {
            list-style: none;
            padding: 0;
            margin-bottom: 1rem;
        }

        .agent-card li {
            color: #374151;
            margin-bottom: 0.5rem;
            line-height: 1.5;
        }

        .agent-card p {
            color: #6B7280;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .benefits-section ul {
            list-style: none;
            padding: 0;
        }

        .benefits-section li {
            color: #374151;
            margin-bottom: 0.75rem;
            line-height: 1.5;
        }

        .form-section form {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-section .form-group {
            margin-bottom: 1.5rem;
        }

        .form-section label {
            display: block;
            font-weight: 500;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .form-section input[type="email"], .form-section input[type="text"] {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #D1D5DB;
            border-radius: 6px;
            font-size: 1rem;
        }

        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .radio-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
        }

        .radio-group input[type="radio"] {
            margin: 0;
        }

        .btn-large {
            width: 100%;
            padding: 1rem 2rem;
            background-color: #EAB308;
            color: #0F2A43;
            border: none;
            border-radius: 6px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
            margin-top: 1rem;
        }

        .btn-large:hover {
            background-color: #D4A007;
        }

        .spots-left {
            text-align: center;
            font-size: 0.875rem;
            color: #6B7280;
            margin-top: 1rem;
            font-weight: 500;
        }

        .confirmation-section {
            background-color: #F0F9FF;
            border: 1px solid #0EA5E9;
        }

        .confirmation-section h2 {
            color: #0C4A6E;
        }

        .confirmation-section h3 {
            color: #0C4A6E;
            font-size: 1.125rem;
            font-weight: 600;
            margin: 1.5rem 0 0.5rem 0;
        }

        .confirmation-section ol, .confirmation-section ul {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .confirmation-section li {
            color: #374151;
            margin-bottom: 0.5rem;
            line-height: 1.5;
        }

        .confirmation-section p {
            color: #374151;
            line-height: 1.5;
            margin-bottom: 0.5rem;
        }

/* Floating Button Styles */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #EAB308;
    border: none;
    border-radius: 50%;
    color: #0F2A43;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn:hover {
    background-color: #D4A007;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-btn .tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: #EAB308;
    color: #0F2A43;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.floating-btn .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #EAB308;
}

.floating-btn:hover .tooltip {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}