.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15) !important;
}

.card-img-container {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .card-img {
  transform: scale(1.05);
}

.card-overlay {
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .card-overlay {
  opacity: 1;
}

.bg-gradient-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.transition-all {
  transition: all 0.3s ease;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }

  .card-img-container {
    height: 140px;
  }

  .card-body {
    padding: 1rem !important;
  }
}

/* Eliminar espacios innecesarios */
.card-body {
  flex: 1;
}

.card-text {
  line-height: 1.4;
}

/* .hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.contact-section {
  background: var(--gradient);
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
  background: var(--gradient);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.card-img-container {
  height: 220px;
  overflow: hidden;
}

.card-img {
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
} */

/* .service-card:hover .card-img {
  transform: scale(1.05);
} */

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.product-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: white;
  margin-bottom: 30px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 77, 246, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

:root {
  --accent: #0d6efd; /* Color azul de Bootstrap por defecto */
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #3f69ff 0%, #0027a7 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  border-radius: 20px;
  margin: 5rem 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn-cta {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  background: white;
  color: #3f69ff;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.calculator-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

/* Feature Cards */
.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #3f69ff 0%, #0027a7 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(63, 105, 255, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: linear-gradient(135deg, #3f69ff 0%, #0027a7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(63, 105, 255, 0.3);
}

.feature-title {
  color: #2d2d3a;
  position: relative;
  padding-bottom: 8px;
}

.feature-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #3f69ff 0%, #0027a7 100%);
  border-radius: 2px;
}

.file-badge {
  display: inline-block;
  padding: 4px 12px;
  margin: 2px;
  background: rgba(63, 105, 255, 0.1);
  color: #3f69ff;
  border: 1px solid rgba(63, 105, 255, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.file-badge:hover {
  background: #3f69ff;
  color: white;
  transform: translateY(-1px);
}

.time-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
  color: white;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.pricing-info {
  text-align: left;
  margin: 0 auto;
  max-width: 160px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-item:last-child {
  border-bottom: none;
}

.service-type {
  font-size: 0.85rem;
  color: #6c757d;
}

.price-value {
  font-weight: 700;
  color: #3f69ff;
  font-size: 0.9rem;
}

.location-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.location-text {
  font-size: 0.9rem;
  color: #6c757d;
}

.location-place {
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-card {
    padding: 1.5rem !important;
    margin-bottom: 1rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .pricing-info {
    max-width: 140px;
  }

  .time-badge {
    font-size: 1rem;
    padding: 6px 14px;
  }
}

@media (max-width: 576px) {
  .col-6 {
    width: 100% !important;
  }

  .feature-card {
    margin-bottom: 1.5rem;
  }
}
