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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 10px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            width: 28%;
            height: 28%;
            margin-right: 5px;
        }

        .name {
            display: flex;
            gap: 30px;
            color: white;
            font-weight: 500;
            align-content: flex-start;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .nav-links a:hover {
            transform: translateY(-2px);
        }

        .text-login{
            color: #667eea;
        }

        .btn-login {
            padding: 10px 25px;
            background: white;
            color: #667eea;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-login:hover {
            background: white;
            color: white;
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 50px 50px;
            position: relative;
        }

        .hero-content {
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 56px;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-primary {
            background: white;
            color: #667eea;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

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

        .hero-image {
            position: relative;
        }

        .floating-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .floating-card h3 {
            color: #667eea;
            margin-bottom: 15px;
            font-size: 24px;
        }

        .floating-card p {
            color: #666;
            line-height: 1.6;
        }

        .features {
            padding: 80px 50px;
            background: white;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            color: #333;
            margin-bottom: 60px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .feature-card {
            padding: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s;
            color: white;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .feature-card p {
            line-height: 1.6;
            opacity: 0.95;
        }

        .stats {
            padding: 80px 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item h2 {
            font-size: 48px;
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 18px;
            opacity: 0.9;
        }

        footer {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px 20px;
            text-align: center;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            margin-bottom: 25px;
        }

        .footer-content p {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 20px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: white;
            color: #667eea;
            transform: translateY(-5px);
        }

        .fb_icon{
            width: 100%;
            height: 100%;
            margin-right: 0px;
            align-items: center;
        }
        .ig_icon{
            width: 90%;
            height: 90%;
            margin-right: 0px;
            align-items: center;
        }
        .tiktok_icon{
            width: 80%;
            height: 80%;
            margin-right: 0px;
            align-items: center;
        }
        .wp_icon{
            width: 100%;
            height: 100%;
            margin-right: 0px;
            align-items: center;
        }

        .navbar a.logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .navbar .logo img {
            height: 60px;
            width: auto;
            transition: transform 0.3s;
        }

        .navbar .logo img:hover {
            transform: scale(1.05);
        }
        .login-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            margin-top: 50px;
        }

        .login-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .login-info {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 40px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .login-info h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .login-info p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .login-form-container {
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .login-form-container h2 {
            color: #333;
            font-size: 28px;
            margin-bottom: 10px;
        }

        .login-form-container .subtitle {
            color: #666;
            margin-bottom: 30px;
            font-size: 14px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: #333;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .forgot-password {
            text-align: right;
            margin-bottom: 20px;
        }

        .forgot-password a {
            color: #667eea;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .forgot-password a:hover {
            color: #764ba2;
        }

        .btn-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .register-link {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 14px;
        }

        .register-link a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .register-link a:hover {
            color: #764ba2;
        }

        .back-home {
            text-align: center;
            margin-top: 15px;
        }

        .back-home a {
            color: #667eea;
            text-decoration: none;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s;
        }

        .back-home a:hover {
            color: #764ba2;
            gap: 8px;
        }

        .register-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            margin-top: 50px;
        }

        .register-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .register-info {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 40px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .register-info h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .register-info p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .register-form-container {
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .register-form-container h2 {
            color: #333;
            font-size: 28px;
            margin-bottom: 10px;
        }

        .register-form-container .subtitle {
            color: #666;
            margin-bottom: 30px;
            font-size: 14px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: #333;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .password-requirements {
            font-size: 12px;
            color: #666;
            margin-top: 5px;
            line-height: 1.4;
        }

        .terms {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .terms input[type="checkbox"] {
            margin-top: 3px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .terms label {
            font-size: 13px;
            color: #666;
            cursor: pointer;
        }

        .terms a {
            color: #667eea;
            text-decoration: none;
        }

        .terms a:hover {
            text-decoration: underline;
        }

        .btn-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .login-link {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 14px;
        }

        .login-link a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .login-link a:hover {
            color: #764ba2;
        }

            .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        z-index: 9999;
        transition: all 0.3s ease;
        text-decoration: none;
        overflow: hidden;
    }

    .whatsapp-float:hover {
        width: 200px;
        border-radius: 30px;
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        transform: scale(1.05);
    }

    .whatsapp-icon {
        width: 35px;
        height: 35px;
        filter: brightness(0) invert(1);
        transition: all 0.3s ease;
    }

    .whatsapp-float:hover .whatsapp-icon {
        margin-right: 10px;
    }

    .whatsapp-text {
        color: white;
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;
        opacity: 0;
        max-width: 0;
        transition: all 0.3s ease;
    }

    .whatsapp-float:hover .whatsapp-text {
        opacity: 1;
        max-width: 150px;
    }

    .top-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.7);
        animation: fadeIn 0.4s;
    }
    .top-modal-content {
        background-color: #1e1e2f;
        color: #e0e0e0;
        margin: 0 auto;
        padding: 30px;
        border-radius: 0 0 12px 12px;
        width: 90%;
        max-width: 900px;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        
        /* Animación de slide down */
        transform: translateY(-100%);
        transition: transform 0.4s ease-out;
    }
    .top-modal.open .top-modal-content {
        transform: translateY(0);
    }
    .top-modal .close {
        color: #aaa;
        float: right;
        font-size: 36px;
        font-weight: bold;
        cursor: pointer;
        margin-top: -10px;
        margin-right: -10px;
    }
    .top-modal .close:hover {
        color: #fff;
    }
    .top-modal h2 {
        color: #00bfff;
        border-bottom: 1px solid #444;
        padding-bottom: 10px;
        margin-top: 0;
    }
    .top-modal p, .top-modal li {
        line-height: 1.6;
        margin-bottom: 15px;
    }
    @keyframes fadeIn {
        from {opacity: 0;}
        to {opacity: 1;}
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }
        50% {
            box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
        }
        100% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }
    }

    .whatsapp-float {
        animation: pulse 2s infinite;
    }

    .whatsapp-float:hover {
        animation: none;
    }

@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .navbar .logo img {
        height: 50px;
    }

    .name {
        font-size: 18px;
        margin-left: 10px;
    }

    .nav-links {
        gap: 10px;
        font-size: 14px;
    }

    .btn-login {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* Hero Section */
    .hero {
        padding: 80px 20px 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Features */
    .features {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Stats */
    .stats {
        padding: 50px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stat-item h2 {
        font-size: 36px;
    }

    .stat-item p {
        font-size: 14px;
    }

    /* Login Page */
    .login-container {
        padding: 20px;
        margin-top: 80px;
    }

    .login-wrapper {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .login-info {
        padding: 40px 25px;
        order: 2; 
    }

    .login-info h2 {
        font-size: 24px;
    }

    .login-info p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .login-form-container {
        padding: 40px 25px;
        order: 1; 
    }

    .login-form-container h2 {
        font-size: 24px;
    }

    .register-container {
        padding: 20px;
        margin-top: 80px;
    }

    .register-wrapper {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .register-info {
        padding: 40px 25px;
        order: 2;
    }

    .register-info h2 {
        font-size: 24px;
    }

    .register-info p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .register-form-container {
        padding: 40px 25px;
        order: 1; 
    }

    .register-form-container h2 {
        font-size: 24px;
    }

    /* Forms */
    .form-group input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 12px;
        font-size: 15px;
    }

    .terms {
        font-size: 12px;
    }

    .terms input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    /* Footer */
    footer {
        padding: 40px 20px;
    }

    .footer-content p {
        font-size: 14px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    /* Lista de características */
    .info-features li {
        font-size: 14px;
        padding: 8px 0;
    }
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }

    .whatsapp-float:hover {
        width: 180px;
    }

    .whatsapp-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .navbar .logo img {
        height: 40px;
    }

    .name {
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .login-container,
    .register-container {
        padding: 15px;
    }

    .login-info,
    .register-info,
    .login-form-container,
    .register-form-container {
        padding: 30px 20px;
    }
    .whatsapp-float {
        bottom: 12px;
        right: 12px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float:hover {
        width: 160px;
    }

    .whatsapp-text {
        font-size: 12px;
    }
}