/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0; /* Fondo gris claro */
    color: #333;
}

header {
    background-color: #007bff; /* Color azul para el encabezado */
    padding: 10px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}


        .login-button {
            margin-top: 20px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
        }

        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        .popup-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            padding: 20px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            width: 300px;
            border-radius: 10px;
            text-align: center;
        }

        .popup-content h2 {
            margin-top: 0;
        }

        .popup-content button {
            display: block;
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            font-size: 16px;
            cursor: pointer;
            border: none;
            border-radius: 5px;
        }

        .email-login {
            background-color: #4285F4;
            color: white;
        }

        .facebook-login {
            background-color: #3b5998;
            color: white;
        }

        .google-login {
            background-color: #db4437;
            color: white;
        }

        .close-popup {
            background-color: #ddd;
            color: #333;
        }

.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #007bff;
    color: white;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero button {
    background-color: #ff6600;
    border: none;
    padding: 15px 30px;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #e65c00;
}

/* Features Section */
.features {
    padding: 50px 20px;
    background-color: #ffffff; /* Fondo blanco para resaltar los bloques */
    text-align: center;
}

.features .feature {
    display: inline-block;
    width: 30%;
    margin: 15px;
    padding: 30px;
    background-color: #ffffff; /* Bloques con fondo blanco */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.features .feature img {
    display: block;
    margin: 0 auto 20px;
    height: 80px;
}

.features .feature h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.features .feature p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features .feature ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #007bff;
}

.features .feature ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #333;
}

.plans, .plans-detail {
    text-align: center;
}

.plans h2, .plans-detail h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.plans .plan, .plans-detail .plan {
    display: inline-block;
    width: 30%;
    padding: 20px;
    margin: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plans .plan:hover, .plans-detail .plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.plans .plan h3, .plans-detail .plan h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.plans .plan p, .plans-detail .plan p {
    font-size: 1em;
    margin-bottom: 20px;
}

.plans .plan button, .plans-detail .plan button {
    background-color: #ff6600;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.plans .plan button:hover, .plans-detail .plan button:hover {
    background-color: #e65c00;
}

.contact h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.contact p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact form input[type="text"],
.contact form input[type="email"],
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

.contact form textarea {
    resize: vertical;
    height: 150px;
}

.contact form button {
    background-color: #007bff;
    border: none;
    padding: 15px 30px;
    color: white;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    background-color: #0056b3;
}


.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2em;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff0000;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .features .feature,
    .plans .plan,
    .plans-detail .plan {
        width: 45%;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .features .feature,
    .plans .plan,
    .plans-detail .plan {
        width: 80%;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero button {
        font-size: 1em;
        padding: 10px 20px;
    }

    .popup-content iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .features .feature,
    .plans .plan,
    .plans-detail .plan {
        width: 100%;
    }

    .popup-content iframe {
        height: 300px;
    }
}

        .login-button {
            margin-top: 20px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
        }

        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        .popup-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            padding: 20px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            width: 300px;
            border-radius: 10px;
            text-align: center;
        }

        .popup-content h2 {
            margin-top: 0;
        }

        .popup-content button {
            display: block;
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            font-size: 16px;
            cursor: pointer;
            border: none;
            border-radius: 5px;
        }

        .email-login {
            background-color: #4285F4;
            color: white;
        }

        .facebook-login {
            background-color: #3b5998;
            color: white;
        }

        .google-login {
            background-color: #db4437;
            color: white;
        }

        .close-popup {
            background-color: #ddd;
            color: #333;
        }
