@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Monomaniac+One&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

header {
  width: 100%;
  height: 150px; }
  header nav {
    display: flex;
    justify-content: space-evenly;
    height: 200px; }
    header nav .navegador {
      width: 80%;
      align-self: center; }
      header nav .navegador ul {
        display: flex;
        justify-content: space-around;
        align-items: center;
        border-bottom: 1px solid #000000; }
        header nav .navegador ul li {
          list-style: none; }
          header nav .navegador ul li a {
            text-decoration: none;
            font-family: "Monomaniac One", sans-serif;
            font-weight: 400;
            font-style: normal;
            color: #000000;
            text-decoration: none;
            font-size: 30px;
            letter-spacing: 1px; }
  header .logo {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center; }
    header .logo img {
      width: 212px;
      margin-top: 60px; }
  header .whatsapp {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center; }
    header .whatsapp img {
      width: 60%; }
  header .whatsappResp {
    display: none; }
  header .menuResp {
    display: none; }

#toggle-menu {
  display: none; }

.menuResp .navbar-collapse {
  display: none;
  position: fixed;
  width: 40%;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

.menuResp .navbar-collapse ul {
  text-align: center; }

.menuResp .navbar-collapse ul li {
  margin-bottom: 10px; }

#toggle-menu:checked + .menuResp .navbar-collapse {
  display: block; }

footer {
  height: 50px;
  background-color: #B0A695;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center; }
  footer p {
    margin: 10px;
    font-family: "Monomaniac One", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
    font-size: 20px; }

.pie {
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  align-items: center; }
  .pie a {
    text-decoration: none;
    color: black; }

.iconos1 {
  display: flex;
  justify-content: center;
  align-items: center; }

.iconos {
  display: flex;
  justify-content: center;
  align-items: center; }

html {
  font-size: 16px; }

h1 {
  display: none; }

.largomain {
  height: 38rem; }

.largomainindex {
  height: 38rem; }
  .largomainindex .seccion-1 {
    height: 80%;
    background-image: url(../imagenes/seccion1.jpg);
    background-size: cover;
    font-family: "Monomaniac One", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.5); }
    .largomainindex .seccion-1 .rectangulo {
      width: 70%;
      height: 80%;
      background-color: #b0a6956b;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 10px;
      box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); }
      .largomainindex .seccion-1 .rectangulo:hover {
        border-top: 1px solid #000000;
        box-shadow: 0px 0px 10px black; }
      .largomainindex .seccion-1 .rectangulo .borde {
        width: 70%;
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-top: 1px solid black;
        border-bottom: 1px solid black; }
        .largomainindex .seccion-1 .rectangulo .borde .servicios {
          display: flex;
          justify-content: space-around;
          align-items: center; }
          .largomainindex .seccion-1 .rectangulo .borde .servicios .texto-1 {
            width: auto;
            margin: 10px;
            background-color: #b0a6956b;
            padding: 10px;
            border: 1px solid #8a8a8a;
            text-decoration: none;
            color: black; }
  .largomainindex .seccion-2 {
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px; }
    .largomainindex .seccion-2 .base {
      display: flex;
      justify-content: center;
      align-items: center;
      border-top: 1px solid #000000;
      border-bottom: 1px solid #000000;
      overflow: hidden; }
      .largomainindex .seccion-2 .base p {
        font-family: "Monomaniac One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #000000;
        font-size: 20px;
        margin: 10px;
        animation: aparecer-izquierda 3s forwards; }

@keyframes aparecer-izquierda {
  from {
    transform: translateX(-100%);
    /* Inicia el texto fuera del área visible a la izquierda */ }
  to {
    transform: translateX(0);
    /* Termina con el texto en su posición normal */ } }

