        :root {
            --primary-color: #ff7a00;
            --primary-hover: #e06b00;
            --primary-light: #fff3e6;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --bg-gradient: radial-gradient(circle at top left, #fff7ed 0%, #ffedd5 50%, #fef3c7 100%);
            --card-bg: rgba(255, 255, 255, 0.85);
            --border-color: rgba(254, 215, 170, 0.5);
            --shadow: 0 20px 40px -15px rgba(251, 146, 60, 0.15), 0 15px 25px -10px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg-gradient);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--text-dark);
            padding: 40px 20px;
            overflow-x: hidden;
            position: relative;
            gap: 20px;
        }

        /* Decorative Background Elements */
        .bg-deco-1 {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(254, 215, 170, 0.4) 0%, rgba(254, 215, 170, 0) 70%);
            top: -50px;
            right: -50px;
            z-index: 1;
            pointer-events: none;
        }

        .bg-deco-2 {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(253, 186, 116, 0.3) 0%, rgba(253, 186, 116, 0) 70%);
            bottom: -100px;
            left: -100px;
            z-index: 1;
            pointer-events: none;
        }

        .container {
            max-width: 550px;
            width: 100%;
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-color);
            border-radius: 28px;
            padding: 25px 25px 30px 25px;
            box-shadow: var(--shadow);
            text-align: center;
            z-index: 10;
            position: relative;
            animation: cardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes cardEntrance {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Logos Header styling */
        .brand-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 18px;
        }

        .logos-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 10px;
        }

        .logo-divider {
            width: 1px;
            height: 40px;
            background: rgba(254, 215, 170, 0.8);
        }

        .beto-header-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 6px 15px rgba(251, 146, 60, 0.2);
            background-color: white;
            transition: var(--transition);
        }

        .beto-header-avatar:hover {
            transform: scale(1.05) rotate(3deg);
        }

        .main-logo {
            max-width: 90px;
            height: auto;
            margin-bottom: 0;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
            transition: var(--transition);
        }

        .main-logo:hover {
            transform: scale(1.05) rotate(-2deg);
        }

        .brand-title {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, #ff7a00 0%, #ea580c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
            letter-spacing: -0.5px;
        }

        .brand-subtitle {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Beto Greeting Section */
        .beto-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 10px 0 15px 0;
            position: relative;
        }

        .beto-avatar-container {
            position: relative;
            margin-bottom: 20px;
        }

        .beto-avatar {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid white;
            box-shadow: 0 8px 20px rgba(251, 146, 60, 0.25);
            transition: var(--transition);
            background-color: white;
        }

        .beto-avatar-container::after {
            content: '🐾';
            position: absolute;
            bottom: 0;
            right: 5px;
            font-size: 22px;
            background: white;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            animation: pawWiggle 3s infinite ease-in-out;
        }

        @keyframes pawWiggle {

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

            50% {
                transform: rotate(15deg) scale(1.1);
            }
        }

        .beto-section:hover .beto-avatar {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 12px 25px rgba(251, 146, 60, 0.35);
        }

        .speech-bubble {
            background: white;
            border: 1px solid rgba(254, 215, 170, 0.6);
            border-radius: 20px;
            padding: 20px;
            position: relative;
            max-width: 100%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        }

        .speech-bubble::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 20px;
            height: 20px;
            background: white;
            border-top: 1px solid rgba(254, 215, 170, 0.6);
            border-left: 1px solid rgba(254, 215, 170, 0.6);
        }

        .greeting-title {
            font-weight: 700;
            font-size: 18px;
            color: #ea580c;
            margin-bottom: 8px;
        }

        .greeting-text {
            font-size: 15px;
            line-height: 1.6;
            color: #475569;
        }

        /* Action Buttons */
        .actions-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 15px;
        }

        .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, #ea580c 100%);
            color: white;
            box-shadow: 0 10px 20px -5px rgba(234, 88, 12, 0.3);
            border: none;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #e06b00 0%, #c2410c 100%);
            transform: translateY(-2px);
            box-shadow: 0 12px 25px -5px rgba(234, 88, 12, 0.45);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-mundial {
            background: linear-gradient(135deg, #10b981 0%, #047857 100%);
            color: white;
            box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.3);
            border: none;
        }

        .btn-mundial:hover {
            background: linear-gradient(135deg, #059669 0%, #065f46 100%);
            transform: translateY(-2px);
            box-shadow: 0 12px 25px -5px rgba(16, 185, 129, 0.45);
        }


        .social-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 6px;
        }

        .btn-social {
            font-size: 14px;
            padding: 12px 15px;
            border-radius: 14px;
            border: 1px solid var(--border-color);
            background: white;
            color: var(--text-dark);
            font-weight: 600;
        }

        .btn-social:hover {
            background: #fafafa;
            transform: translateY(-1px);
        }

        .btn-whatsapp:hover {
            color: #128C7E;
            border-color: #25D366;
            background: #f0fdf4;
        }

        .btn-instagram:hover {
            color: #c13584;
            border-color: #f472b6;
            background: #fdf2f8;
        }

        /* SVG Icons */
        .icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* Footer */
        .footer-info {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            width: 100%;
            max-width: 550px;
            border-top: 1px solid rgba(226, 232, 240, 0.6);
            padding-top: 20px;
            margin-top: 15px;
        }

        /* Responsive adaptation */
        @media (max-width: 480px) {
            .container {
                padding: 30px 20px;
            }

            .brand-title {
                font-size: 24px;
            }

            .social-buttons {
                grid-template-columns: 1fr;
            }
        }

        .product-request-notice {
            margin-top: 30px;
            padding: 20px;
            background-color: var(--primary-light);
            border-radius: 20px;
            border: 1px dashed var(--primary-color);
        }

        .product-request-notice p {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .product-request-notice span {
            font-size: 14px;
            color: var(--text-muted);
            display: block;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .btn-request {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: white;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
        }

        .btn-request:hover {
            background: var(--primary-color);
            color: white;
        }

        .btn-outline {
            border: 1px solid var(--border-color);
            background: white;
            color: var(--text-dark);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            border-radius: 12px;
            font-size: 14px;
            transition: var(--transition);
        }

        /* --- ESTILOS MODERNOS DEL FUNNEL INTERACTIVO (OPCIÓN 3) --- */
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 10px 20px -5px rgba(234, 88, 12, 0.3);
            }
            50% {
                transform: scale(1.02);
                box-shadow: 0 12px 25px -3px rgba(234, 88, 12, 0.45);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 10px 20px -5px rgba(234, 88, 12, 0.3);
            }
        }

        .pulse-animation {
            animation: pulse 2.5s infinite ease-in-out;
        }

        .funnel-container {
            width: 100%;
            margin-top: 10px;
            text-align: center;
        }

        .progress-container {
            width: 100%;
            margin-bottom: 25px;
        }

        .progress-bar {
            height: 7px;
            background: #f1f5f9;
            border-radius: 10px;
            overflow: hidden;
            width: 100%;
            border: 1px solid rgba(226, 232, 240, 0.5);
            margin-bottom: 6px;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-color) 0%, #ea580c 100%);
            border-radius: 10px;
            width: 0%;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .progress-text {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: right;
        }

        .funnel-step {
            display: none;
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            width: 100%;
            flex-direction: column;
            align-items: center;
        }

        .funnel-step.active {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .funnel-step-title {
            font-size: 21px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 6px;
            letter-spacing: -0.3px;
            line-height: 1.3;
        }

        .funnel-step-desc {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 25px;
            line-height: 1.4;
        }

        .funnel-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            width: 100%;
            margin-bottom: 15px;
        }

        .funnel-option-card {
            background: white;
            border: 2px solid rgba(226, 232, 240, 0.8);
            border-radius: 20px;
            padding: 24px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            gap: 8px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01), 0 2px 4px -1px rgba(0,0,0,0.01);
            user-select: none;
        }

        .funnel-option-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 12px 20px -8px rgba(251, 146, 60, 0.15);
        }

        .funnel-option-card.selected {
            border-color: var(--primary-color);
            background-color: var(--primary-light);
            box-shadow: 0 10px 20px -5px rgba(251, 146, 60, 0.18);
            transform: scale(1.02);
        }

        .funnel-card-emoji, .funnel-card-icon {
            font-size: 34px;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .funnel-option-card:hover .funnel-card-emoji,
        .funnel-option-card:hover .funnel-card-icon {
            transform: scale(1.1) rotate(4deg);
        }

        .funnel-card-label {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .brands-selector-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            width: 100%;
            margin-bottom: 15px;
        }

        .brand-item {
            background: white;
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: 14px;
            padding: 14px 6px;
            font-size: 13px;
            font-weight: 700;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            color: var(--text-dark);
            box-shadow: 0 2px 4px rgba(0,0,0,0.01);
        }

        .brand-item:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: var(--primary-light);
            transform: translateY(-1px);
        }

        .brand-item.selected {
            border-color: var(--primary-color);
            background: linear-gradient(135deg, var(--primary-color) 0%, #ea580c 100%);
            color: white;
            box-shadow: 0 6px 12px -3px rgba(234, 88, 12, 0.25);
        }

        .form-group-funnel {
            display: flex;
            flex-direction: column;
            gap: 6px;
            width: 100%;
        }

        .funnel-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-dark);
            margin-left: 2px;
        }

        .funnel-input {
            padding: 14px 18px;
            border: 1px solid rgba(226, 232, 240, 0.9);
            border-radius: 14px;
            font-size: 14px;
            font-family: inherit;
            color: var(--text-dark);
            background: white;
            transition: var(--transition);
            width: 100%;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
        }

        .funnel-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.01);
            background: white;
        }

        .btn-back {
            background: none;
            border: none;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-muted);
            cursor: pointer;
            padding: 8px 12px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .btn-back:hover {
            color: var(--text-dark);
            transform: translateX(-3px);
        }

        /* Responsive adaptation override for Funnel */
        @media (max-width: 480px) {
            .funnel-step-title {
                font-size: 18px;
            }
            .funnel-cards-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .funnel-option-card {
                flex-direction: row;
                justify-content: flex-start;
                padding: 14px 20px;
                gap: 16px;
                border-radius: 16px;
            }
            .funnel-card-emoji {
                font-size: 28px;
            }
            .brands-selector-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
