/* ================================
   SECCIÓN TÉRMINOS Y CONDICIONES
================================= */
.terms-section {
  padding: 130px 32px 80px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Poppins', sans-serif;
  position: relative;
  min-height: 100vh;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header de la sección */
.terms-header {
  text-align: center;
  margin-bottom: 56px;
}

.terms-pill {
  display: inline-block;
  background: linear-gradient(135deg, #ff1744 0%, #e91e63 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255, 23, 68, 0.25);
}

.terms-heading {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.terms-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.terms-intro {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contenedor del contenido */
.terms-content {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Items individuales */
.terms-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.terms-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.terms-item:hover {
  transform: translateX(4px);
}

/* Número */
.terms-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff1744 0%, #e91e63 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 23, 68, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-item:hover .terms-number {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 23, 68, 0.35);
}

/* Texto */
.terms-text {
  flex: 1;
}

.terms-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.terms-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.terms-text a {
  color: #ff1744;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.terms-text a:hover {
  color: #e91e63;
  border-bottom-color: #e91e63;
}

/* CTA Section */
.terms-cta {
  margin-top: 64px;
  padding: 48px;
  background: linear-gradient(135deg, #ff1744 0%, #e91e63 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(255, 23, 68, 0.3);
}

.terms-cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.terms-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.terms-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.terms-cta-btn {
  display: block;
  transition: all 0.3s ease;
}

.terms-cta-btn img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.terms-cta-btn:hover img {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

/* CTA Buttons for Email/Phone */
.terms-cta-btn-email,
.terms-cta-btn-phone {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.terms-cta-btn-email {
  background: #fff;
  color: #ff1744;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.terms-cta-btn-email:hover {
  background: #f5f5f5;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.terms-cta-btn-phone {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fff;
}

.terms-cta-btn-phone:hover {
  background: #fff;
  color: #ff1744;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ================================
   RESPONSIVE - TÉRMINOS
================================= */
@media (max-width: 768px) {
  .terms-section {
    padding: 80px 20px 60px;
  }

  .terms-header {
    margin-bottom: 40px;
  }

  .terms-heading {
    font-size: 32px;
  }

  .terms-subtitle {
    font-size: 13px;
  }

  .terms-intro {
    font-size: 15px;
  }

  .terms-content {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .terms-item {
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .terms-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .terms-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .terms-text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .terms-cta {
    margin-top: 48px;
    padding: 32px 24px;
  }

  .terms-cta h2 {
    font-size: 24px;
  }

  .terms-cta p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .terms-cta-buttons {
    gap: 12px;
  }

  .terms-cta-btn img {
    height: 48px;
  }

  .terms-cta-btn-email,
  .terms-cta-btn-phone {
    padding: 14px 32px;
    font-size: 15px;
    display: block;
    text-align: center;
  }
}
