@charset "utf-8";
/* CSS Document */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    position: relative;
}

.logo {
    padding: 10px;
}

.logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.nav-links a:hover {
    color: #318AB2;
}

.call-button {
    background: #004080;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.call-button a {
    text-decoration: none;
    color: white;
}

.call-button:hover {
    background-color: #466F8D;
}

/* Estilos para el botón de hamburguesa */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
	color: black;
}

/* Modo responsive */
@media screen and (max-width: 1624px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        text-align: center;
    }

    .nav-links a {
        padding: 10px;
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .nav-active {
        display: flex;
    }
}


.hero {
    background: url("../img/road-bike-3469499_1920.jpg") no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 5rem;
    padding: 20px;
    border-radius: 10px;
    font-family: "Orbitron", serif;
}

.center-section {
    text-align: center;
    padding: 70px;
    width: 67%;
    margin: auto;
    align-content: center;
    justify-content: center;
}

.container1 {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

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

.icon {
    font-size: 40px;
    color: #1765c0;
}

.title {
    font-weight: bold;
    color: #1765c0;
    margin-top: 10px;
    letter-spacing: 0.1em;
}

.description {
    font-weight: bold;
    color: #666;
}

/* Diseño en columna cuando la pantalla sea más pequeña */
@media screen and (max-width: 1624px) {
	
	.center-section h2{font-size: 2.9em;}
	
	.center-section p{font-size: 2.1em;}
	
    .container1 {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        max-width: 80%;
		align-items: center;
    }
	
	.title{ font-size: 1.8em;}
	
	.description { font-size: 1.4em;}
}


/* MEDIA QUERY PARA HACERLO RESPONSIVE */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .call-button {
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 2.5rem; /* Reducimos el tamaño del texto */
    }
}

.background1 {
    background-image: url("../img/foto1.jpg");
    background-position: center;
    background-size: cover;
}

/* Contenedor general de service y technology */
.service, .technology {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 20px;
    width: 60%;
    margin: auto;
}

.service img, .technology img {
    width: 35%;
}

.service-text, .technology-text {
    width: 80%;
}

.service-text h2, .technology-text h2 {
    font-size: 25px;
}

.service-text p, .technology-text p {
    padding-bottom: 20px;
}

/* Estilos del botón */
.value {
    text-align: center;
    padding: 20px;
}

button {
    background-color: #5789AF;
    color: white;
    padding: 30px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #466F8D;
}

h1{
	
	width:75%;
	padding:2em;
	margin:auto;
	text-align: left;
}

.sobremi{
    width: 75%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	
}

.texto-sobremi{
    width: 50%;
    margin: 2em;
}
.estudios{
	padding:15px;
	line-height: 2.5em;
}
.foto-sobremi{
	margin:2em;
	height:auto;
}


.foto-equipaciones img{
	width:350px;
	
}


.equipaciones{
	width:75%;
	margin:auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
	
}

.foto-equipaciones{
	margin:2em;
	height:auto;
}


.foto-equipaciones img{
	width:350px;
	
}
/* Estilos de la sección intro */
.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px;
    gap: 20px;
    width: 100%;
    margin: auto;
    background-image: url("../img/degradado.jpg");
    color: white;
}

.intro img {
    width: 22%;
    border-radius: 10px;
}

.intro-text {
    width: 37%;
}

.intro-text h2,
.intro-text p {
    padding-bottom: 20px;
}

/* Diseño en columna cuando la pantalla sea más pequeña */
@media screen and (max-width: 1624px) {
    .intro {
        flex-direction: column;
        text-align: center;
    }

    .intro img {
        width: 50%;
    }

    .intro-text {
        width: 80%;
		
    }
	
	.intro-text h2{
		font-size: 2.4em !important;
	}
	
	.intro-text p{
	 font-size: 1.8em !important;
        line-height: 1.6 !important;
	}
}

