.modules-section {
	padding: 60px 20px;
	background-color: var(--bg-light);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-soluciones {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.section-title {
	color: var(--primary-color);
	font-size: 2.5rem;
	margin-bottom: 10px;
	font-weight: bold;
}

.section-subtitle {
	color: #666;
	margin-bottom: 40px;
	text-align: center;
}

/* Configuración de la Grilla */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Diseño de las Tarjetas */
.module-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, border-top 0.3s ease;
    border-top: 4px solid transparent;
}

.module-card:hover {
    transform: translateY(-10px);
}

.module-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.module-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.module-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}












/* CONTENEDOR GENERAL */

.ai-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* izquierda */
.ai-card {
  flex: 0 0 55%;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

/* derecha */
.ai-image {
  flex: 0 0 45%;
  display: flex;
  justify-content: flex-end; /* 👈 esto la pega a la derecha */
}

.ai-image img {
  width: 100%;
  max-width: 620px;
}






/* LOGO */
.ai-brand {
  width: 40%;
  background: linear-gradient(135deg, #eef2ff, #f3f4f6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ai-brand img {
  width: 90%;
  height: auto;
}

/* CONTENIDO */
.ai-content {
  width: 60%;
  padding: 30px;
}

.novedad-tag {
	display: inline-block;
	background: #1f3a5f;
	color: white;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 10px;
	font-weight: 800; 
	margin-bottom: 12px;
	letter-spacing: 2px; 
	text-transform: uppercase;
}

/* .ai-content h2 {
  margin: 0;
  font-size: 26px;
  color: #111827;
} */





/* IMAGEN */



.ai-image img:hover {
  transform: translateY(-5px);
}

/* 📱 RESPONSIVE */
@media (max-width: 900px) {
  .ai-section {
    flex-direction: column;
  }

  .ai-card,
  .ai-image {
    width: 100%;
  }

  .ai-card {
    flex-direction: column;
  }

  .ai-brand {
    width: 100%;
    padding: 30px;
  }

  .ai-content {
    width: 100%;
  }

  .ai-brand img {
    width: 120px;
  }

  .ai-content h2 {
    font-size: 22px;
  }
}






/* contenedor */
.bullets {
  list-style: none; /* quitamos bullets default */
  padding: 0;
  margin: 15px 0 0 0;
}

/* cada item */
.bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #374151;
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
}



/* bullet personalizado */
.bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #1f3a5f;
  font-weight: bold;
}











.table-preview {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  background: #fff;
}

.table-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  padding: 10px 15px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  border-radius: 50%;
}

.title {
  margin-left: 10px;
  font-size: 13px;
  color: #6b7280;
}

.table-preview img {
  width: 100%;
  display: block;
}

.descripcion {
	text-align: justify;
}



