/* styles.css */

/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #3768b7; /* Fondo claro */
    color: #333333; /* Texto oscuro */
    line-height: 1.6;
}

/* Header (Logo y Menú) */
header {
    background-color: #f5f5f5; /* Azul Profundo */
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: #333333;
    justify-content: space-between;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
}

header nav a {
    color: #333333;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
}

header nav a:hover {
    text-decoration: underline;
}

/* Hero Section (Portada Visual) */
#hero {
    height: 100vh;
    text-align: center;
    padding: 100px 20px;
    color: #ffde84;
    background-image: url('portada.jpg'); /* Cambiar por tu imagen de portada */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Clave para el efecto parallax */
    position: relative;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #ffffff;
    color: #3768b7;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    border: 2px solid #3768b7;
}

.cta-button:hover {
    background-color: #3768b7;
    color: #ffffff;
}

/* Sección de Beneficios */
#benefits {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}

#benefits h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #3768b7;
}

#benefits ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#benefits li {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    max-width: 250px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    color: #333333;
}

/* Servicios */
#services {
    padding: 60px 20px;
    background-color: #60c8e8; /* Azul Claro */
    text-align: center;
    color: #ffffff;
}

#services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

#services ul {
    list-style-type: none;
    margin: 0 auto;
    max-width: 800px;
}

#services li {
    background-color: #3768b7;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #ffffff;
}

/* Testimonios */
#testimonials {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

#testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #3768b7;
}

#testimonials p {
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

/* Contacto */
#contact {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

#contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #3768b7;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;
}

#contact input, #contact textarea, #contact button {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #60c8e8;
    font-size: 1rem;
}

#contact button {
    background-color: #3768b7;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact button:hover {
    background-color: #60c8e8;
    border: 1px solid #3768b7;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #3768b7;
    text-align: center;
    font-size: 0.9rem;
    color: #ffffff;
}

footer a {
    color: #60c8e8;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
