/* Tipografías personalizadas */
@font-face {
    font-family: 'Aloevera';
    src: url('./tipografias/Aloevera/Aloevera-SemiBold.otf') format('opentype');
    font-style: normal;
}

@font-face {
    font-family: 'Aloevera-Light';
    src: url('./tipografias/Aloevera/Aloevera-Light.otf') format('opentype');
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica';
    src: url('./tipografias/Helvetica/HelveticaNeue.ttf') format('opentype');
    font-style: normal;
}

.invisible{
    display: none;
}

/* Desplazamiento suave al hacer scroll */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Navbar  */
.navbar {
    font-family: 'Helvetica', sans-serif;
    min-height: 130px;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    background-color: rgb(233, 233, 233);
}

/* Marca o logo de la navbar */
.navbar-brand {
    font-size: 1.2rem;
    line-height: 1.1;
    color: #000000;
}

/* Estilos de enlaces del menú */
.navbar-nav .nav-link {
    text-align: left;
    width: 130px;
    padding: 0;
    margin: 0 20px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}

#contacto {
    margin-top: 5px;
}

/* Sección principal con fondo de banner */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('./img/img-index/fondo.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-repeat: no-repeat;
}

/* Texto en la esquina superior izquierda */
.hero-top-left {
    position: absolute;
    top: 300px;
    left: 300px;
    color: rgb(255, 255, 255);
    font-size: 35px;
    z-index: 2;
    width: 500px;
    font-family: 'Aloevera-Light', sans-serif;
}

/* Imagen centrada */
.hero-center {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-center img {
    max-width: 600px;
    height: auto;
    margin-top: -60px;
}

/* Botón inferior izquierdo */
.hero-bottom-left {
    position: absolute;
    bottom: 200px;
    z-index: 2;
    margin-left: 450px;
}

.hero-bottom-left a {
    text-decoration: none;
    font-weight: bold;
}

.hero-bottom-right a {
    text-decoration: none;
}

/* Botón inferior derecho */
.hero-text-link-right {
    position: absolute;
    bottom: 100px;
    right: 10px;
    z-index: 2;
    margin-right: 150px;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
}

.text-right {
    color: white;
    text-transform: uppercase;
    font-family: 'Aloevera' sans-serif;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}

.link-right {
    font-family: 'Aloevera' sans-serif;
    font-size: 23px;
    color: #FBCA13;
    text-decoration: none;
    border-bottom: 2px solid #FBCA13;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

/* Botón inferior derecho */
.highlight {
    color: white;
    font-family: 'Aloevera', sans-serif;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}

/* Botón personalizado */
.btn-custom {
    background-color: #FBCA13;
    color: #182e44;
    padding: 10px 20px;
    font-size: 13px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    display: flex;
    /* usar flex para centrado total */
    align-items: center;
    justify-content: center;
    /* centrado horizontal */
    gap: 8px;
    width: auto;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Helvetica', sans-serif;
    letter-spacing: 3px;
}


.arrow {
    font-weight: bold;
    font-size: 1.2rem;
    transform: translateY(1px);
}

.link-right:hover {
    color: #d6a800;
    cursor: pointer;
}

.link-right .arrow {
    font-weight: bold;
    transition: transform 0.3s ease;
}

.link-right:hover .arrow {
    transform: translateX(4px);
}

.btn-custom:hover {
    background-color: #FFB402;
}

/* Botones personalizados en amarillo */
.btn-yellow,
.btn-yellow-custom {
    background-color: #F5B400;
    color: white;
    padding: 25px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 7px;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    font-weight: 400;
}

/* Hover de botones amarillos */
.btn-yellow:hover,
.btn-yellow-custom:hover {
    background-color: #d18e1a;
    color: white;
}

/* Flechita al lado del texto del botón */
.arrow {
    margin-left: 10px;
    font-size: 1rem;
}

/* Títulos  */
.section-title {
    font-weight: bold;
    color: #024400;
    font-family: 'Helvetica', sans-serif;
}

/* Círculo */
.icon-box {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 2rem;
    color: white;
    background-color: #f5b400;
}

/* Sección de Servicios */
.seccion-servicios {
    background-color: #d6d6d6;
    padding: 80px;
    padding-bottom: 1px;
    overflow: visible;
    position: relative;
}

/* Título  */
.seccion-servicios h2 {
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 400;
    color: #0a1d35;
    font-family: 'Montserrat', sans-serif;
}

.seccion-servicios h2 strong {
    font-weight: 700;
    color: #0a1d35;
}

/* Texto descriptivo de servicios */
.seccion-servicios p {
    padding-left: 300px;
    font-size: 25px;
    color: #585858;
    font-family: 'Helvetica', sans-serif;
    width: 650px;
    line-height: 1.2;
}

/* Fondo triangular */
.bg-triangulo {
    width: 931px;
    max-width: 931px;
    height: 570px;
    z-index: 0;
}

/* Contenedor del círculo principal */
.circle-container {
    padding-top: 100px;
    position: relative;
    width: 870px;
    height: 370px;
}

.circle-img {
    width: 450px;
    height: 450px;
    object-fit: contain;
}

.circle-icon {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #14b21c;
    border-radius: 50%;
    padding: 10px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 4px solid white;
}

.circle-icon img {
    width: 50px;
    height: 50px;
}

.circle-text {
    position: absolute;
    top: 150px;
    left: 60px;
    width: 300px;
    padding: 30px;
    z-index: 1;
}

.circle-text h3 {
    font-family: 'Helvetica_Bold';
    letter-spacing: 1.2px;
    transform: translate(10%);
}

.circle-text ul {
    font-size: 15px;
    width: 300px;
}

.circle-text a {
    display: inline-block;
    background-color: #6c757d;
    /* gris Bootstrap */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    transform: translateY(110px);
}

/* Hover efecto */
.circle-text a:hover {
    background-color: #5a6268;
    /* gris más oscuro */
}

.enlace-flecha::after {
    content: " ›";
}


/* Sección Informativa */
.nueva-seccion {
    background-color: #ffffff;
    z-index: 1;
    position: relative;
    padding-bottom: 170px;
    padding-top: 250px;
}

/* Fondo lateral izquierdo */
.bg-extra-izquierda {
    position: absolute;
    left: 0;
    top: -80px;
    width: 950px;
    z-index: 0;
}

/* Contenido principal */
.texto-transformamos {
    color: #0a1d35;
    font-family: 'Helvetica', sans-serif;
    transform: translateY(100px);
}

.texto-transformamos h2 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Aloevera', sans-serif;
    color: #24394f;
}

.texto-transformamos p.intro {
    color: #585858;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-family: 'Helvetica_Neue';
    width: 500px;

}

.texto-transformamos h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #646464;
}

