.innovation-section {
  width: 100%;
  margin-top: 3rem;
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%);
  display: flex;
  justify-content: center;
  font-family: "Inter", Arial, sans-serif;
}

.innovation-section .container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.innovation-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.innovation-item.reverse {
  flex-direction: row-reverse;
}

.innovation-item .text {
  flex: 1;
  min-width: 320px;
  max-width: 550px;
}

.innovation-item .text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #1f1f1f;
  position: relative;
}

.innovation-item .text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.innovation-item .text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.2rem;
}

.innovation-item .image {
  flex: 1;
  min-width: 320px;
  max-width: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.innovation-item .image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.innovation-item .image img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

@media (max-width: 992px) {
  .innovation-item,
  .innovation-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .innovation-item .text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .innovation-item .text,
  .innovation-item .image {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .innovation-section {
    padding: 4rem 1rem;
  }

  .innovation-item .text h2 {
    font-size: 1.7rem;
  }

  .innovation-item .text p {
    font-size: 0.95rem;
  }
}

.tools-section {
  width: 100%;
  padding: 3rem 1.5rem;
  font-family: "Inter", Arial, sans-serif;
  display: flex;
  justify-content: center;
}

.tools-section .container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.tools-header {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.tools-header h2 {
  font-family: "DM Sans", Sans-serif;
  color: #474752;
  font-size: 50px;
  font-weight: 700;
}

.tools-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* Contenedor de tarjetas */
.tools-cards {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 350px;
  max-width: 450px;
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.card .icon {
  margin-bottom: 1rem;
}

.card .icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #1f1f1f;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.2rem;
}

.card .btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  background: transparent;
  color: var(--color);
  border: 2px solid var(--color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.card .btn:hover {
  background: var(--color);
  color: #fff;
  box-shadow: 0 5px 15px var(--color2);
}

@media (max-width: 992px) {
  .tools-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .tools-section {
    padding: 4rem 1rem;
  }

  .tools-header h2 {
    font-size: 2rem;
  }

  .tools-header p {
    font-size: 1rem;
  }

  .card h3 {
    font-size: 1.3rem;
  }

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

  .card .icon img {
    width: 50px;
    height: 50px;
  }
}

.card .icon {
  margin-bottom: 1rem;
  font-size: 3rem;
  color: var(--color);
}

.card .icon i {
  display: inline-block;
}

@media screen and (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {
  section {
    margin: 0 2rem !important;
  }
}