@import url("https://fonts.googleapis.com/css?family=Damion");
body {
  margin: 0px;
  padding: 0px;
  background: url("../images/pg/menu_back.jpg");
  background-attachment: fixed;
  font-family: "Open Sans", sans-serif;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  color: white;

  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}



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



.main {
  background: rgba(0, 0, 0, 0.32);
}

header {
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}

header img {
  width: 650px;
  height: 250px;
  object-fit: cover;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
  header img {
    width: 100%;
    height: auto;
  }
}

article {
  height: 1000px;
  background: white;
}

.hover {
  border-color: #00463e !important;
  background: white !important;
  color: black !important;
}

.nuestra-empresa-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

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

.nuestra-empresa-section h2 {
  font-family: 'Roboto Serif', serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: rgb(82, 35, 12);
}

/* Flexbox para alinear los párrafos uno al lado del otro */
.parrafos {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap; /* Para que en pantallas chicas se acomode vertical */
}

.columna {
  flex: 1;
  min-width: 300px;
}

.columna p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/*HEADERB SECTION*/

.headerb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
  padding: 80px clamp(16px, 5vw, 60px) 80px clamp(16px, 5vw, 60px);
  box-sizing: border-box;
  overflow-x: hidden;
}

.textContact{
  flex: 1 1 50%;
  font-family: 'Roboto Serif', serif;
  color: rgb(82, 35, 12);
  font-size: 1.1em;
  line-height: 1.5;
  padding-left: 90px;

}

