/*
Theme name: Ecomarket Theme
Author: Felipe Garces
Description: Plantilla theme personalizable
version: 1.0.0
*/

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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1; 
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}




/* 
HEADER 
*/

header {
    background-color: #ffffff;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Ajuste cuando la barra de administración está activa */
body.admin-bar header {
    top: 32px; 
}

nav ul li a {
    color: #171717;
    text-decoration: none;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: #4E967E;
    border-bottom: solid 1px #4E967E;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}





/* 
HERO
*/

.cta {
  display: inline-block;
  background-color: #2e7d32;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.cta:hover {
  background-color: #034642;
  transform: scale(1.05);
}

.hero {
  background-image: url("assets/img/fondohero.png");
  background-size: cover;
  background-position: center -250px;
  min-height: 100vh;
  padding: 160px 200px 200px 200px; 
  display: flex;
  align-items: flex-start; 
  justify-content: left;
}

.hero-contenido {
  max-width: 750px;
  text-align: left;
}

.hero-eyebrow {
  font-size: 0.82rem;
  color: var(--verde-medio);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
}

.hero-acciones {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 20px; 
}

/* Estilo para el eyebrow NUEVA COLECCIÓN */
.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;

  /* Ajuste de color */
  color: #ffffff; 
}





/* Sección de características */
.caracteristicas {
  background-color: #00413D; 
  padding: 80px 40px;
  color: #fff;
}

.caracteristicas-contenido {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.caracteristicas-titulo {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #c8e6c9; /* verde claro para contraste */
}

.caracteristicas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.caracteristica {
  background-color: rgba(255, 255, 255, 0.05); 
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.caracteristica:hover {
  transform: translateY(-8px);
}

/* Íconos de caracteristicas */
.caracteristica img {
  width: 150px;   
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Títulos de caractetisticas*/
.caracteristica h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #c8e6c9;
}

/* Descripción de caracteristicas */
.caracteristica p {
  font-size: 1rem;
  color: #eee;
  line-height: 1.5;
}


/* Catálogo */
.catalogo {
  background-color: #f9f9f9;
  padding: 80px 40px;
}

.catalogo-contenido {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.catalogo-titulo {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 40px;
}

.catalogo-item {
  position: relative; 
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.catalogo-item:hover {
  transform: translateY(-8px);
}

.catalogo-item img {
  width: 100%;
  height: auto;
  display: block;
}

.catalogo-texto {
  position: absolute;
  bottom: 20px;
  left: 20px;          
  max-width: 60%;      
  text-align: left;    
  color: #000;         
  padding: 10px 15px;
  border-radius: 8px;

}

.catalogo-texto h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #000; 
}

.catalogo-texto p {
  font-size: 1rem;
  color: #000; 
}

/* Responsivo: en pantallas pequeñas se ajusta a 1 columna */
@media (max-width: 768px) {
  .catalogo-grid {
    grid-template-columns: 1fr;
  }
}

/* productos destacados */
.productos {
  padding: 90px 60px;
  background-color: #ffffff;
  text-align: center;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.producto-card {
  background: var(--blanco);
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--verde-borde);
  transition: box-shadow 0.25s, transform 0.25s;
  text-align: center;
}

.producto-card:hover {
    box-shadow: 0 10px 32px rgba(32, 32, 32, 0.14);
    transform: translateY(-4px);
}

.producto-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;    
    margin-bottom: 0;
}

.producto-card-body {
    padding: 16px 24px; 
    background-color: #f0f0f0;
}

.producto-card h3 {
    font-size: 1.05rem;
    color: var(--verde-oscuro);
    margin-bottom: 8px;
}

.productos h2 {
  margin-bottom: 40px; 
}

.producto-card p {
    font-size: 0.88rem;
    color: var(--texto-muted);
    line-height: 1.65;
}

.sin-productos {
    font-size: 0.92rem;
    color: var(--texto-muted);
    font-style: italic;
}



/* hero impacto ambiental */
.hero-ecologico {
  position: relative;
  width: 100%;
  margin: 0;
  background: url('assets/img/Banner 2 1600x600.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 0;
  color: #fff;
  text-align: center;
}

.hero-ecologico .hero-overlay {
  background-color: rgba(0, 0, 0, 0);
  display: block;
  width: 100%;
  padding: 40px 60px;
  border-radius: 0;
  box-sizing: border-box;
}

.hero-ecologico h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero-ecologico p {
font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;       
  white-space: normal;    
  margin: 0 auto;          
  text-align: center;      
}
  
/* FOOTER */

footer {
  background-color: #111; 
  color: #eee; 
  padding: 60px 40px 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr; 
  gap: 40px;
  margin-bottom: 40px;
}

/* Columna 1: Marca y descripción */

.footer-brand {
  max-width: 300px;
}

.footer-brand .site-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}

/* Columna 2 y 3: Navegación y contacto */
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li p {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: #4E967E; 
}

/* Redes sociales */
.redes-sociales a {
 display: inline-block;
  width: 62px;   /* tamaño del ícono */
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 8px;
  text-indent: -9999px;
  overflow: hidden;
  position: relative;
  top: -60px;    
}

/* Ícono de Instagram */
.redes-sociales a.icon-instagram {
  background-image: url("assets/img/instagram.png");
}

/* Ícono de Facebook */
.redes-sociales a.icon-facebook {
  background-image: url("assets/img/facebook.png");
}

/* Hover */
.redes-sociales a:hover {
  transform: scale(1.1);
}

/* Barra inferior */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
  margin: 0 8px;
}

.footer-bottom a:hover {
  color: #4E967E;
}

/* Íconos de pago o imágenes genéricas */
.footer-bottom img {
  height: 28px;
  margin: 0 6px;
}


/* CONTACTO */

.hero-contacto {
  position: relative;
  width: 100%;
  min-height: 600px; 
  background: url("assets/img/herocontacto.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 120px; 
}

.page-title {
  font-size: 2.5rem;
  text-align: center;
  margin: 160px 0 40px; 
  color: #111; 
}

.hero-contacto-overlay {
  background-color: rgba(0,0,0,0.4); 
  padding: 40px;
  border-radius: 8px;
}

.hero-contacto .page-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-contacto-desc {
  font-size: 1.2rem;
  color: #eee;
}

/* Grid de contacto */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 40px;
  margin-top: 40px;
}

/* Columna izquierda */
.contacto-info {
  padding-left: 250px; 
}

.contacto-info h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #111;
}

.contacto-info p {
  margin-bottom: 20px;
  color: #333;
  font-size: 1rem;
}

/* Columna derecha con imagen */
.contacto-imagen {
  text-align: center;
  width: 100%;         
  min-height: 400px;    
  display: flex;        
  align-items: center;
  justify-content: center;
  padding: 20px;        
}

.contacto-imagen img {
  max-width: 90%;      
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.contacto-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Ajuste más amplio para el cuadro de mensaje */
#wpforms-62 .wpforms-field textarea {
  width: calc(100% - 40px); 
  margin-right: 20px;       
  padding: 14px 18px;       
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  min-height: 180px;
}
/* SOBRE NOSOTROS */

/* Hero Sobre Nosotros */
.hero-sobre-nosotros {
  position: relative;
  width: 100%;
  min-height: 500px; 
  background: url("assets/img/herosobrenosotros.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

/* TEXTOS 1 */

.sobre-nosotros-texto {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px 40px;
  display: flex;
  flex-direction: column; 
  gap: 30px;
}

.sobre-nosotros-texto h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #111;
  text-align: left; 
  font-weight: 600;
}

.sobre-nosotros-texto .parrafos {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 40px;
}

.sobre-nosotros-texto .columna p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

.hero-sobre-nosotros-secundario {
  position: relative;
  width: 100%;                
  min-height: 500px;          
  background: url("assets/img/crew.png") no-repeat center center;
  background-size: cover;     
  display: flex;
  align-items: center;        
  justify-content: center;    
  text-align: center;
  color: #fff;                
  margin-top: 60px;           
}

.nuestra-historia {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px;
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.nuestra-historia {
  max-width: 1200px;
  margin: 120px auto;   
  padding: 40px;
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.historia-imagen {
  width: 100%;
  min-height: 600px; 
  background: url("assets/img/empleados.png") no-repeat center center;
  background-size: cover;
  border-radius: 8px; 
}

.historia-texto h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #111;
  text-align: left;
}

.historia-texto h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #555;
  font-weight: 500;
}

.historia-texto p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

.logos-empresas {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.logo {
  width: 100%;
  height: 120px; 
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; 
}

/* Cada logo con su propia imagen */
.logo1 {
  background-image: url("assets/img/logonotfound.png");
}

.logo2 {
  background-image: url("assets/img/logonotfound.png");
}

.logo3 {
  background-image: url("assets/img/logonotfound.png");
}

.logo4 {
  background-image: url("assets/img/logonotfound.png");
}

.logo5 {
  background-image: url("assets/img/logonotfound.png");
}


/* =========================
   HEADER RESPONSIVO Mobil
   ========================= */

@media screen and (max-width: 480px) {
header {
  flex-direction: column;       
  align-items: center;         
  justify-content: center;      
  text-align: center;           
  padding: 10px 16px;           
  margin: 0 auto;               
  max-width: 100%;              
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: center;          
  }

  nav ul li {
    width: auto;                  
  }

  nav ul li a {
    display: block;
    width: 100%;
    padding: 8px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    text-align: center;           
    font-size: 0.8rem;   
  }
}


/* =========================
   HERO RESPONSIVO mobil
   ========================= */


@media screen and (max-width: 480px) {
  .hero {
    margin-top: 130px;
    padding: 50px 32px 150px 32px;
    background-position: 25% center; 
    background-repeat: no-repeat;    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero-contenido {
max-width: 95%;
  margin: 70px 0 0 0;
  padding-left: 20px;
  text-align: left;
  transform: translate(-110px, -30px) !important; 
}

/* Eyebrow */
.hero-eyebrow {
  font-size: 0.8rem;
  margin-bottom: 10px;
  text-align: left;
}

/* Título */
section.hero h1 {
  font-size: 1.7rem;
  line-height: 1.35;
  margin-bottom: 12px;
  text-align: left;
  white-space: nowrap;      
}

/* Descripción */
.hero-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 22px;
  text-align: left;
}

/* Párrafo */
.hero p {
  text-align: left;
  max-width: 100%;
  line-height: 1.45;
  margin-top: 8px;
  font-size: 0.95rem;
}

/* Botones */
.hero-acciones {
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 24px;
}

.cta {
  padding: 12px 22px;
  font-size: 0.95rem;
  border-radius: 6px;
}



/* =========================
   Productos destacados RESPONSIVO mobil
   ========================= */
@media screen and (max-width: 480px) {
  .productos {
    padding: 60px 70px; 
  }

  .productos-grid {
    grid-template-columns: 1fr; 
    gap: 20px; 
  }

  .producto-card img {
    height: 280px; 
  }

  .producto-card-body {
    padding: 12px 16px;
  }

  .producto-card h3 {
    font-size: 1rem;
  }
}

/* =========================
   FOOTER RESPONSIVO mobil
   ========================= */
@media screen and (max-width: 480px) {
  footer {
    padding: 40px 20px 16px;
    text-align: center; 
  }

  .footer-grid {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .redes-sociales {
    justify-content: center; 
    gap: 16px;
    position: relative;
    top: 0; 
    margin-top: 12px;
  }

  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .footer-col ul li a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 16px;
    font-size: 0.8rem;
    text-align: center;
  }
  
}

.redes-sociales {
    justify-content: center;
    top: 60px; 
    justify-content: center; 
    margin-top: 20px; 
  }

/* Responsivo para móviles hasta 480px formulario */
@media screen and (max-width: 480px) {
  .contacto-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .contacto-info {
    order: 1;
  }

  .contacto-formulario {
    order: 2;
    width: 100%;
  }

  /* Campos WPForms */
  .contacto-formulario .wpforms-form input[type="text"],
  .contacto-formulario .wpforms-form input[type="email"],
  .contacto-formulario .wpforms-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 6px;
    box-sizing: border-box;
  }

  /* Botón WPForms */
  .contacto-formulario .wpforms-form button.wpforms-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--verde-medio);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
  }
}

  /* =========================
   SOBRE NOSOTROS RESPNSIVO
   ========================= */

   @media screen and (max-width: 480px) {
  .hero-sobre-nosotros {
    min-height: 320px; 
    margin-top: 80px;  
    background-position: center;
  }

  .sobre-nosotros-texto {
    margin: 40px auto;
    padding: 16px 20px;
    gap: 20px;
  }

  .sobre-nosotros-texto h2 {
    font-size: 1.4rem; 
    text-align: center; 
  }

  .sobre-nosotros-texto .parrafos {
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  .sobre-nosotros-texto .columna p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center; 
  }

  .hero-sobre-nosotros-secundario {
    min-height: 320px;
    margin-top: 40px;
    background-position: center;
    padding: 20px;
  }

  .nuestra-historia {
    margin: 60px auto;
    padding: 20px;
  }

  .historia-grid {
    grid-template-columns: 1fr; 
    gap: 24px;
  }

  .historia-imagen {
    min-height: 280px; 
      background-size: cover; 
    border-radius: 6px; 
    margin-top: 20px; 
  }

  .historia-texto h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .historia-texto h3 {
    font-size: 1.1rem;
    text-align: center;
  }

  .historia-texto p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
  }

  .logos-empresas {
    margin: 40px auto;
    padding: 20px;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px;
  }

  .logo {
    height: 80px; 
  }
}

 

 /* =========================
   HERO TABLET 768PX
   ========================= */


