/* Estilos generales */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #000000;
    transition: all 0.3s ease;
}

header {
    background-color: #0585a8;
    padding: 60px 20px;
    display: flex;
    justify-content: center; /* Centrar el logo */
    align-items: center;
    flex-wrap: wrap;
}

header .logo img {
    height: 60px; /* Incrementar el tamaño del logo */
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-shadow: 1px 1px 2px #000000;
    font-family: 'Roboto', sans-serif;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ffdd57;
}

/* Sección principal */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
    flex-wrap: wrap;
    text-align: center;
}

.hero-content {
    max-width: 50%;
    flex: 1;
    text-align: left;
    animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    font-family: 'Consolas', sans-serif;
}

.hero-content .btn {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.hero-content .btn:hover {
    background-color: #0585a8;
    color: #ffffff;
}

/* Botón Follow Us */
.hero-content .follow-btn {
    background-color: #000000;
    color: #ffffff;
    margin-left: 10px; /* Separación entre botones */
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.hero-content .follow-btn:hover {
    background-color: #0585a8;
    color: #ffffff;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    flex: 1;
}

/* Sección de características */
.features {
    padding: 10px 20px;
    text-align: center;
}

.features h2 {
    font-size: 2em;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.feature-item {
    display: inline-block;
    width: 30%;
    margin: 0 1.5%;
    vertical-align: top;
    box-shadow: 0 4px 6px #0000001a;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px #00000033;
}

.feature-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.feature-item h3 {
    font-size: 1em;
    margin: 10px 0;
    font-family: 'Roboto', sans-serif;
}

.feature-item p {
    font-size: 0.85em;
    color: #000000;
    font-family: 'Roboto', sans-serif;
}

/* Pie de página */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
    font-family: 'Inter', sans-serif;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adaptabilidad */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .feature-item {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }
}
/* Estilos para el formulario de contacto */
.contact-form {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-form h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #333333;
}



/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0585a841;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    padding-right: 50px; /* Añade más espacio en el lado derecho */
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 8px #0000001a;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.close:hover {
    color: #ff0000;
}

/* Estilos para el formulario */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn {
    width: 105%;
    padding: 12px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #195ea7;
}