.texto-transformamos ul {
    padding-left: 1.2rem;
    color: #707070;
    font-size: 1.2rem;
    width: 450px;
    font-family: 'Helvetica_Neue';
}

.texto-transformamos ul li {
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.texto-transformamos p.enfasis {
    font-style: italic;
    font-weight: 500;
    color: #646464;
    font-size: 1.2rem;
    line-height: 1.4;
    width: 450px;
    font-family: 'Helvetica_Bold';
}

/* Sección MOTUS 2.0 */
.motus-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.motus-imagen,
.motus-texto {
    flex: 1 1 45%;
    min-width: 300px;
}

.motus-intro {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 100px;
    margin-bottom: 30px;
}

.motus-intro-img img.motus-logo {
    width: 150px;
    height: auto;
    display: block;
}

.motus-intro-texto {
    max-width: 600px;
}

.descripcion-motus {
    font-size: 1.1rem;
    color: #444;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

.seccion-motus {
    position: relative;
    padding: 60px;
    padding-bottom: 120px;
    background-color: #ffffff;
    background-image: url('./img/elemento_fondo.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 1800px auto;
}

/* Contenedor general */
.container {
    position: relative;
    z-index: 1;
}

/* Título */
.titulo-seccion {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d2c52;
    font-family: 'Aloevera';
    margin-left: 100px;
    margin-bottom: 20px;
}

/* Descripción general */
.descripcion {
    font-size: 1.1rem;
    color: #444;
    margin-left: 10px;
    margin-top: 30px;
}

.texto-motus {
    font-style: italic;
    font-weight: 500;
    color: #646464;
    font-size: 1.2rem;
    line-height: 1.4;
    width: 700px;
    font-family: 'Helvetica_Bold';
    padding-left: 280px;
}

.subtitulo {
    font-size: 1.50rem;
    font-weight: 600;
    color: #646464;
    margin-bottom: 15px;
    font-family: 'Helvetica', sans-serif;
    margin-left: 100px;
}

.lista-verde {
    list-style: none;
    padding-left: 0;
    width: 500px;
}

.lista-verde li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #646464;
    font-family: 'Helvetica_Neue';
    font-size: 20px;
}

.lista-verde li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-image: url('./img/img-index/chek.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.lista-verde {
    padding-left: 100px;
}

/* Slider */
.slider-circular {
    border-radius: 50%;
    overflow: hidden;
    width: 600px;
    height: 600px;
    border: 12px solid #eaeaea;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.slider-circular img {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.slider-circular img.fade-out {
    opacity: 0;
}

.img-circular {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*Seccion de fundadores*/
.fundadores {
    width: 100%;
    position: relative;
    z-index: 10;
    background-color: rgb(235, 235, 235);
    height: 1400px;
}

/* Parte superior */
.fundadores-header {
    width: 100%;
    min-height: 500px;
    background-image: url('img/img-index/socios/fondo.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: start;
    justify-content: center;
    position: relative;
    z-index: 15;
}

.fundadores-header h1 {
    color: white;
    font-size: 52px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    margin-top: 50px;
}

/* Parte inferior */
.fundadores-body {
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 50px 20px;
    position: relative;
    z-index: 20;
    top: -350px;
}

/* Cada columna */
.fundador {
    text-align: center;
    max-width: 500px;
}

.fundador img {
    width: 400px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.fundador h2 {
    font-size: 30px;
    color: #646464;
    font-family: 'Aloevera', sans-serif;
    text-align: left;
}

.fundador p {
    text-align: left;
    font-size: 20px;
    font-family: 'Helvetica_Neue', sans-serif;
    color: #838383;
}


.fundador p.des {
    color: #ffffff;
    font-size: 22px;
    font-family: 'Aloevera', sans-serif;
    margin-bottom: 20px;
    line-height: 1.4;
    min-width: 510px;
    max-width: 510px;
    min-height: 135px;
    max-height: 135px;
    font-weight: 200;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: center;
}

.fundador p.des2 {
    color: #ffffff;
    font-size: 22px;
    font-family: 'Aloevera', sans-serif;
    margin-bottom: 20px;
    line-height: 1.4;
    min-width: 510px;
    max-width: 510px;
    min-height: 135px;
    max-height: 135px;
    font-weight: 200;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: center;
}




/*Seccion mejora*/
.seccion-mejora {
    padding: 60px 20px;
    background-color: #fff;
}

.contenedor-mejora {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.mejora-icono img {
    width: 200px;
    height: auto;
    display: block;
    margin-top: -40px;
    margin-left: 200px;
}

.mejora-texto {
    flex: 1;
    min-width: 280px;
}

.mejora-titulo {
    font-size: 40px;
    font-weight: 700;
    color: #0d2c52;
    font-family: 'Aloevera', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 2px;
}

.mejora-titulo2 {
    margin-top: 50px;
    font-size: 48px;
    font-weight: 700;
    color: #0d2c52;
    font-family: 'Aloevera', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mejora-titulo2 span.mejora-titulo-inclinada {
    font-size: 48px;
    font-weight: 700;
    color: #0d2c52;
    font-family: 'Aloevera', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 2px;
    font-style: italic;
}

.mejora-descripcion {
    font-size: 1.2rem;
    color: #646464;
    line-height: 1.6;
    font-family: 'Helvetica_Neue', sans-serif;
    width: 650px;
}


/* Sección Evolución con Propósito */
.contenedor-boton {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.boton-equipo {
    display: inline-block;
    background-color: #ffbb00;
    color: #0d2c52;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.2s ease;
    width: auto;
}

.boton-equipo:hover {
    background-color: #e6a800;
    transform: translateY(-2px);
}

.seccion-evolucion {
    min-height: 600px;
}

.image-grid {
    gap: 1.5rem;
}

.image-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.img-alta {
    height: 300px;
    object-fit: cover;
}

.filtro-vibrante {
    filter: contrast(1.1) saturate(1.4) brightness(1.1);
    transition: filter 0.3s ease;
}

.filtro-vibrante:hover {
    filter: contrast(1.2) saturate(1.6) brightness(1.1);
}

.section-title {
    font-family: 'Aloevera', sans-serif;
    letter-spacing: 2px;
    color: #24394f;
    font-size: 40px;
}

/* Sección de Contacto */
.formulario-contacto {
    background-color: white;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem;
    margin-bottom: 210px;
}

/* Contenedor general con fondo */
.form-box {
    width: 1319px;
    height: 813px;
    background: url('./img/fondo.png') no-repeat center center;
    background-size: cover;
    margin: auto;
    display: flex;
    padding: 3rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

/* Columna izquierda */
.form-box .col-lg-6 {
    flex: 1;
    padding: 3rem 2rem;
}

/* Fondo difuminado del formulario */
.bg-form {
    background-color: rgba(226, 223, 223, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 2rem;
    border-radius: 9%;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Estilo base del formulario */
form {
    width: 100%;
    padding: 25px;
}

/* Inputs */
.form-control,
textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-radius: 0;
    color: #fff;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 15px;
}

.form-control::placeholder,
textarea::placeholder {
    color: #ffffff;
}

.form-control,
textarea.form-control {
    font-size: 1.1rem;
}

.form-control:focus,
textarea:focus {
    border-bottom: 1px solid #fff;
    box-shadow: none;
    background-color: transparent;
    color: #fff;
}

/* Botón de enviar */
button[type="submit"] {
    background-color: #fff;
    color: #303030;
    font-weight: bold;
    font-family: Helvetica;
    letter-spacing: 1px;
    font-size: 20px;
}

.icono {
    width: 38px;
    height: 38px;
}

.icono-red {
    width: 38px;
    height: 38px;
    transition: transform 0.2s ease-in-out;
}

.icono-red:hover {
    transform: scale(1.1);
}

.texto h2 {
    width: 370px;
    font-size: 45px;
    font-family: 'Aloevera-SemiBold', sans-serif;
}

.texto,
.info {
    width: 450px;
    font-size: 20px;
    font-family: 'Helvetica_Neue';
}

/* Footer */
.footer-dacor {
    background: url('./img/footer/fondo.png') no-repeat center center;
    position: relative;
    overflow: visible;
    min-height: 438px;
    padding-top: 10px;
}

.logo-circular {
    width: 390px;
    height: 390px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.logo-circular::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background-color: rgba(201, 201, 201, 0.308);
    border-radius: 50%;
    z-index: -1;
}

.logo-circular .logo-img {
    width: 290px;
}

/* Información del footer */
.footer-info {
    margin-top: 250px;
    color: white;
    text-align: left;
    font-size: 20px;
}

.icono-footer {
    width: 40px;
    height: 40px;
}

.footer-bottom {
    background-color: #F7F7F7;
    font-size: 20px;
    font-weight: bolder;
}

/* Estilos modal Formulario*/
.modal {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-contenido {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
}

.modal-contenido h2 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    color: black;
    background-color: white;
    appearance: none;
    /* quita el estilo por defecto del navegador */
}

.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    color: black;
    background-color: white;
    appearance: none;
    /* Quita el estilo nativo */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}


.btn-enviar {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 12px;
    border: none;
    background: #c94528;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease, background 0.3s ease;
}


.btn-enviar:hover {
    background: #000000bb;
    color: white;
}

.cerrar {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media(max-width: 1530px ){
    .hero-center img {
        max-width: 400px;
        height: auto;
        margin-top: -40px;
    }

    .hero-bottom-left {
        margin-left: 300px;
        bottom: 70px;
    }

    .hero-text-link-right{
        margin-right: 90px;
        bottom: 70px;
    }

    .hero-top-left {
        top: 250px;
        left: 150px;
        font-size: 25px !important;
        width: 500px;
    }

    .img-grafico2{
        width: 850px !important;
    }
}

@media (max-width: 1440px) {

    /*Hero*/

    .hero-top-left {
        position: absolute;
        top: 200px;
        left: 100px;
        color: rgb(255, 255, 255);
        font-size: 20px !important;
        z-index: 2;
        width: 500px;
        font-family: 'Aloevera-Light', sans-serif;
    }

    /* Imagen centrada */
    .hero-center {
        position: absolute;
        top: 53%;
        left: 60%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    .hero-center img {
        max-width: 400px;
        height: auto;
        margin-top: 10px;
    }

    /* Botón inferior izquierdo */
    .hero-bottom-left {
        position: absolute;
        bottom: 30px;
        z-index: 2;
        margin-left: 230px;
    }

    .hero-bottom-left a {
        text-decoration: none;
        font-weight: bold;
    }

    /* Botón inferior derecho */
    .hero-text-link-right {
        position: absolute;
        bottom: 100px;
        right: 0px;
        z-index: 2;
        margin-right: 110px;
        align-items: center;
        align-content: center;
        justify-content: center;
        justify-items: center;
    }

    .text-right {
        color: white;
        text-transform: uppercase;
        font-family: 'Aloevera' sans-serif;
        font-size: 25px;
        font-weight: bold;
        text-align: center;
    }

    .link-right {
        font-family: 'Aloevera' sans-serif;
        font-size: 17px;
        color: #FBCA13;
        text-decoration: none;
        border-bottom: 2px solid #FBCA13;
        padding-bottom: 2px;
        transition: color 0.3s ease, border-color 0.3s ease;
    }

    /* Botón inferior derecho */
    .hero-bottom-right {
        position: absolute;
        bottom: -20px;
        right: 0px;
        z-index: 2;
        margin-right: 100px;
        font-weight: bold;
    }

    .highlight {
        color: white;
        font-family: 'Aloevera', sans-serif;
        font-size: 40px;
        font-weight: bold;
        text-align: center;
    }

    /*********************************************************/


    /*Seccion servicios*/
    .seccion-servicios h2 {
        font-size: 30px;
        line-height: 1.1;
        font-weight: 400;
        color: #0a1d35;
        font-family: 'Montserrat', sans-serif;
    }

    .seccion-servicios p {
        padding-left: 200px;
        font-size: 25px;
        color: #585858;
        font-family: 'Helvetica', sans-serif;
        width: 550px;
        line-height: 1.2;
    }

    /* Contenedor del círculo principal */
    .circle-container {
        padding-top: 100px;
        position: relative;
        width: 870px;
        height: 370px;
    }

    .circle-img {
        width: 400px;
        height: 400px;
    }

    .circle-icon {
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #14b21c;
        border-radius: 50%;
        padding: 10px;
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        border: 4px solid white;
    }

    .circle-icon img {
        width: 50px;
        height: 50px;
    }

    .circle-text {
        position: absolute;
        top: 130px;
        left: 50px;
        width: 250px;
        padding: 30px;
        z-index: 1;
    }

    .circle-text h3 {
        font-family: 'Helvetica_Bold';
        letter-spacing: 1.2px;
        transform: translate(10%);
    }

    .circle-text ul {
        font-size: 13px;
        width: 250px;
    }

    .circle-text a {
        display: inline-block;
        background-color: #6c757d;
        /* gris Bootstrap */
        color: white;
        font-size: 16px;
        font-weight: bold;
        padding: 8px 18px;
        border-radius: 30px;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        transform: translateY(120px);
        width: 240px;
    }

    /* Hover efecto */
    .circle-text a:hover {
        background-color: #5a6268;
        /* gris más oscuro */
    }

    .enlace-flecha::after {
        content: " ›";
    }

    /***********************************************************/

    /* Sección Informativa */

    .nueva-seccion {
        padding-bottom: 40px;
    }

    .img-grafico {
        top: -130px !important;
    }

    .img-grafico2 {
        width: 750px !important;
    }

    .texto-transformamos {
        color: #0a1d35;
        font-family: 'Helvetica', sans-serif;
        transform: translateY(20px);
    }

    /*************************************************************/

    /*Seccion Motus*/

    .seccion-motus {
        margin-top: 50px;
        padding: 20px;
        background-image: none;
        background-color: #D6D6D6;
    }

    .seccion-motus .container {
        position: relative;
        z-index: 1;
        width: 100%;
        margin: 0;
    }

    .motus-imagen {
        margin-top: -100px;
    }


    /****************************************************************/


}

@media (max-width: 1280px) {

    .hero-top-left {
        max-width: 450px;
    }

    .hero-top-left h1 {
        font-size: 35px;
    }

    .hero-top-left .highlight {
        font-size: 35px;
    }

    .hero-bottom-left {
        margin-left: 180px !important;
        top: 480px !important;
    }

    .hero-text-link-right {
        bottom: 160px;
        margin-right: 70px !important;
    }

    .hero-bottom-right {
        margin-right: 70px !important;
    }

    .contenido-texto h2 {
        font-size: 45px !important;
    }


    /*Seccion servicios*/
    .seccion-servicios h2 {
        font-size: 30px;
        line-height: 1.1;
        font-weight: 400;
        color: #0a1d35;
        font-family: 'Montserrat', sans-serif;
    }

    .seccion-servicios p {
        padding-left: 200px;
        font-size: 25px;
        color: #585858;
        font-family: 'Helvetica', sans-serif;
        width: 550px;
        line-height: 1.2;
    }

    /* Contenedor del círculo principal */
    .circle-container {
        padding-top: 100px;
        position: relative;
        width: 870px;
        height: 370px;
    }

    .circle-img {
        width: 355px;
        height: 355px;
    }

    .circle-icon {
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #14b21c;
        border-radius: 50%;
        padding: 10px;
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        border: 4px solid white;
    }

    .circle-icon img {
        width: 40px;
        height: 40px;
    }

    .circle-text {
        position: absolute;
        top: 130px;
        left: 35px;
        width: 250px;
        padding: 30px;
        z-index: 1;
    }

    .circle-text h3 {
        font-family: 'Helvetica_Bold';
        letter-spacing: 1.2px;
        transform: translate(10%);
        font-size: 18px;
    }

    .circle-text ul {
        font-size: 13px;
        width: 250px;
    }

    .circle-text a {
        display: inline-block;
        background-color: #6c757d;
        /* gris Bootstrap */
        color: white;
        font-size: 16px;
        font-weight: bold;
        padding: 8px 18px;
        border-radius: 30px;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        transform: translateY(120px);
        width: 240px;
    }

    /* Hover efecto */
    .circle-text a:hover {
        background-color: #5a6268;
        /* gris más oscuro */
    }

    .enlace-flecha::after {
        content: " ›";
    }

}

@media (max-width: 1024px) {
    .hero-top-left {
        top: 300px !important;
        left: 120px;
        max-width: 400px;
    }

    .hero-top-left h1 {
        font-size: 30px;
    }

    .hero-top-left .highlight {
        font-size: 30px;
    }

    .hero-center img {
        max-width: 400px !important;
        margin-top: -130px !important;
        margin-right: -200px !important;
    }

    .hero-bottom-left {
        margin-left: 200px !important;
        top: 520px !important;
    }

    .hero-text-link-right {
        bottom: 160px;
        margin-right: 50px !important;
    }

    .text-right {
        font-size: 26px;
    }

    .link-right {
        font-size: 18px;
    }

    .hero-bottom-right {
        margin-right: 80px !important;
    }

    .btn-custom {
        padding: 8px 16px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .btn-yellow,
    .btn-yellow-custom {
        padding: 18px 35px;
        font-size: 1rem;
        letter-spacing: 5px;
    }
}

@media (max-width: 768px) {

    /* General */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Navbar */
    .navbar {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        min-height: auto;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }

    /* Hero */
    .hero {
        height: max-content;
        padding: 100px 20px 50px;
        background-position: center;
        margin-top: 20px;
    }

    .hero-top-left {
        position: static;
        width: 100% !important;
        text-align: center;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .hero-top-left h1 {
        font-size: 25px !important;
    }

    .highlight {
        color: rgb(255, 255, 255);
        font-family: 'Aloevera', sans-serif;
        font-size: 25px !important;
        font-weight: bold;
        text-align: center;
    }


    .hero-center {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        height: 300px !important;
        margin: 0 auto !important;
        text-align: center !important;
        position: static !important;
        transform: none !important;
        margin-top: 50px !important;
    }

    .hero-center img {
        max-width: 350px !important;
        margin: 0 auto !important;
    }


    .hero-bottom-left {
        padding-top: 50px !important;
        margin-left: 0 !important;
    }

    .hero-bottom-left .btn-custom {
        background-color: #FBCA13;
        color: #182e44;
        padding: 10px 20px;
        font-size: 13px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: background-color 0.3s;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
        margin-bottom: 50px;
        font-family: 'Helvetica', sans-serif;
        letter-spacing: 3px;
        width: 400px !important;

    }

    .hero-bottom-left,
    .hero-bottom-right {
        position: static;
        margin: 10px auto;
        text-align: center;
    }

    .hero-text-link-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        position: static;
    }

    .hero-text-link-right .link-right {
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-bottom-left {
        margin: 0 auto !important;
    }

    .hero-bottom-right {
        margin: 0 auto !important;
    }

    /* Botones */
    .btn-custom {
        width: 100%;
        font-size: 0.9rem;
        margin-left: 0;
        margin-right: 0;
    }

    /* Sección Servicios */

    /* Imagen de fondo */
    .bg-triangulo {
        width: 931px;
        max-width: 931px;
        height: 570px;
        z-index: 0;
        margin-top: -100px;
        filter: brightness(0.4);
    }

    .seccion-servicios {
        padding: 40px 20px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: auto;
    }

    .text-start {
        margin-top: 40px;
        color: white !important;
    }

    .seccion-servicios h2 {
        text-align: center;
        font-size: 1.5rem;
        color: rgb(255, 255, 255) !important;
    }

    .seccion-servicios p {
        padding-left: 0;
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .circle-container {
        min-width: 400px;
        height: auto;
        padding-top: 90px;
        margin: 0 auto;
    }

    .circle-container img {
        width: 100%;
        height: auto;
        max-width: 400px;
        margin: 0 auto;
    }

    .circle-img {
        min-width: 300px;
        min-height: 300px;
    }

    .circle-icon {
        width: 80px;
        height: 80px;
    }

    .consultoria-icono,
    .desarrollo-icono,
    .potencializador-icono {
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #14b21c;
        border-radius: 50%;
        padding: 10px;
        width: 85px;
        height: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        border: 4px solid white;
    }

    .circle-text {
        position: static;
        width: 100%;
        padding: 20px;
        text-align: center;
        margin-top: -310px;
    }

    .circle-text h3 {
        color: #ffffff;
        max-width: 200px;
        font-size: 1.5rem;
        line-height: 1.2;
        white-space: normal;
        word-wrap: break-word;
        margin: 0 auto;
        margin-bottom: 10px;
        margin-left: 60px;
    }

    .circle-text ul {
        font-size: 12px;
        width: 220px;
        margin: 0 auto;
    }

    .circle-text a {
        font-size: 15px;
        border-bottom: 1px solid #ffffff;

    }

    .contenedor-texto-triangulo h2 {
        margin-top: 40px;
    }

    .contenedor-texto-triangulo {
        min-width: 300px;
    }

    .container-circles {
        margin-top: -100px;
    }

    .contenedor-texto-triangulo p {
        color: #ffffff;
        display: none;
    }

    .contenedor-texto-triangulo h2 {
        color: #ffffff;
    }

    .contenedor-texto-triangulo h2 strong {
        color: #ffffff;
    }

    .circle-text a {
        display: inline-block;
        background-color: #6c757d;
        color: white;
        font-size: 16px;
        font-weight: bold;
        padding: 8px 18px;
        border-radius: 30px;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        transform: translateY(90px);
    }


    /* Sección Informativa */

    .nueva-seccion {
        padding-top: 50px;
    }

    .nueva-seccion .row {
        flex-direction: column;
    }

    .nueva-seccion img {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 20px;
        margin-top: 30px;
    }

    .img-grafico {
        display: none;
    }

    .div-divisor {
        display: none;
    }

    .contenido-texto {
        margin: 0 20px;
        padding: 0;
    }

    .texto-transformamos {
        margin-top: -250px;
        text-align: center;
        height: auto;
        min-width: 450px;
        margin-left: -110px;
    }

    .texto-transformamos h2 {
        font-size: 2rem !important;
        text-align: center !important;
    }

    .texto-transformamos p.intro,
    .texto-transformamos ul,
    .texto-transformamos p.enfasis {
        width: 100% !important;
        max-width: 100%;
    }


    /* MOTUS 2.0 */
    .slider-circular {
        width: 300px;
        height: 300px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .seccion-motus {
        background-image: none;
        margin-top: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-left: 0;
    }

    .motus-contenido {
        flex-direction: column;
    }

    .motus-intro {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0;
    }

    .texto-motus {
        padding-left: 0;
        margin-bottom: 50px;
    }

    .motus-intro-texto {
        max-width: 100%;
    }

    .lista-verde {
        padding-left: 20px;
    }

    .lista-verde li {
        font-size: 1rem;
    }

    .titulo-seccion,
    .subtitulo {
        margin-left: 0;
        text-align: center;
    }

    /*Fundadores seccion*/
    .fundadores {
        height: auto;
        /* quitar altura fija para que se ajuste */
        padding-bottom: 50px;
    }

    .fundadores-header {
        min-height: 100px;
        text-align: center;
        padding: 20px;
    }

    .fundadores-header h1 {
        font-size: 32px;
        /* más pequeño para móviles */
        margin-top: 30px;
    }

    .fundadores-body {
        flex-direction: column;
        /* apila fundadores */
        align-items: center;
        gap: 40px;
        /* menos separación */
        top: -10px;
        /* reducir superposición */
        padding: 20px;
    }

    .fundador {
        max-width: 100%;
        /* ocupar todo el ancho disponible */
    }

    .fundador img {
        width: 80%;
        /* más pequeño, centrado */
        max-width: 280px;
    }

    .fundador h2 {
        font-size: 22px;
        text-align: center;
        /* centramos títulos en móvil */
    }

    .fundador p {
        font-size: 16px;
        text-align: justify;
    }

    .fundador p.des,
    .fundador p.des2 {
        font-size: 18px;
        min-width: auto;
        max-width: 100%;
        min-height: auto;
        max-height: none;
        margin-bottom: 20px;
        padding: 0 10px;
        color: #646464;
    }



    /* Seccion Mejora continua */
    .contenedor-mejora {
        margin-top: 0px;
        flex-direction: column;
        text-align: center;
    }

    .mejora-icono img {
        margin: 0 auto;
    }

    .mejora-descripcion {
        width: 100%;
        font-size: 1rem;
    }

    /* Galería */
    .seccion-evolucion .row>div {
        padding: 0 10px;
    }

    .img-alta {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .seccion-evolucion {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 600px;
        top: -100px;
    }

    .boton-equipo {
        display: inline-block;
        background-color: #ffbb00;
        color: #0d2c52;
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-decoration: none;
        padding: 15px 40px;
        border-radius: 50px;
        transition: background 0.3s ease, transform 0.2s ease;
        width: auto;
        text-align: center;
    }

    /* Formulario de contacto */
    .formulario-contacto {
        min-width: 507px;
        margin-bottom: 80px;
        margin-left: -40px;
        margin-top: -100px;
    }

    .form-box {
        flex-direction: column;
        height: auto;
        width: 100%;
        padding: 1rem;
    }

    .form-box .col-lg-6 {
        padding: 1rem;
    }

    .texto,
    .info,
    .texto h2 {
        width: 100%;
        font-size: 1rem;
        text-align: center;
    }

    .bg-form {
        padding: 1rem;
        border-radius: 20px;
        min-height: auto;
    }

    .info-form {
        margin: 0 auto;
    }

    /* Footer */
    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        font-size: 1rem;
        margin-top: 100px;
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .item-footer {
        min-width: auto;
        width: 100%;
        max-width: 250px;
    }



    .logo-circular {
        width: 200px;
        height: 200px;
    }

    .logo-circular::before {
        width: 220px;
        height: 220px;
    }

    .logo-circular .logo-img {
        width: 180px;
    }

    .footer-bottom {
        font-size: 0.9rem;
        padding: 1rem;
    }

}

@media (max-width: 375px) {

    .seccion-motus {
        margin-left: -29px;
    }

    .formulario-contacto {
        min-width: 460px;
        margin-bottom: 80px;
    }

}

@media (max-width: 320px) {

    .seccion-motus {
        margin-left: -60px;
    }

    .formulario-contacto {
        min-width: 400px;
        margin-bottom: 80px;
    }

}


/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 1000;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}