
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

body {
  font-family: 'ConthraxSemiBold', sans-serif;
  background-color: #000;
  color: #fff;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 30px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 100px 40px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* si el PDF tenía sobretono oscuro */
  display: flex;
  align-items: center;
  z-index: 2;
  padding: 0 50px;
}

.hero-content {
  align-items: flex-start;
 width: 1200px;
  margin: 0 auto;

}

.hero-logo {
  width: 350px; /* ajustar según el tamaño real en el PDF */
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: 'ConthraxSemiBold', sans-serif;
  font-size: 5em;
  line-height: 0.9;
  color: #fff; /* si en el PDF el título tiene otro color, acomodalo */
  margin: 0;
}

.hero-content h2 {
  font-family: 'ConthraxSemiBold', sans-serif;
  font-size: 5em;
  line-height: 0.9;
  font-weight: normal;
  color: #c469ff; /* si en el PDF el subtítulo es gris claro */
  margin: 10px 0 0 0;
}

/*PRESENTACION*/
.presentacion-section {
  background-image: url("../images/bgsections.jpg");
  color: #fff;
  padding: 100px 40px;
  text-align: left;
  font-family: 'Roboto', sans-serif;
}

.presentacion-section h3 {
  font-family: 'ConthraxSemiBold', sans-serif;
  font-size: 5em;
  line-height: 1;
  color: #fff; /* si en el PDF el título tiene otro color, acomodalo */
  margin: 0;
}

.presentacion-section h4 {
  font-family: 'ConthraxSemiBold', sans-serif;
  font-size: 5em;
  line-height: 0.9;
  font-weight: normal;
  color: #c469ff; /* si en el PDF el subtítulo es gris claro */
  margin: 5px 0 0 0;
}

.presentacion-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.columnas {
  margin-top: 20px;
  columns: 2 200px;
  column-gap: 40px;
}

.columnas p {
  margin-bottom: 20px;
  font-size: 1.6em;
  line-height: 1.7;
}

/*SERVICIOS*/

.servicios-section {
  margin: 0;
  padding: 0;
}

.servicio {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.contenido {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  max-width: 700px;
  color: #fff;
}

.contenido.izquierda {
  align-self: flex-start;
  margin-right: auto;
  text-align: left;
}

.contenido.derecha {
  align-self: flex-end;
  margin-left: auto;
  text-align: right;
}


.contenido h3 {
  font-family: 'ConthraxSemiBold', sans-serif;
  font-size: 4em;
  line-height: 1;
  margin-bottom: 20px;
  color: #fff;
}

.contenido p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6em;
  line-height: 1.7;
}

/*VALORES*/

.valores-section {
  position: relative;
  background-image: url('../images/image_5_6.png');
  background-size: cover;
  background-position: absolute;
  
  color: #fff;
  text-align: center;
  min-height: 100vh;
}

.valores-overlay {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
}

.valores-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.valores-section h3 {
  font-size: 3em;
  color: #fff;
  margin-bottom: 40px;
  font-family: 'ConthraxSemiBold', sans-serif;
}

.bloques-texto {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.par {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.par > div {
  width: 100%;
  max-width: 400px;
  height: 240px;
  object-fit: cover;
  border-radius: 5px;
}


.par h4 {
  font-family: 'ConthraxSemiBold', sans-serif;
  font-size: 2em;
  margin-bottom: 10px;
}

.par p {
  font-size: 1.5em;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

/* Fila de imágenes */
.imagenes-valores {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.imagenes-valores img {
  width: 100%;
  max-width: 400px;
  height: 240px;
  object-fit: cover;
  border: 4px solid white;
  border-radius: 5px;
}



/*CONTATO*/
.contacto-section {
  background-image: url('../images/bgsections.jpg'); /* Cambiá esta URL */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 20px;
}



.contacto-section h3 {
  font-size: 4em;
  font-family: 'ConthraxSemiBold', sans-serif;
  line-height: 1;
  margin-bottom: 60px;
  color: #fff;
}

.contacto-section h3 span {
  color: #c469ff;
}

.contacto-columnas {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

.contacto-columnas .col {
  flex: 1;
  min-width: 300px;
}

.contacto-columnas p {
  font-size: 1.4em;
  font-family: 'Roboto', sans-serif;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contacto-columnas a {
  color: white;
  text-decoration: none;
}

.contacto-columnas a:hover {
  text-decoration: underline;
}

/* Íconos blancos */
.contacto-columnas i {
  color: white;
  font-size: 1.2em;
}

/* MEDIA QUERIES RESPONSIVE */

@media (max-width: 1024px) {
  .hero-content h1,
  .hero-content h2,
  .presentacion-section h3,
  .presentacion-section h4,
  .contacto-section h3 {
    font-size: 3.5em;
  }

  .contenido {
    padding: 30px;
  }

  .par,
  .imagenes-valores,
  .contacto-columnas {
    flex-direction: column;
    align-items: center;
  }

  .par > div,
  .imagenes-valores img,
  .contacto-columnas .col {
    max-width: 90%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-content h1,
  .hero-content h2,
  .presentacion-section h3,
  .presentacion-section h4,
  .contacto-section h3 {
    font-size: 2.5em;
  }

  .columnas {
    columns: 1;
  }

  .contenido h3 {
    font-size: 2.5em;
  }

  .contenido p,
  .contacto-columnas p {
    font-size: 1.2em;
  }

  .hero-logo {
    width: 200px;
  }

  .valores-section h3 {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0;
  }

  .hero-content h1,
  .hero-content h2,
  .presentacion-section h3,
  .presentacion-section h4,
  .contacto-section h3 {
    font-size: 1.8em;
  }

  .contenido {
    padding: 20px;
  }

  .contenido h3 {
    font-size: 2em;
  }

  .valores-section h3 {
    font-size: 1.8em;
  }

  .par h4 {
    font-size: 1.4em;
  }

  .par p,
  .contacto-columnas p {
    font-size: 1em;
  }

  .navbar ul {
    gap: 8px;
  }
}