/* Sección de contacto */
.contacto-section {
  padding: 2rem 2rem;
  background-color: #f5f5f5;
  text-align: center;
}

.contacto-section h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #000;
  font-family: sans-serif;
}

.contacto-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #CA2026;
  font-family: system-ui; /*tipo de letra*/
  font-weight: 450;
}

/* Contenedor flex para formulario mapa */
.contacto-columns {
  display: flex;
  justify-content: center; /* Centra ambos */
  align-items: stretch;    /* Hace que tengan la misma altura */
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contenedor del formulario */
.contacto-form {
 
  max-width: 450px;
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  flex: 7;
}

/* Responsivo */
@media (max-width: 900px) {
  .contacto-columns {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contacto-form, .mapa-container {
    max-width: 100%;
  }

  .mapa-container iframe {
    min-height: 300px;
  }
}




.contenedor-cuatro-columnas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  padding: 1rem;
}

.columna-servicio {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.columna-servicio:hover {
  transform: translateY(-5px);
}






/*Imágenes*/
.ventas{
  width: 10%;
  height: auto;
  display: block;
}


/*NOSOTROS*/
.about-section {
  padding: 1rem 1rem;
  background-color: #f7f7f7; /*color del fondo*/ 
  text-align: center;
  min-height: 50vh; /*Ancho del hero*/
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000000; /*color de la letra*/
  font-family: sans-serif;
  padding: 1rem;
}

.about-section .rojo {
  color: #CA2026;
}

.about-section .negro {
  color: #000000;
}


/*Columnas*/
.columna-izquierda { 
    flex: 1 1 300px;
    max-width: 1100px;
    padding: 1.5rem;
    border-radius: 60px; /*redondea las esquinas de la izquierda*/
    background-color: #ececec; /*color del fondo*/
    box-shadow: 5;
    margin: 0 auto;
}

.columna-izquierda p {
  color: #000000; /*color del texto de adentro*/
  font-family: system-ui;
  font-size: 1.1rem;
  margin-bottom: 1rem; 
}


/*IMAGEN RASGADA*/
.seccion-imagen {
  position: relative;
  width: 100%;
  height: 400px; /*Altura*/
  overflow: hidden;
  
}

.imagen-fondo {
 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center; /*Mueve la imagen a la izquierda*/
  z-index: 1;
}


/*Frase*/
.frase {
  display: flex;
  justify-content: center; /*horizontal*/
  align-items: center;     /*vertical*/
  min-height: 25vh;        /*altura*/
  background-color: #ffffff; /*fondo de la sección*/
}

.frase p {
  color: #CA2026; /*color de la letra*/
  font-size: 2.5rem; /*tamaño de la letra*/
  margin: 0; /* elimina espacio extra */
  text-align: center; /*texto centrado*/
  font-weight: 500;   /* negrita elegante */
  letter-spacing: 1px; /* Espaciado sutil */
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; /*tipo de letra*/
  text-shadow: 2px 2px 4px rgb(129, 129, 129); /*Sombra de la letra*/
}



/* Imagenes 44444444*/
.ventas h2 {
  color: #2bff00;
  text-align: center; /*centra texto horizontalmente*/
  font-size: 2.5rem;
  margin-bottom: 2rem; /*espacio debajo del título*/
}

.ventas {
width: 100%;
padding: 2rem 0rem;
}

.ventas-dis {
  display: flex;
  gap: 2.3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ventas-dis img {
  width: 285px;  /*tamaño de las imágenes*/
  height: auto;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /*Sombra*/
  flex-shrink: 0; /* Evita que se encojan */
  transition: transform 0.3s ease;
   max-width: 100%; /* Evita que se salgan del contenedor */
}

.ventas-dis img:hover {
  transform: scale(1.05); /*Efecto al pasar el mouse*/
}





/*Carrusel*/
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 9px;
}

.slider-container {
  width: 100%;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  display: block;
  height: 600px;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-8%);
  background: rgba(255,255,255,0.5);
  border: #18f218;
  color: #CA2026;
  font-size: 5rem;
  cursor: pointer;
}

.prev {  left: 10px;
}

.next {
  right: 10px;
}

.Title-Servicios {
  background-color: #ffffff;
}

.Title-Servicios h2 {
  color: #000000;
  text-align: center;
  margin-top: 3rem;
  font-size: 2.5rem;
  margin-bottom: 0.1rem;
  font-family: sans-serif;  
} 


.img-servicios {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas */
  grid-template-rows: repeat(2, auto);   /* 2 filas */
  gap: 1.3rem;
  padding: 4rem; 
  margin-bottom: 0;    /* sin espacio abajo */
}

.img-servicios img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  border-radius: 17px; 
}

/* Imagen vertical grande (img5) */
.img-servicios .img5 {
  grid-column: 3 / 4;  /* ocupa la 3ra columna */
  grid-row: 1 / 3;     /* ocupa las 2 filas */
  height: 100%;
  object-fit: cover;
}







.servicio-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.servicio-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* TEXTO HOVER */
.hover-text {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-family: sans-serif;
}

/* EFECTO HOVER */
.servicio-item:hover img {
  transform: scale(1.1);
}

.servicio-item:hover .hover-text {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .Title-Servicios h2 {
    font-size: 24px;
  }

  .servicio-item img {
    height: 200px;
  }
}

















/* Contenedor centrado */
.contacto-wrapper {
  display: flex;
  justify-content: center;
}

.contacto-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  width: 100%;
  align-items: start;
}

/* Formulario */
.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contacto-form .form-row {
  display: flex;
  gap: 1rem;
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: system-ui;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.recaptcha-placeholder {
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  padding: 1rem;
  color: #888;
  font-size: 0.9rem;
}

/* Políticas */
.form-politicas {
  text-align: left;
}

.form-politicas label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem; /* 🔹 muy cerca del texto */
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  font-family: system-ui;
}

.form-politicas input[type="checkbox"] {
  accent-color: #007bff;
  width: 16px;
  height: 16px;
  margin: 0;
  position: relative;
  top: 0;
}

.form-politicas a {
  color: #CA2026;
  text-decoration: none;
}
button {
  background: #CA2026;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block !important; /* evita que se estire */
  width: auto !important; /* solo el ancho del texto */
  margin-left: 0; /* alineado a la izquierda */
  margin-right: auto; /* asegura posición a la izquierda */
}


/* Mapa */
.contacto-mapa {
  margin-top: 0rem; /* 🔽 bajado un poco */
}

.contacto-mapa iframe {
  width: 100%;
  height: 467px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Responsivo */
@media (max-width: 900px) {
  .contacto-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .contacto-mapa {
    margin-top: 1rem;
  }

  .contacto-mapa iframe {
    height: 280px;
  }
}

