.zoho-crm-plus {
  background-color: #ffffff;
  color: #1a1a1a;
  text-align: center;
  padding: 80px 20px;
}

.zoho-crm-plus .container {
  max-width: 900px;
  margin: 0 auto;
}

.zoho-crm-plus h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f2940;
  margin-bottom: 10px;
}

.zoho-crm-plus h2 span {
  background-color: #1a4d8f;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}

.zoho-crm-plus .subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.zoho-crm-plus .logo-zoho {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.zoho-crm-plus .logo-zoho img {
  max-height: 120px;
  transition: transform 0.3s ease;
  border-radius:20px
}

.zoho-crm-plus .logo-zoho img:hover {
  transform: scale(1.05);
}

.btn-zoho {
  background-color: #1a4d8f;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
      font-size: 18px;
}

.btn-zoho:hover {
  background-color: #163c72;
  transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 600px) {
  .zoho-crm-plus h2 {
    font-size: 1.5rem;
  }

  .zoho-crm-plus .logo-zoho {
    flex-direction: column;
    gap: 20px;
  }

  .zoho-crm-plus .logo-zoho img {
    max-height: 60px;
  }
}


/*SECCIÓN 2*/
.zoho-implementacion {
  background-color: #0a2e52;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

.zoho-implementacion h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.implementacion-texto {
  background-color: transparent;
  border: 1.5px solid #ffffff;
  border-radius: 8px;
  padding: 16px;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 50px;
}

.implementacion-imagen img {
        width: 69%;
    HEIGHT: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.implementacion-imagen img:hover {
  transform: scale(1.02);
}

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

  .implementacion-texto {
    font-size: 1rem;
    padding: 15px;
  }
}


/*CRM PLUS*/
/*ZOHO*/
.zoho-crm-plus2 {
  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-plus2 h2 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.zoho-crm-plus2 .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-plus2 {
  position: relative;
  /*background-color: #fff;  o el color de fondo que uses */
  padding: 60px 20px;
  overflow: hidden;
}

.zoho-crm-plus2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-5%);
  width: 300px;
  height: 300px;
  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;
}
img {
        max-width: 100%;
    height: auto;
}

/*CASOS DE EXITO*/
.casos-exito {
  background-color: #f4f4f4;
  color: #1a1a1a;
  text-align: center;
  padding: 80px 20px;
}

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

.casos-exito h2 {
  display: inline-block;
  background-color: #e42f2d;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 2px 60px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.exito-texto {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-style: italic;
}

.exito-imagen img {
  max-width: 55%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.exito-imagen img:hover {
  transform: scale(1.02);
}

/* Responsivo */
@media (max-width: 768px) {
  .casos-exito h2 {
    font-size: 1.5rem;
    padding: 8px 20px;
  }

  .exito-texto {
    font-size: 1rem;
  }
}

/*EVOLUCIÓN DIGITAL*/

.conexion-zoho {
  background: linear-gradient(to bottom, #0d2b57, #3366ff);
  color: #fff;
  text-align: center;
  padding: 130px 20px;
}

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

.conexion-zoho h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.conexion-zoho p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #ff7043;
  color: white;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #f45c2f;
  transform: translateY(-2px);
}

/* 🌐 Responsive */
@media (max-width: 768px) {
  .conexion-zoho {
    padding: 60px 20px;
  }

  .conexion-zoho h2 {
    font-size: 1.6rem;
  }

  .conexion-zoho p {
    font-size: 1rem;
  }

  .btn-whatsapp {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

/*QUIÉNES SOMOS*/
.seccion-quienes-somos {
  background-color: #f5f6f7;
  padding: 160px 20px;
}

.qs-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.qs-texto {
  flex: 1;
  color: #1a1a1a;
}

.qs-texto h2 {
  font-size: 2rem;
  color: #0d2b57;
  margin-bottom: 20px;
}

.qs-texto p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
      text-align: justify;

}

.qs-imagen {
  flex: 1;
  display: flex;
  justify-content: center;
}

.qs-imagen img {
  width: 100%;
  max-width: 430px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 🌐 Responsive */
@media (max-width: 900px) {
  .qs-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .qs-imagen img {
    max-width: 90%;
  }

  .qs-texto h2 {
    font-size: 1.7rem;
  }

  .qs-texto p {
    font-size: 1rem;
  }
}


/*LO QUE NOS IMPULSA*/

.seccion-impulsa {
  background-color: #fff;
  text-align: center;
  padding: 80px 20px;
}

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

.impulsa-container h2 {
  font-size: 2rem;
  color: #0d2b57;
  font-weight: 700;
  margin-bottom: 50px;
}

.impulsa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.impulsa-card {
  background-color: #f5f6f7;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impulsa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.impulsa-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.impulsa-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* 🌐 Responsive */
@media (max-width: 992px) {
  .impulsa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .impulsa-grid {
    grid-template-columns: 1fr;
  }

  .impulsa-card {
    padding: 25px 18px;
  }

  .impulsa-container h2 {
    font-size: 1.6rem;
  }
}

/*ENFOQUE*/
.seccion-enfoque {
  background-color: #2f67b2;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

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

.enfoque-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.enfoque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
}

.enfoque-card {
  background-color: #0787e0;
  border-radius: 10px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enfoque-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.enfoque-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffec80; /* amarillo suave para destacar */
  margin-bottom: 15px;
}

.enfoque-card h3 span {
  color: #ffec80;
}

.enfoque-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f5f5f5;
}

/* 🌐 Responsive */
@media (max-width: 992px) {
  .enfoque-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .enfoque-grid {
    grid-template-columns: 1fr;
  }

  .enfoque-card {
    padding: 25px 18px;
  }

  .enfoque-container h2 {
    font-size: 1.6rem;
  }
}


/*ALIANZA ZOHO*/
.seccion-alianza {
  background-color: #f5f6f7;
  text-align: center;
  padding: 80px 20px;
}

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

.alianza-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0d2b57;
  margin-bottom: 25px;
}

.alianza-container p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 40px;
}

.alianza-logo img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  border: 2px solid #c4d2ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alianza-logo img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 🌐 Responsive */
@media (max-width: 768px) {
  .alianza-container h2 {
    font-size: 1.7rem;
  }

  .alianza-container p {
    font-size: 1rem;
  }

  .alianza-logo img {
    max-width: 300px;
  }
}

/* ======= 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;
  }
}
.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;
}

/*CANALES / REDES SOCIALES*/
.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;
}
.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);
}