/* MEDIA QUERY PARA HACER TODO RESPONSIVE */
@media screen and (max-width: 1624px) { 
    .service, .technology {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        padding: 30px !important;
    }

    .service img, .technology img {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .service-text, .technology-text {
        width: 90% !important;
        max-width: 600px !important;
        text-align: center !important;
    }

    .service-text h2, .technology-text h2 {
        font-size: 2em !important;
    }

    .service-text p, .technology-text p {
        font-size: 1.8em !important;
        line-height: 1.6 !important;
    }

    button {
        font-size: 18px !important;
        padding: 15px 25px !important;
    }
}
        .section-left {
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 40px;
        }
        .section-left img {
            width: 40%;
            border-radius: 10px;
        }
        .text-box {
            width: 40%;
        }

        .boxes {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 10px;
        }
        .box {
            width: 24%;
            padding-bottom: 50px;
            border: 1px solid #ddd;
            border-radius: 10px;
            text-align: center;
            background: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

		.box img{width: 100%;}

		.box p{ padding-top: 20px;}

        button {
            background-color: #ff9900;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        button:hover {
            background-color: #5789AF;
        }
button a:hover {
            background-color: #5789AF;
        }


.section-container {
    text-align: center;
    max-width: 600px;
    margin: auto;
    padding-top: 120px;
}

/* Contenedor de imágenes */
.image-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
    padding-bottom: 120px;
    flex-wrap: wrap; /* Permite que las imágenes se ajusten en móviles */
}

.image-container img {
    width: 100%;
    max-width: 250px; /* Mantiene el tamaño máximo */
    height: auto;
    object-fit: cover;
    margin: 0 10px;
}

.image-container img:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

/* Diseño en columna cuando la pantalla sea más pequeña */
@media screen and (max-width: 1624px) {
	
	.section-container h2{ font-size: 3.3em;}
    .image-container {
        flex-direction: column;
        align-items: center;
    }

    .image-container img {
        max-width: 80%; /* Ajusta el tamaño de las imágenes en la columna */
        margin: 10px 0;
    }
}


.container {
    display: flex;
    background: white;
    padding: 20px;
    max-width: 800px;
    margin: auto;
    gap: 20px;
}

.image {
    flex: 1;
}

.image img {
    width: 100%;
}

.form-container {
    flex: 1;
    padding: 20px;
}

h2 {
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #ccc;
    color: black;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.checkbox-container input {
    width: auto;
    margin-right: 10px;
}

/* Botón */
button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Diseño en columna cuando la pantalla sea más pequeña */
@media screen and (max-width: 1624px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image, .form-container {
        width: 100%;
    }
	
	.form-container{ font-size: 3em;}

    .checkbox-container {
        justify-content: center;
        text-align: left;
    }

    .checkbox-container label {
        text-align: left;
    }
}


/* Sección de Instagram */
#instagramrg {
    width: 100%;
    background-image: url("../img/insta.jpg");
    background-repeat: no-repeat;
    background-size: contain; /* La imagen se ve entera */
    background-position: center;
    display: block;
    margin: 0; /* Elimina márgenes que puedan separar la sección */
    padding-top: 56.25%; /* Mantiene la proporción de la imagen (ajústalo según la imagen real) */
    position: relative;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    #instagramrg {
        padding-top: 75%; /* Ajuste para que en móviles la imagen no se vea aplastada */
    }
}

/* Estilos del botón */
.instagramrg button {
    background-color: orange;
    border-radius: 5px;
    margin-top: 13px;
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

/* Mejorar botón en móviles */
@media (max-width: 480px) {
    .instagramrg button {
        width: 100%;
        font-size: 1.2rem;
        padding: 12px 20px;
    }
}



/* MEDIA QUERY PARA HACER TODO RESPONSIVE */
@media screen and (max-width: 768px) {
    /* Apilar imágenes en columna */

    /* Ajustes en Instagram */
    .instagramrg {
        padding: 10% 5%;
        height: auto;
    }

    .instagramrg button {
        width: 80%;
    }
}
.pictogramas {
    font-family: Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #FFFFFF;
    margin-top: 40px;
}

.box1, .box2 {
    width: 270px;
    background-color: #d4ebf2;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.box1 img, .box2 img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.box1 h3, .box2 h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.box1 p, .box2 p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}

/* Diseño en columna cuando la pantalla sea más pequeña */
@media screen and (max-width: 1624px) {
    .pictogramas {
        flex-direction: column;
        align-items: center;
    }

    .box1, .box2 {
        width: 90%;
	
        max-width: 400px;
        align-items: center;
        text-align: center;
    }
	
	    .box1 img, .box2 img{
        width: 30%;
				height: 30%;

    }
	
	    .box1 h3, .box2 h3{
        font-size: 2.9em;
    }
	
		    .box1 p, .box2 p{
        font-size: 2em;
				color: black;
    }
}

.footer {
  position: relative;
  width: 100%;
  background: #318AB2;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 10px 5px;
  flex-wrap: wrap;
}

.icon1-elem {
  list-style: none;
}

.icon1 {
  color: white;
  font-size: 32px;
  display: inline-block;
  margin: 0 10px;
  transition: 0.5s;
}

.icon1:hover {
  transform: translateY(-10px);
}

.menu {
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.menu-elem {
  list-style: none;
}
.menu-icon {
  color: white;
  font-size: 20px;
  display: inline-block;
  text-decoration: none;
  margin: 5px 10px;
  opacity: 0.5;
  transition: 0.3s;
}

.menu-icon:hover {
  opacity: 1;
}

.text {
  color: white;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 20px;
}



.colores{ background-color: #28265B;}

.background{
    width: 430px;
    height: 520px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;

}
.background .shape{
    height: 200px;
    width: 200px;
    position: absolute;
    border-radius: 50%;
}
.shape:first-child{
    background: linear-gradient(
        #1845ad,
        #23a2f6
    );
    left: -80px;
    top: -80px;
}
.shape:last-child{
    background: linear-gradient(
        to right,
        #ff512f,
        #f09819
    );
    right: -30px;
    bottom: -80px;
}
form{
    height: 520px;
    width: 400px;
    background-color: rgba(255,255,255,0.13);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
}
form *{
    font-family: 'Poppins',sans-serif;
    color: #ffffff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}
form h3{
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;

}

label{
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;

}
input{
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255,255,255,0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}
::placeholder{
    color: #e5e5e5;
}
.boton12{
    margin-top: 50px;
    width: 100%;
    background-color: #ffffff;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}
.boton12 a{
    margin-top: 50px;
    width: 100%;
    background-color: #ffffff;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}


.social{
  margin-top: 30px;
  display: flex;

}
.social div{
  background: red;
  width: 150px;
  border-radius: 3px;
  padding: 5px 10px 10px 5px;
  background-color: rgba(255,255,255,0.27);
  color: #eaf0fb;
  text-align: center;
	
}
.social div:hover{
  background-color: rgba(255,255,255,0.47);
}
.social .fb{
  margin-left: 25px;
}
.social i{
  margin-right: 4px;
	
}
