/* ======= ESTILOS GENERALES ======= */
body {
    margin: 0;
    /*font-family: 'Roboto', sans-serif;*/
font-family: 'Courier New', Courier, monospace;
    background-color: #0d1117;
    color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

header {
    background-color: #161b22;
}

/* ======= HEADER + MENÚ ======= */
.responsive-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.logo {
    width: 100%;
    /* text-align: center; */
    margin: 1px 12px -10px 9px; 
}

.logo img {
  display: inline-block; 
  max-width: 100%;      
  height: auto;
}


#logo {
    max-width: 100px;
    height: auto;
}

/* Menú (escritorio) */
.menu {
    flex: 2;
    display: flex;
    justify-content: flex-end;
}

.menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
}

.menu a.white  { color: rgba(84, 86, 84, 0.773) !important; font-weight: bold; }
.menu a.green  { color: rgb(0 81 255) !important; font-weight: bold; }
.menu a.yellow { color: rgb(33 160 4) !important;font-weight: bold; }
.menu a.orange { color: rgb(255, 170, 1) !important; font-weight: bold; }

/* Botón hamburguesa oculto en escritorio */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

/* ======= RESPONSIVE (MÓVIL) ======= */
@media (max-width: 768px) {
    .responsive-header {
        flex-direction: column;
        align-items: center;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        background-color: #111;
    }

    .menu.open {
        display: flex;
    }

    .menu ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }

    #logo {
        /*height: 100px;*/
        margin-bottom: 10px;
    }
}

/* ======= HERO SECTION ======= */
.hero {
    background: linear-gradient(135deg, #0d1117, #1f6feb);
    padding: 175px 0;
    text-align: center;
}

.hero h2 {
        font-weight: bold;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2em;
    }
}

/* ======= SERVICIOS ======= */
#servicios {
    padding: 60px 20px;
    background-color: #f4f4f4;
    color: #000;
}

.titulo-seccion {
    text-align: center;
    font-size: 32px;
    color: #0d1117;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    margin-bottom: 5px;
}

.grid-servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.servicio {
    background-color: white;
    padding: 30px 20px 20px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   text-align: -webkit-center;
    position: relative;
    transition: transform 0.2s ease;
}

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

.icono-circular {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ccc;
    margin-bottom: 15px;
    
}

.icono-circular img {
    width: 100%;
    height: 100%;
    object-fit: cover;

  display: block;
  margin: auto;

    
}

.servicio h3 {
    font-family: 'Courier New', Courier;
    font-weight: bold;
    margin: 0 0 10px;
    color: #1e1e1e;
    font-size: 18px;
}

.servicio p {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    font-size: 15px;
    color: #555;
}

/* ======= QUIÉNES SOMOS ======= */
.nosotros {
    background-color: #0d1117;
    padding: 80px 0;
}

.nosotros-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nosotros-texto {
    flex: 1;
    min-width: 300px;
    /*padding-right: 40px;*/
}

.nosotros-texto h2 {
        text-align: center;

    font-size: 2em;
    margin-bottom: 15px;
    color: #ffffff;
}

.nosotros-texto p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #c9d1d9;
}

.resaltado {
    color: #58a6ff;
    font-weight: bold;
}