@media screen and (max-width: 768px) {
  .hero {
    background-image: url("assets/img/fondohero.png");
    background-position: center -80px;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 80vh;
    padding: 100px 60px 100px 60px; 
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-contenido {
    max-width: 480px;
    margin-right: 120px;
    margin-top: -20px; 
    text-align: justify;
    text-justify: inter-word;
  }

  .hero-eyebrow {
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-align: left;
  }

  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: left;
  }

  .hero-desc {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: #eee;
    text-align: justify;
    text-justify: inter-word;
  }

  .hero-acciones {
    flex-direction: row;
    gap: 14px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px; 
  }

  .cta {
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 5px;
  }

  /* CARACTERISTICAS RESPONSIVO TABLET*/

  .caracteristicas {
    margin-top: -80px; 
    padding: 60px 30px;
  }

  .caracteristicas-titulo {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .caracteristicas-grid {
    gap: 30px;
  }
}

/* PRODUCTOS DESTACADOS RESPONSIVO TABLET */

  .productos {
    padding: 70px 40px; 
    text-align: center;
  }

  .productos-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px; 
    max-width: 700px; 
  }

  .producto-card img {
    height: 320px; 
    object-fit: cover;
  }

  .producto-card-body {
    padding: 14px 20px; 
  }

  .producto-card h3 {
    font-size: 1rem; 
    margin-bottom: 6px;
  }

  .producto-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .productos h2 {
    font-size: 1.8rem; 
    margin-bottom: 32px;
  }
}


