@import url('https://fonts.cdnfonts.com/css/neo-sans-pro');

body {
    margin: 0;
    font-family: 'Neo Sans Pro', sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.container{
    padding: 20px;
}

.navbar {
    overflow: hidden;
    background-color: #113b53;
    /*position: fixed;*/
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Alinea verticalmente los elementos */
}

.navbar .logo {
    padding: 10px 20px;
}
.logo img {
    height: 50px;
}

.navbar a {
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 17px;
    position: relative;
}

.navbar a:hover {
    background-color: #1e6a95;
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #113b53;
    min-width: 160px;
    z-index: 1;
}

.dropbtn{
    background-color: #113b53;
    border: none;

    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 17px;
    position: relative;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #1e6a95;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.navbar a.icon {
    display: none;
}

@media screen and (max-width: 600px) {
    .navbar a:not(:first-child), .dropdown .dropbtn {
        display: none;
    }
    .navbar a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .navbar.responsive {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .navbar.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .navbar.responsive .dropdown {
        float: none;
    }
    .navbar.responsive .dropdown-content {
        position: relative;
    }
    .navbar.responsive .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
    }
}



/*Bloque simple*/
.content-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 800px;
    margin: auto;
    margin-top: 2em;
    padding: 20px;
    border: 1px solid #ccc; /* Borde para mayor visibilidad */
    border-radius: 8px; /* Bordes redondeados */
}

.content-block img {
    max-width: 100%;
    height: auto;
    margin-right: 20px;
    border-radius: 5px; /* Bordes redondeados para la imagen */
}

.text-content {
    flex: 1;
}

.text-contenth2 {
    margin: 10px;
    color: #333; /* Color del título */
}

.text-contentp {
    margin: 10px;
    color: #666; /* Color del texto */
}

.read-more-link {
    text-decoration: none;
    color: #000; /* Color del texto del enlace */
    background-color: #97ddf9; /* Color de fondo del enlace */
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease; /* Efecto de transición en el color de fondo */
    margin: 10px;
}

.read-more-link:hover {
    background-color: #0056b3; /* Cambio de color al pasar el ratón sobre el enlace */
}

/* Bloque Triple */

.content-container-2 {
    display: flex;
    justify-content: space-between;
    max-width: 1200px; /* Ancho máximo del contenedor */
    margin: auto;
    padding: 20px;
}

.content-block-2 {
    flex: 0 0 calc(33.33% - 20px); /* Ancho de 33.33% con márgenes */
    background-color: #fff; /* Fondo de los bloques */
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box; /* Evita que los bordes afecten al ancho total */
}

.content-block-2 img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.text-content-2 h2 {
    margin-bottom: 10px;
    color: #333;
}

.text-content-2 p {
    margin-bottom: 20px;
    color: #666;
}

.read-more-link-2 {
    text-decoration: none;
    color: #fff;
    background-color: #113b53;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.read-more-link-2:hover {
    background-color: #0056b3;
}

/* Columnas */
.column-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.column {
    flex: 0 0 calc(25% - 20px); /* Ancho de 25% con márgenes */
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

.column img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.column h2 {
    margin-bottom: 10px;
    color: #333;
}

.column p {
    margin-bottom: 20px;
    color: #666;
}


/* Background Container */
.background-container {
    background-image: url('../img/web/img-background.jpg'); /* Ruta de la imagen de fondo */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 2em;
}
.background-container-2 {
    background-image: url('../img/web/img-background.jpg'); /* Ruta de la imagen de fondo */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-top: 3em;
    padding-bottom: 3em;
}

.background-container-content {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
}

.background-container-content img {
    max-width: 260px; /*max-width: 50%; Cambiado a 50% para que la imagen esté en el lado izquierdo */
    height: auto;
    margin-right: 20px;
    border-radius: 8px; /* Ajustado el radio de la imagen */
}

.background-container-text-container {
    flex: 1;
}

.background-container-content h1 {
    margin-bottom: 1em;
}

.background-container-content p {
    margin-bottom: 1em;
}

.background-container-content a {
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.background-container-content a:hover {
    color: #97ddf9;
}


/*Bloque simple con fondo */

.background-container-content-2 {
    display: flex;
    max-width: 800px;
    margin: auto;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    padding: 20px;
    border-radius: 8px;
}

.background-container-content-2 img {
    /max-width: 200px; /* Ajusta el ancho de la imagen lateral según tus necesidades */
    height: auto;
    margin-right: 20px;
    border-radius: 8px; /* Ajusta el radio de la imagen */
}

.background-text-container-2 {
    flex: 1;
}


/* Footer */

footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    margin-top: 10em;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 0 0 calc(33.33% - 20px);
}

.footer-container h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-container p {
    margin: 0;
}

.footer-container ul {
    list-style: none;
    padding: 0;
}

.footer-container ul li {
    margin-bottom: 5px;
}

.footer-container a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-container a:hover {
    color: #97ddf9;
}

.social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    margin-right: 10px;
    margin-top: 6px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background-color: #113b53;
    color: #fff;
}

/* Testimonios */
.testimonial-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonial-container img {
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial-container p {
    margin-bottom: 10px;
}

.testimonial-container cite {
    display: block;
    font-style: italic;
    color: #888;
}

/* Columns Icons */
.column-container-icons {
    display: flex;
    justify-content: space-around;
    max-width: 800px;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    bottom: 2em;
    padding: 20px;
}

.column-icons {
    text-align: center;
}

.column-container-icons i {
    font-size: 2em;
    color: #113b53;
    margin-bottom: 10px;
}

.column-container-icons p {
    margin: 0;
}

/* Coaches */
.colaboradores-container {
    display: flex;
    justify-content: space-around;
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.colaborador {
    width: 200px;
    text-align: center;
}

.colaboradores-container img {
    max-width: 100%;
    height: auto;
    /*border-radius: 50%;*/
    margin-bottom: 10px;
}

.colaboradores-container p {
    margin: 0;
}

/* Títulos */
.titulo-1-h1 {
    color: #000;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 2em;
}

/* Estilo base para los enlaces */
a {
    color: #0056b3; 
    text-decoration: none; 
    transition: color 0.3s ease; 
}

a:hover {
    color: #007BFF; 
}