

    .titulo1 {
      font-size: 38px;
      margin-bottom: 5px;
      margin-top: 5px;
      font-weight: bold;
      text-align: center;
    }
    .titulo2{
        font-size: 20px;
 
      font-weight: bold;
    
    }
    .box div{
        text-align: justify;
    }
  section.two-box-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .box {
    flex: 1 1 45%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .box p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
  }
  .sangria{
    text-indent: 10px;
  }

  @media (max-width: 768px) {
    section.two-box-section {
      flex-direction: column;
    }

    .box {
      flex: 1 1 100%;
    }
  }
  /* ////////////////////////////////////////////////////////////////////////////// */
  .benefits-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
}

.benefit-box {
  flex: 1 1 22%;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

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

.benefit-box img {
  max-width: 80px;
  margin-bottom: 15px;
}

.benefit-box p {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  .benefit-box {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .benefit-box {
    flex: 1 1 100%;
  }
}

.section-imagen-texto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px 10px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.imagen-lado {
  flex: 1 1 45%;
  text-align: center;
}

.imagen-lado img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.texto-lado {
  flex: 1 1 45%;
  text-align: justify;
}

.texto-lado h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.texto-lado p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-imagen-texto {
    flex-direction: column;
    text-align: center;
  }

  .texto-lado h2 {
    font-size: 26px;
  }

  .texto-lado p {
    font-size: 16px;
  }
}


/* ____________________________ aparatado de reseller */

    .reseller-section {
  background-color: #1d52a2; /* Azul fuerte */
  color: white;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

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

.reseller-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.reseller-subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
  font-style: italic;
}

.reseller-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.reseller-column {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
}

.reseller-column h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.reseller-column p {
  font-size: 14px;
  margin-bottom: 15px;
}

.reseller-column ul {
  list-style: none;
  padding-left: 0;
}

.reseller-column ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .reseller-columns {
    flex-direction: column;
  }

  .reseller-column {
    flex: 1 1 100%;
  }

  .reseller-title {
    font-size: 24px;
  }
}