/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-img {
    width: 50px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

.btn-contact {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #0056b3;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #333;
    display: block;
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 25px;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 80vh;
    background-image: url('../Recursos/portada1.jpg'); /* Coloca la imagen de fondo */
    background-size: cover; /* Asegura que la imagen cubra todo el contenedor */
    background-position: center; /* Centra la imagen de fondo */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinea el contenido al inicio (izquierda) */
    padding: 0 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-content {
    max-width: 600px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6); /* Fondo blanco con opacidad del 60% */
    padding: 40px;
    border-radius: 16px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil para el contenedor */
}

.hero-text h2 {
    color: #007bff;
    font-size: 3.7em;
    margin-bottom: 12px;
    font-weight: 502;
}

.hero-text h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 15px 30px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
    font-size: 1em;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    padding: 15px 30px;
    background-color: transparent;
    color: #007bff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
    font-size: 1em;
}

.btn-secondary:hover {
    background-color: #007bff;
    color: #fff;
}




/* Beneficios Section Styles */
.beneficios {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.beneficios .container {
    max-width: 1200px;
    margin: 0 auto;
}

.beneficios h2 {
    color: #007bff;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.beneficios p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.benefits-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}



/* Card Styles */
.card {
    flex: 1;
    max-width: 32%;
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px; /* Borde redondeado */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra para darle profundidad */
    cursor: pointer;
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon img {
    max-width: 50px;
    height: auto;
}

.benefit-item h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 500;
}

.benefit-item p {
    color: #666;
    font-size: 1em;
}

/* Equipo Section Styles */
.equipo {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.equipo .container {
    max-width: 1200px;
    margin: 0 auto;
}

.equipo h2 {
    color: #333;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.equipo p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.equipo-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.equipo-item {
    flex: 1;
    max-width: 32%;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.equipo-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.equipo-item h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.equipo-item p {
    color: #777;
    font-size: 1em;
    margin-bottom: 20px;
}

.equipo-social a {
    display: inline-block;
    margin-right: 10px;
}

.equipo-social img {
    width: 24px;
    height: 24px;
}


/* Testimonio Section Styles */
.testimonio {
    padding: 60px 20px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonio .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
}

.testimonio-image img {
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-right: 20px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonio-text {
    max-width: 450px;
    text-align: left;
}

.testimonio-text .quote {
    font-style: italic;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.6;
}

.testimonio-text .quote::before {
    content: "❝" ;
    font-size: 3em;
    color: #007bff;
    position: absolute;
    left: -30px;
    top: -20px;
}  
    .testimonio-text .quote::after {
    content:  "❞";
    font-size: 3em;
    color: #007bff;
    position: absolute;
    left: 220px;
    top: 70px;
}

.testimonio-text h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 5px;
}

.testimonio-text .role {
    color: #777;
    font-size: 1em;
}

/* Contacto Section Styles */
.contacto {
    padding: 60px 20px;
    background-color: #002855; /* Fondo azul oscuro */
    color: #fff;
    text-align: center;
}

.contacto .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contacto h2 {
    color: #ffffff;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
}

.contacto p {
    color: #b0c7f1;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.contacto-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.contacto-item {
    flex: 1;
    max-width: 30%;
    background-color: #003366; /* Un tono más claro de azul */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.contacto-item:hover {
    transform: translateY(-10px);
}

.contacto-item .icono {
    margin-bottom: 15px;
}

.contacto-item .icono img {
    width: 50px;
    height: auto;
}

.contacto-item h3 {
    color: #ffffff;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.contacto-item p {
    color: #b0c7f1;
    font-size: 1.1em;
}

/* Inscripción Section Styles */
.inscripcion {
    padding: 60px 20px;
    background-color: #e8f0fe; /* Color de fondo suave */
    text-align: center;
}

.inscripcion .container {
    max-width: 1200px;
    margin: 0 auto;
}

.inscripcion h2 {
    color: #2c3e50;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 40px;
}

.inscripcion-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat-item {
    flex: 1;
    max-width: 30%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-value {
    color: #007bff;
    font-size: 3em;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-item h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-size: 1.1em;
}

.inscripcion-action {
    margin-top: 20px;
}

.btn-inscripcion {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-inscripcion:hover {
    background-color: #0056b3;
    transform: translateY(-5px);
}