.contAreas {
  height: 80%;
  background: linear-gradient(to bottom, #B0A695 50%, white 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px; }
  .contAreas .contenedorPanel {
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    align-items: center; }
    .contAreas .contenedorPanel .panel1 {
      width: 18.75rem;
      height: 30rem;
      background-color: white;
      border-radius: 10px;
      box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly;
      margin-top: 50px;
      transition: border-color 0.3s ease; }
      .contAreas .contenedorPanel .panel1:hover {
        border-top: 1px solid #000000;
        box-shadow: 0px 0px 10px black; }
      .contAreas .contenedorPanel .panel1 h2 {
        height: 20%;
        text-align: center;
        font-family: "Monomaniac One", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 28px;
        color: black;
        margin-top: 20px;
        letter-spacing: 1px; }
      .contAreas .contenedorPanel .panel1 p {
        height: 80%;
        font-family: "Monomaniac One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: black;
        font-size: 20px;
        text-align: center;
        padding: 1rem;
        letter-spacing: 1px; }

.largomaine {
  height: 50rem; }
  .largomaine .panel2 {
    width: 50rem;
    height: auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 80px;
    transition: border-color 0.3s ease; }
    .largomaine .panel2:hover {
      border-top: 1px solid #000000;
      box-shadow: 0px 0px 10px black; }
    .largomaine .panel2 h2 {
      height: 20%;
      padding: 10px;
      text-align: center;
      font-family: "Monomaniac One", sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 28px;
      color: black; }
    .largomaine .panel2 ul li {
      font-family: "Monomaniac One", sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 20px;
      color: black;
      margin-top: 20px;
      letter-spacing: 1px; }
    .largomaine .panel2 ul p {
      height: 80%;
      font-family: "Monomaniac One", sans-serif;
      font-weight: 400;
      font-style: normal;
      color: black;
      font-size: 20px;
      text-align: center;
      padding: 1rem; }
    .largomaine .panel2 a {
      color: black; }

.contGeneral {
  height: 80%;
  background: linear-gradient(to bottom, #B0A695 20%, white 20%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px; }
  .contGeneral .contContacto {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 180px; }
    .contGeneral .contContacto .rectanguloContacto {
      width: 60rem;
      height: 25rem;
      background-color: #b0a695bb;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly; }
      .contGeneral .contContacto .rectanguloContacto:hover {
        border-top: 1px solid #000000;
        box-shadow: 0px 0px 10px black; }
      .contGeneral .contContacto .rectanguloContacto .bordeContacto {
        width: 70%;
        height: 80%;
        border-top: 1px solid black;
        border-bottom: 1px solid black;
        display: flex;
        justify-content: space-evenly;
        align-items: center; }
        .contGeneral .contContacto .rectanguloContacto .bordeContacto .texto {
          width: 50%;
          display: flex;
          justify-content: center;
          text-align: center; }
          .contGeneral .contContacto .rectanguloContacto .bordeContacto .texto p {
            font-family: "Monomaniac One", sans-serif;
            font-weight: 400;
            font-style: normal;
            color: #000000;
            font-size: 18px;
            padding: 15px 20px 15px 20px;
            text-align: center;
            letter-spacing: 1px; }
            .contGeneral .contContacto .rectanguloContacto .bordeContacto .texto p a {
              color: black; }
        .contGeneral .contContacto .rectanguloContacto .bordeContacto .formulario {
          width: 50%;
          height: 98%;
          background-color: #151515;
          border-radius: 10px;
          display: flex;
          justify-content: center;
          align-items: center; }
          .contGeneral .contContacto .rectanguloContacto .bordeContacto .formulario form {
            display: flex;
            flex-direction: column; }
            .contGeneral .contContacto .rectanguloContacto .bordeContacto .formulario form .boton {
              padding: 8px;
              margin-bottom: 16px;
              border-radius: 10px; }
            .contGeneral .contContacto .rectanguloContacto .bordeContacto .formulario form .boton:active {
              background-color: white;
              /* Mantén el color de fondo del botón como blanco cuando está activo */ }
            .contGeneral .contContacto .rectanguloContacto .bordeContacto .formulario form .boton2 {
              padding: 8px;
              height: 100px;
              margin-bottom: 16px;
              border-radius: 10px; }

.contUbi {
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px; }
  .contUbi .contUbicacion {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 50px; }
    .contUbi .contUbicacion .rectanguloUbi {
      width: 20rem;
      height: 20rem;
      background-color: #b0a695bb;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly; }
      .contUbi .contUbicacion .rectanguloUbi:hover {
        border-top: 1px solid #000000;
        box-shadow: 0px 0px 10px black; }
      .contUbi .contUbicacion .rectanguloUbi .bordeUbicacion {
        width: 90%;
        border-top: 1px solid black;
        border-bottom: 1px solid black; }
        .contUbi .contUbicacion .rectanguloUbi .bordeUbicacion p {
          font-family: "Monomaniac One", sans-serif;
          font-weight: 400;
          font-style: normal;
          color: black;
          font-size: 20px;
          padding: 15px 20px 15px 20px;
          text-align: center;
          letter-spacing: 1px; }
    .contUbi .contUbicacion .mapa {
      width: 50%;
      height: 100%;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center; }
      .contUbi .contUbicacion .mapa:hover {
        border-top: 1px solid #000000;
        box-shadow: 0px 0px 10px black; }

.seccion-2 {
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px; }
  .seccion-2 .base {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    overflow: hidden; }
    .seccion-2 .base p {
      font-family: "Monomaniac One", sans-serif;
      font-weight: 400;
      font-style: normal;
      color: #000000;
      font-size: 20px;
      margin: 10px;
      animation: aparecer-izquierda 3s forwards; }

@keyframes aparecer-izquierda {
  from {
    transform: translateX(-100%);
    /* Inicia el texto fuera del área visible a la izquierda */ }
  to {
    transform: translateX(0);
    /* Termina con el texto en su posición normal */ } }

.empresas {
  height: 80%;
  background: linear-gradient(to bottom, #B0A695 20%, white 20%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px; }
  .empresas .servicios {
    margin-top: 100px;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .empresas p {
    font-family: "Monomaniac One", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000000;
    font-size: 20px;
    margin: 10px; }
  .empresas h2 {
    text-align: center;
    font-family: "Monomaniac One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
    color: black; }

.contServicios {
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-top: 100px; }
  .contServicios .contenedorPanel {
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    align-items: center; }
    .contServicios .contenedorPanel .panel {
      width: 18.75rem;
      height: 25rem;
      background-color: white;
      border-radius: 10px;
      box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); }
      .contServicios .contenedorPanel .panel:hover {
        border-top: 1px solid #000000;
        box-shadow: 0px 0px 10px black; }
      .contServicios .contenedorPanel .panel h2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        height: 20%; }
      .contServicios .contenedorPanel .panel p {
        height: 80%; }
  .contServicios h2 {
    text-align: center;
    font-family: "Monomaniac One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 36px;
    color: black; }
  .contServicios p {
    font-family: "Monomaniac One", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
    font-size: 20px;
    text-align: center;
    padding: 1rem; }
  .contServicios .panel1 {
    width: 18.75rem;
    height: 40rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 50px; }

.descservicios p {
  font-family: "Monomaniac One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: black;
  font-size: 20px;
  text-align: center;
  padding: 1rem;
  margin-top: 50px; }

.titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: white;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  padding: 20px; }

.contGeneral .socios {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; }
  .contGeneral .socios p {
    font-family: "Monomaniac One", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
    font-size: 20px;
    text-align: center;
    padding: 1rem;
    margin-top: 150px;
    width: 70%; }

.contgridequipo {
  display: flex;
  justify-content: center;
  align-items: center; }
  .contgridequipo .gridequipo {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 1rem; }
    .contgridequipo .gridequipo .celda {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 1rem; }
      .contgridequipo .gridequipo .celda:hover {
        border-top: 1px solid #000000;
        box-shadow: 0px 0px 10px black; }
      .contgridequipo .gridequipo .celda .imagen {
        width: 100%;
        height: 70%; }
      .contgridequipo .gridequipo .celda .textoFoto {
        width: 90%;
        height: 30%;
        font-family: "Monomaniac One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: black;
        font-size: 20px;
        text-align: center; }

@media (max-width: 1400px) {
  .largomainindex .seccion-1 .rectangulo .borde .texto-1 {
    order: 1;
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center; }
  .foto {
    order: 2;
    margin-bottom: 10px; }
  .contenedorPanel {
    flex-direction: column; }
  .largomain {
    height: auto; }
  .contServicios .contenedorPanel .panel {
    width: auto;
    height: auto;
    margin-top: 100px;
    margin-bottom: 20px;
    padding: 50px; }
  .panel {
    width: 100%;
    height: auto;
    flex-direction: column;
    margin: 20px;
    padding: 50px; }
  .mainarea {
    height: auto; }
  .contUbicacion {
    flex-direction: column; }
  .rectanguloUbi {
    margin-bottom: 15px; }
  .bordeUbicacion {
    margin: 10px; }
  .mapa {
    width: auto;
    height: auto; } }

@media (max-width: 1024px) {
  header {
    height: auto; }
  nav {
    height: 100px;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 20px; }
  .logo img {
    width: 150px; }
  .navegador {
    display: none; }
  .texto p {
    display: none; }
  .contGeneral .contContacto .rectanguloContacto .bordeContacto {
    justify-content: center;
    display: flex;
    flex-direction: column; }
  .contGeneral .contContacto {
    width: 70%; }
  .contGeneral .contContacto .rectanguloContacto .bordeContacto .formulario {
    width: 230px; }
  .texto {
    display: none; }
  .whatsapp img {
    display: none; }
  header .menuResp {
    display: flex;
    align-items: center;
    cursor: pointer;
    display: inline-block; }
  .iconos1 {
    display: none; }
  .contgridequipo .gridequipo {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr); } }

.largomaine {
  width: auto; }
  .largomaine .panel2 {
    width: auto;
    padding: 10px; }

@media (max-width: 830px) {
  .foto {
    display: none; }
  header nav {
    height: 150px; }
  header .logo img {
    width: 150px; }
  header .menuResp span {
    display: flex;
    font-size: 40px;
    width: 50%;
    margin-top: 80px; }
  .rectanguloContacto {
    background-color: white; }
  .contgridequipo .gridequipo {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr); } }

@media (max-width: 620px) {
  .largomainindex .seccion-1 .rectangulo {
    width: 90%; }
  .largomainindex .seccion-1 .rectangulo .borde {
    width: 90%;
    height: 350px; }
  .texto-1 {
    width: 100%; }
  footer p {
    font-size: 18px; }
  .contServicios .contenedorPanel .panel {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 50px; }
  .largomaine {
    height: auto; } }

@media (max-width: 500px) {
  .logo img {
    width: 100px;
    margin-top: 40px; }
  .mapa {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 20%; } }

@media (max-width: 360px) {
  p {
    font-size: 18px; }
  .base p {
    font-size: 18px; }
  footer p {
    font-size: 16px; } }
