/* HERO */
.hero-solution 
{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.hero-solution .text-content 
{
  flex: 1 1 500px;
}

.hero-solution .text-content p
{
  width: 80%;
}

.hero-solution h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.hero-solution p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.hero-solution .btn-primary {
  display: inline-block;
  background-color: #F54D29;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.hero-solution .btn-primary:hover {
  background-color: #08437f;
}

.hero-solution .hero-image 
{
  text-align: center;
}

.hero-solution .hero-image img 
{
  max-width: 250px;
  border-radius: 12px;
}

/* BENEFICIOS */
.benefits 
{
  text-align: center;
}

.benefits h2 
{
  font-size: 2rem;
  margin-bottom: 2rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-grid article {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.benefit-grid i {
  font-size: 2rem;
  color: #F54D29;
  margin-bottom: 1rem;
}

.benefit-grid h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.benefit-grid p {
  color: #555;
  font-size: 0.95rem;
}

/* USOS */
.use-cases {
  text-align: center;
  margin-bottom: 2rem;
}

.use-cases h2 {
  font-size: 2rem;
  margin-top: 45px;
  margin-bottom: 1rem;
}

.use-cases p {
  margin-bottom: 1.5rem;
  color: #555;
}

.use-list {
  list-style-type: none;
  display: inline-block;
  text-align: left;
}

.use-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.use-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #F54D29;
}

/* CTA */
.cta-section {
  background-color: #F54D29;
  color: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.cta-section h2 
{
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-section .btn-primary {
  background: #fff;
  color: #0a66c2;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
  background: #f2f6ff;
}

/* RESPONSIVE */
@media (max-width: 768px) 
{
  .hero-solution 
  {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-solution .text-content 
  {
    flex: 1 1 100%;
  }

  .hero-solution .text-content p
  {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-solution .hero-image {
    flex: 1 1 100%;
  }
}

.rubros {
  padding: 40px 20px;
  background-color: #f9fafb;
  text-align: center;
}

.rubros h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.rubros p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.rubros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.rubro-card {
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rubro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.icon {
  width: 48px;
  height: 48px;
  stroke-width: 1.8;
  color: #F54D29;
  margin-bottom: 16px;
}

.rubro-card h3 {
  margin: 8px 0;
  font-size: 1.2rem;
  color: #111;
}

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

@media (max-width: 768px) {
  .rubros {
    padding: 60px 15px;
  }

  .rubros h2 {
    font-size: 1.6rem;
  }

  .icon {
    width: 40px;
    height: 40px;
  }
}