.nosotros-img {
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.quienes-somos {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.quienes-somos h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #002147; /* Azul oscuro */
}

.nosotros p {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nosotros h2 {
    font-size: 1.6rem;
  }

  .nosotros p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nosotros {
    padding: 1.5rem 1rem;
  }

  .nosotros h2 {
    font-size: 1.4rem;
  }

  .nosotros p {
    font-size: 0.95rem;
  }
}

/*SERVICIOS*/

.servicios-integraldev {
    
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
   text-align: justify;
  font-family: 'Courier New', Courier, monospace;
}

.servicios-integraldev p {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .servicios-integraldev p {
    font-size: 1rem;
    
  }
}

@media (max-width: 480px) {
  .servicios-integraldev {
    padding: 1.5rem 1rem;
  }

  .servicios-integraldev p {
    font-size: 0.95rem;
  }
}



/* Interacción */
.bot-saludo {
    width: 150px;
    display: block;
    margin: 0 auto 15px auto;
    animation: aparecer 0.5s ease-in-out;
}

.logo-intermitente {
    width: 300px;
    display: block;
    margin: 0 auto 15px auto;
    animation: parpadeo 5s infinite;
}

@keyframes parpadeo {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes aparecer {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.oculto {
    display: none;
}

/* ======= FORMULARIO ======= */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"],
input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #238636;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* ======= FOOTER ======= */
footer {
    background-color: #081019;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

  .whatsapp-icon {
    position: fixed;
    top: 20px;      
    right: 20px;    
    z-index: 1000;
  }

  .whatsapp-icon img {
    width: 30px;
    height: auto;
    transition: transform 0.3s;
  }

  .whatsapp-icon:hover img {
    transform: scale(1.1);
  }
/*FOOTER*/
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*margin-top: 10px;*/
  font-size: 20px;
}

.footer-info .social-media a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
}

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

.footer-info .location {
  margin-top: 5px;
}

/*FORMM*/

  /* Estilo del ícono dentro de la sección */
  .icono-formulario {
    display: inline-block;
    background-color: #004080;
    color: white;
    padding: 10px 140px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
  }

  .icono-formulario:hover {
    background-color: #0059b3;
  }

  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
  }

  .modal-contenido {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: fadeIn 0.3s;
  }

  .cerrar {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .cerrar:hover {
    color: #000;
  }

  @keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
  }
.icono-formulario img {
  width: 40px;
  height: auto;
}

.modal-contenido iframe {
  width: 100%;
  height: 60vh; /* o 100% si el modal tiene altura fija */
  border: none;
}
/*sección contacto*/


/* Redes sociales */
.registro-redes {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.registro-redes img {
  width: 24px;
  height: auto;
}

/*medios de pago*/
.modal-pago {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-contenido {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  text-align: center;
}

.cerrar-modal {
  color: #999;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

/*Authorized Zoho*/
.hero {
  position: relative; /* Importante para posicionar elementos internos */
}

.logo-superior {
  position: absolute;
  top: 50px; /* Mientras más pequeño, más arriba */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.logo-superior img {
  height: 70px;
  width: auto;
  margin: 40px;
}

/*ZOHO*/
.zoho-crm-plus {
  position: relative;
  background: rgb(254, 214, 0);
  padding: 100px 20px;
  text-align: center;
  color: #000000;
  overflow-x: hidden; /* CLAVE: oculta lo que está fuera horizontalmente */
}

.zoho-crm-plus h2 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.zoho-crm-plus .subtext {
  font-size: 1.2em;
  margin-bottom: 50px;
}

.logo-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.logo-grid .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.logo-card {
  position: relative; /* CLAVE */
  background: #fff;
  color: #222;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 110px;
  height: 140px;
  opacity: 0;
  transform: translateX(-120vw); /* MÁS FUERA DE LA PANTALLA */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.logo-card.show {
  opacity: 1;
  transform: translateX(0);
}

.zoho-crm-plus {
  position: relative;
  /*background-color: #fff;  o el color de fondo que uses */
  padding: 60px 20px;
  overflow: hidden;
}

.zoho-crm-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-5%);
  width: 300px;
  height: 300px;
 background-image: url('../img/id-zoho4.png'); /* reemplaza con tu logo de fondo */
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.logo-grid,
.logo-grid * {
  position: relative;
  z-index: 1;
}



/*confian en nosotros*/
.clientes-confian {
  background: #4b7bb136;
    /*background: linear-gradient(135deg, #00a9e0 0%, #004b8d 100%);*/
  padding: 50px;
  text-align: center;

}


.clientes-confian h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
}

.clientes-confian .subtext {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 50px;
}

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  /*gap: 40px;*/
  max-width: 700px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.cliente-logo {
  opacity: 0;
  transform: scale(0.95);
  animation: aparecer 0.8s forwards;
}

.cliente-logo img {
  max-width: 120px;
  height: auto;
  transition: transform 0.3s, filter 0.3s;
}

.cliente-logo:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Animación de entrada secuencial */
.cliente-logo:nth-child(1) { animation-delay: 0.1s; }
.cliente-logo:nth-child(2) { animation-delay: 0.10s; }
.cliente-logo:nth-child(3) { animation-delay: 0.20s; }
.cliente-logo:nth-child(4) { animation-delay: 0.30s; }
.cliente-logo:nth-child(5) { animation-delay: 0.40s; }
.cliente-logo:nth-child(6) { animation-delay: 0.50s; }

@keyframes aparecer {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*NUESTROS SERVICIO*/
.section-zoho {
  background: hsl(0, 0%, 100%);
 /* padding: 4rem 2rem;*/
  overflow: hidden;
}

.contenido-zoho {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.columna-texto {
  flex: 1 1 400px;
  color: #000000;
}

.columna-texto .titulo-seccion {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: hwb(0 0% 100%)
}

.columna-visual {
  position: relative;
  flex: 1 1 600px;
  min-height: 600px;
}

.card {
  position: absolute;
   cursor: pointer;
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
    transition: transform 0.3s ease;
}


.card:hover img {
  transform: scale(1.2); /* Agranda el ícono un 20% */
}
.card:hover {
  box-shadow: 0 0 20px rgba(86, 255, 1, 0.5);
}

.card.center img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.card.center {
  width: 140px;
  height: 140px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.card.center::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  /*background: rgba(86, 255, 1, 0.2);*/
  animation: pulse 3s infinite;
  z-index: -1;
  left: 0;
  top: 0;
}

@keyframes pulse {
  0% {
    transform: scale(2);
    opacity: 0.6;
  }
  50% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

/* Líneas animadas */
.lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

svg {
  width: 100%;
  height: 100%;
}

line {
  stroke: #56ff01;
  stroke-width: 2;
  stroke-dasharray: 10; /* 10px línea, 8px espacio */
  stroke-dashoffset: 5000;
  stroke-linecap: round;
  animation: dash-in 120s ease-out forwards;

}

@keyframes dash-in {
  to {
    stroke-dashoffset: 0;
  }
}

.card.center.glow {
  box-shadow: 0 0 25px 5px #56ff01;
  transition: box-shadow 0.3s ease-in-out;
}
.columna-visual {
  position: relative;
  width: 100%;
  height: 500px; /* o lo que necesites */
}

svg#lines-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

svg line {
  stroke: #00aaff;
  stroke-width: 2;
  opacity: 0.6;
}
.descripcion-servicio {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #000000;
  background-color: rgba(86, 255, 1, 0.1);
  padding: 1rem;
  border-left: 4px solid #56ff01;
  display: none;
  transition: opacity 0.3s ease;
}
.descripcion-servicio.visible {
  display: block;
}

.card[data-title] {
  position: relative;
}

.card[data-title]::after {
  content: attr(data-title);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.card[data-title]:hover::after {
  opacity: 1;
} 
#descripcion-servicio h3 {
  font-weight: bold;
  font-size: 18px;
  color: #222;
}
/*CONTACTO*/
.seccion-contacto {
  background: #ffffff;
  color: #000000;
  padding: 4rem 2rem;
}

.contenedor-contacto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.item {
  background-color: rgba(0,0,0,0.2);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(86, 255, 1, 0.1);
}

.item h3 {
  color: #000000;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 2rem;
}

.item ul {
  list-style: none;
  padding: 0;
}

.item ul li {
  margin-bottom: 0.5rem;
}

.item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.item a:hover {
  color: #020202;
}

.btn-agendar {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #3444d8;
  color: #ffffff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-agendar:hover {
  background-color: #323237f2;
}

.agendar-reunion {
  text-align: center;
}
.iconos-redes {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.iconos-redes img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.iconos-redes img:hover {
  transform: scale(1.2);
}

/*AGENDAR*/


.popup-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup-contenido {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 900px;
  background: white;
  border-radius: 10px;
  padding: 1rem;
}

.popup-contenido iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 8px;
}

.cerrar-popup {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/*FORM ZOHO*/
.popup {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.popup-contenido {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  margin: 5% auto;
  position: relative;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.popup .cerrar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
/*BOT IA*/
#faq-bot {
  background: #f5f8fb;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.bot-container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.bot-header {
  text-align: center;
  padding: 30px 20px 10px;
}

.bot-header .bot-icon {
  font-size: 3rem;
    display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.bot-header h2 {
  font-size: 1.8rem;
  margin: 10px 0;
  color: #002856;
}

.bot-header p {
  color: #555;
  font-size: 1rem;
}

.bot-box {
  padding: 20px;
  border-top: 1px solid #eee;
}

.suggestions {
  margin-bottom: 20px;
}

.suggestions p {
  font-weight: bold;
  margin-bottom: 10px;
}

.suggestion-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestion-buttons button {
  background: #e0ebf6;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.95rem;
}

.suggestion-buttons button:hover {
  background: #cfdfee;
}

.user-input {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.user-input input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.user-input button {
  background: #002856;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.user-input button:hover {
  background: #004080;
}

.bot-answer {
  margin-top: 20px;
  background: #eef2f6;
  border-left: 4px solid #002856;
  padding: 15px;
  border-radius: 8px;
  display: none;
}

.bot-message {
  font-size: 1rem;
}
.bot-icon img.bot-gif {
  height: 200px;
  object-fit: contain;
  /*border-radius: 50%;*/
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}



/* ============================= */
/* 🎯 RESPONSIVE INTEGRAL DEV EXTRA */
/* ============================= */

/* Sección cards circulares más pequeñas en móviles */
@media (max-width: 600px) {
  .card {
    width: 70px;
    height: 70px;
  }
  .card img {
    width: 40px;
    height: 40px;
  }
  .card.center {
    width: 100px;
    height: 100px;
  }
  .card.center img {
    width: 70px;
    height: 70px;
  }
}

/* Hero optimizado */
@media (max-width: 600px) {
  .hero {
    padding: 100px 20px;
  }
  .hero h2 {
    font-size: 1.8em;
  }
  .hero p {
    font-size: 1em;
  }
  .logo-superior img {
    height: 50px;
    margin: 20px;
  }
}

/* Sección de servicios en columna en móviles */
@media (max-width: 768px) {
  .contenido-zoho {
    flex-direction: column;
    align-items: center;
  }
  .columna-visual {
    min-height: 400px;
  }
}

/* Sección Nosotros en columna */
@media (max-width: 768px) {
  .nosotros-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .nosotros-img {
    order: -1;
  }
}

/* Contacto en columna en móviles */
@media (max-width: 768px) {
  .contenedor-contacto {
    grid-template-columns: 1fr;
  }
}