/* CONTACTO RESPONSIVO TABLET */

@media screen and (max-width: 768px) {
  .contacto-grid {
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
    margin-top: 40px;
  }

  .contacto-info {
    padding-left: 100px; 
  }

  .contacto-info h2 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .contacto-info p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

.redes-sociales {
    display: flex;
    justify-content: left;   
    margin-left: -15px;         
  }

  .redes-sociales a {
    margin-top: 35px;          
  }
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* ✅ dos columnas balanceadas */
    gap: 32px;                        /* ✅ espacio entre columnas */
    padding: 0 32px;                  /* ✅ aire lateral más amplio */
    box-sizing: border-box;
    align-items: flex-start;
  }

  .contacto-info {
    order: 1;                         /* ✅ datos a la izquierda */
  }

  .contacto-formulario {
    order: 2;                         /* ✅ formulario a la derecha */
    width: 100%;
  }

  /* Ajuste de los campos del formulario */
  .contacto-formulario .wpforms-field input,
  .contacto-formulario .wpforms-field textarea {
    width: 100%;
    padding: 14px 18px;               /* ✅ espacio interno cómodo */
    box-sizing: border-box;
  }
}



/* Responsivo: en pantallas pequeñas se ajusta a 1 columna */
@media (max-width: 768px) {
  .catalogo-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   HERO LAPTOP 1024PX
   ========================= */


   @media screen and (max-width: 1024px) {
 .hero {
    background-image: url("assets/img/fondohero.png");
    background-position: center -100px; 
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 88vh; 
    padding: 160px 120px 60px 120px; 
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-contenido {
    max-width: 650px;
    text-align: left;
  }

  .hero-eyebrow {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1.25;
    margin-bottom: 18px;
  }

.hero-desc {
  font-size: 1.1rem;
    margin-bottom: 26px;
    color: #ddd;
    text-align: justify;      
    text-justify: inter-word; 
    max-width: 85%;           
}

  .hero-acciones {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 18px;
  }

  .cta {
    padding: 10px 22px;
    font-size: 0.95rem;
    border-radius: 5px;
  }

  /* CARACTERISTICAS LAPTOP 1024 */
  .caracteristicas {
    margin-top: -100px; 
  }

  .redes-sociales {
    display: flex;
    justify-content: left;   
    margin-left: -15px;          
  }

   /* FOOTER LAPTOP 1024 */

  .redes-sociales a {
    margin-top: 35px;         
  }
}