.contact-section {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-header {
  margin-bottom: 15px;
}

.contact-table {
  width: 100%;
  max-width: 350px;
  border-collapse: collapse;
  background-color: #e7e7e7;
}

.contact-table td {
  padding: 8px 10px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(107, 93, 93, 0.3);
}

.contact-table .icon {
  width: 40px;
  text-align: right;
}

.contact-table .value {
  text-align: left;
  color: rgb(0, 0, 0);
}

.contact-table .value a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.contact-table .value a:hover {
  text-decoration: underline;
}

.facebook-section {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 280px;
  padding: 100px 10px;
}

.facebook-section {
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.facebook-section h2 {
font-family: 'Roboto Serif', serif;
  font-size: 2.2rem;
  text-align: center;
  color: rgb(82, 35, 12);
  padding-bottom: 10px;
}

.facebook-section p {
  margin-bottom: 35px;
  max-width: 350px;
  font-size: 18px;
}

.fb-page {
  width: 100% !important;
  max-width: 600px;
  height: 600px;
}



/* Responsive */
@media (max-width: 1020px) {
  .headerb {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px 60px 20px;
  }

  .facebook-section {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .contact-section {
    width: 100%;
  }

  .textContact {
    padding: 0;
    margin-bottom: 30px;
    font-size: 1em;
  }

  .contact-table {
    width: 100%;
    max-width: 100%;
  }

  .contact-table tr {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  .contact-table td {
    border-bottom: none;
    padding: 6px 10px;
  }

  .contact-table .icon {
    width: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-table .value {
    flex-grow: 1;
    text-align: left;
    word-break: break-word; /* Por si hay emails largos */
  }
}


.equipamientos-container {
  text-align: center;
  padding: 0 1rem;
}

.equipamientos-container img {
  max-width: 100%;
  height: auto;
  margin: 0.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.equipamientos-container .img-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Evitar deformación de imágenes en grupo */
.equipamientos-container .img-group img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 600px) {
  .equipamientos-container .img-group {
    flex-direction: column;
    align-items: center;
  }
}


.materiales-container {
  text-align: center;
  padding: 1rem;
}

.imagesx3s {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.imgc {
  flex: 1 1 150px; /* mínimo 150px, crece si hay espacio */
  max-width: 250px; /* para que no crezca demasiado */
  box-sizing: border-box;
  padding: 0.5rem;
}

.imgc img {
  width: 100%; /* que la imagen ocupe todo el ancho del contenedor */
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Responsive para pantallas chicas */
@media (max-width: 600px) {
  .imagesx3s {
    flex-direction: column;
    align-items: center;
  }

  .imgc {
    max-width: 90vw; /* casi todo el ancho disponible */
    flex-basis: auto;
  }
}



.content {
  background: white;
}
a.fbarte {
  color: #009688;
  text-decoration: initial;
}

.artlist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columnas iguales */
  gap: 20px;
  margin-top: 20px;
}

.artlist-grid div {
  background: #f0f0f0;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
  font-size: 16px;
  line-height: 1.5;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .artlist-grid {
    grid-template-columns: 1fr;
  }

  .text {
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px;
  }
}

/*-------------FOOTER-------------*/

.footer {
  background-color: #333;
  color: #f2f2f2;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer h3, .footer h4 {
  margin-bottom: 10px;
  color: #fff;
}

.footer a {
  color: #f2f2f2;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.logo-text {
  display: flex;
  flex-direction: column; /* Hace que el texto quede debajo */
  align-items: center;
  text-align: center;
}

.logo-footer {
  width: 250px; /* Aumentá este valor si querés que el logo sea más grande */
  height: auto;
  margin-bottom: 10px;
}

.logo-text p {
  margin: 0;
  font-size: 14px;
}


/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: row;           /* en línea */
    flex-wrap: wrap;               /* si no entra, salta */
    justify-content: center;
    align-items: flex-start;       /* alinea arriba */
    text-align: left;
    gap: 10px;
  }

  .footer-section {
    flex: 1 1 45%;                 /* ocupa 45% del ancho */
    min-width: 150px;              /* asegura visibilidad */
  }

  .footer {
    padding: 15px 10px;            /* menos padding */
  }

  .logo-footer {
    width: 140px;                  /* más chico */
    margin-bottom: 5px;
  }

  .logo-text p {
    font-size: 13px;
    line-height: 1.3;
    margin: 5px 0 0 0;
  }

  .footer-section h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .footer-section p, .footer a {
    font-size: 13px;
    margin: 3px 0;
  }
}





.logocards {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

.logocard {
  height: 30px;
}
.logocard.odd {
  height: 45px;
}
.logocards span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form_body {
  display: flex;
  flex-direction: column;
}
.form_left {
  padding-top: 5px;
  display: flex;
}
.form_right {
  display: flex;
}
.text_area {
  width: 100%;
}
.btn_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px;
}
.form_contact form {
  width: 80%;
}
.label {
  padding: 3px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.ainput {
  padding: 5px;
  /* width: 70%; */
  margin-right: 5px;
  padding: 5px;
  height: min-content;
  width: 100%;
}
.sformc {
  width: 25%;
  background: #00bcd4;
  color: black;
  margin-right: 5px;
  padding: 5px;
  border-radius: 5px 0px 0px 5px;
}
span.sform {
  width: fit-content;
  width: -moz-fit-content;
  background: white;
  color: black;
  margin-right: 5px;
  padding: 5px;
  border-radius: 5px 0px 0px 5px;
}
span.sform2 {
  display: block;
  padding: 10px;
  font-weight: bold;
}
#mensaje {
  font-family: inherit;
  height: 60px;
  width: 96%;
  resize: none;
  padding: 5px;
}

.btna {
  background: #009688;
  border: 2px solid #00796b;
  padding: 5px 15px;
  margin-bottom: 3px;
  border-radius: 0px 10px 0px 10px;
}
.btna:focus {
  outline: none;
  background: #00796b;
  border: 2px solid #009688;
}
span.infol {
  padding: 10px;
  display: block;
  color: white;
  background: #00796b;
  border-bottom: 3px solid #009688;
}
span.infor {
  padding: 10px;
  display: block;
  color: black;
  background: white;
  border-bottom: 3px solid #00796b;
}
.linef {
  display: flex;
  flex-direction: column;
  width: 60%;
  border-left: 3px solid #00796b;
  border-right: 3px solid #00796b;
}
.right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
}
.left {
  width: 50%;
  display: flex;
  flex-direction: column;
  border-top: 3px solid #00796b;
}
.fb-page {
  margin-bottom: 10px;
}

.div-centrado {
  max-width: 1200px; 
  margin: 0 auto;  
  text-align: justify; 
  padding: 20px;
  font-size: 16px;   
  line-height: 1.6;  
}

h2.s {
  background: rgb(131, 120, 115);
  padding: 10px;
  color: white;
  text-transform: uppercase;
  box-shadow: 0px 3px 0px 0px #ccc,
              0px 6px 0px 0px #ddd,
              0px 9px 0px 0px #eee;
  margin-bottom: 1.5em;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.borde-titulo{
  padding: 25px;
  font-family: 'Roboto Serif', serif;
  color: rgb(82, 35, 12);
  font-size: 3em;

}

@media (max-width: 500px) {
  .borde-titulo{ font-size: 2.5em;}

}

.borde-parrafo{
  padding-bottom: 25px;
}

.imagesx3 {
  display: flex;
  padding: 25px 0px;
  flex-flow: row wrap;
  text-align: center;
  justify-content: center;
  transition: all 500ms;
}
.imagesx3s {
  display: flex;
  padding: 25px 0px;
  flex-flow: row wrap;
  text-align: center;
  justify-content: center;
}
.imagesx3 img {
  height: 300px;
  width: 300px;
  padding: 25px;
  transition: all 500ms;
}
.imagesx3 img:hover {
  transform: scale(1.2);
  transition: all 500ms;
}

.imgc {
  width: 30%;
  text-align: center;
  text-align: -webkit-center;
}

.lefts {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rights {
  width: 50%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

span.infols {
  padding: 10px;
  display: block;
  color: white;
  background: #00796b;
  border-bottom: 3px solid #009688;
  height: 50%;
}
span.infors {
  padding: 10px;
  display: block;
  color: black;
  background: white;
  border-bottom: 3px solid #009688;
  height: 50%;
}

.pop {
  border-left: #009688 3px solid;
  padding-left: 5px;
}
.slide_content {
  width: 75%;
  margin: 0 auto;
}

/* Contactos */

.header_o {
  background: white;
  width: 100%;
  bottom: 0px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.contacts {
  display: flex;
  justify-content: center;
  /* height: 40vw; */
  flex: 1 1;
}


.text_area_C {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}
.linefs {
  flex: 1 0;
  display: flex;
  flex-direction: column;
  font-size: 1em;
}

.fb_c {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.form_contact {
  /* flex: 1 0; */
  margin: 0 5px;
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arteCredito {
  background: rgb(131, 120, 115);
  color: white;
  display: flex;
  flex-direction: column;
  margin: 60px auto; /* centrado automático */
  text-align: center;

  width: 70%;
  max-width: 1000px; /* límite de ancho opcional */
  box-sizing: border-box;
}

.arteCredito p {
  font-size: 20px;
  margin: 5px 5px;
}

.arteTarjetas {
  display: flex;
  flex-wrap: wrap; /* prmite que se acomoden en varias líneas */
  background: white;
  align-items: center;
  justify-content: center;
  border-top: 3px solid rgb(131, 120, 115);
  
  padding: 15px;
  gap: 10px; /* espacio entre imágenes */
}

.arteTarjetas img {
  max-width: 110px;
  width: 100%;
  height: auto;
  padding: 5px;
}

@media (max-width: 600px) {
   .arteCredito  {
    width: 50%;
  }
  .arteCredito p {
    font-size: 16px;
    margin: 10px;
  }
  .arteCredito h2 {
    font-size: 17px;
     margin: 5px;
  }

  .arteTarjetas img {
    max-width: 100px;
    width: 100px;
    flex: 0 0 50%;  /* Ocupa 50% del ancho del contenedor */
    box-sizing: border-box;
  }
}


/******************NAVBAR******************/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.navbar {
  background-color: #333333;
  color: #fff;
  position: relative;
  width: 100%;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
  gap: 300px;
}

.nav-links {
  display: flex;
  gap: 10px;
  order: 1;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1em;
  padding: 8px 0;
  width: 160px; /* Tamaño fijo para todos los enlaces */
  text-align: center;
  background-color: #444;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  background-color: #222;
}

.hamburger {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
  color: white;
  order: 0;
}

/* Fijo al hacer scroll */
.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}

/* Responsive */
@media (max-width: 1050px) {

  .navbar-container {
    justify-content: start;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #3d3d3d;
    flex-direction: column;
    width: 100%;
    display: none;
    align-items: center;
    padding: 10px;
    gap: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 70%; /* Ocupan el 80% del contenedor en mobile */
    padding: 12px 0;
  }

  .hamburger {
    display: block;
  }

}