@import url(general.css);

:root {
    --color-base: rgba(0, 10, 20, 1); /* #000A14 */
    --color-claro: rgba(15, 25, 35, 1); /* #0F1923 */
    --color-intermedio: rgba(30, 45, 60, 1); /* #1E2D3C */
    --color-complementario-calido: rgb(65, 200, 209); /* #C85A3C */
    --color-secundario-frio: rgba(0, 80, 120, 1); /* #005078 */
  
    /* Transparencias útiles */
    --color-base-semitransparente: rgba(0, 10, 20, 0.5);
    --color-claro-semitransparente: rgba(15, 25, 35, 0.5);
  }
  
  /* Planes */
  section.pricing {
    background: linear-gradient(to top, white, rgba(0, 10, 20, 1));
  }
  
  
  .pricing .card {
    border: none;
    border-radius: 1rem;
    transition: all 0.2s;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
  }
  
  .pricing hr {
    margin: 1.5rem 0;
  }
  
  .pricing .card-title {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    letter-spacing: .1rem;
    font-weight: bold;
  }
  
  .pricing .card-price {
    font-size: 3rem;
    margin: 0;
  }
  
  .pricing .card-price .period {
    font-size: 0.8rem;
  }
  
  .pricing ul li {
    margin-bottom: 1rem;
  }
  
  .pricing .text-muted {
    opacity: 0.7;
  }
  
  .pricing .btn {
    font-size: 80%;
    border-radius: 5rem;
    letter-spacing: .1rem;
    font-weight: bold;
    padding: 1rem;
    opacity: 0.7;
    transition: all 0.2s;
    background-color: var(--color-base);
    color: white;
  }

  
  
  /* Hover Effects on Card */
  
  @media (min-width: 992px) {
    .pricing .card:hover {
      margin-top: -.25rem;
      margin-bottom: .25rem;
      box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
    }
  
    .pricing .card:hover .btn {
      opacity: 1;
    }
  }
  



  /* Servicios */


  /* Fondo degradado para la sección "Nuestros Servicios" */
.services-section {
  background: #e9ecef;
  color: var(--color-base);
}

.services-section h2,
.services-section p {
  color: white;
}

/* Opcional: Ajustes para las tarjetas */
.services-section .border {
  background: white;
}


.services-section h2,
.services-section p {
  color: var(--color-base);
  text-align: center;
  font-size: 2.5rem;
}

.services-section p {
  color: var(--color-base);
  text-align: center;
  font-size: 1.1rem;
}
/* Estilo para las tarjetas */
.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 30px;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card i {
  font-size: 3rem;
  color: #2980b9;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Efecto hover sobre el icono */
.service-card:hover i {
  transform: translateY(-10px);
  color: #e74c3c;
}

.service-card h5 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover h5 {
  color: #16a085; /* Cambio de color en hover */
}

.service-card p {
  font-size: 1rem;
  color: #7f8c8d;
  margin-top: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.service-card:hover p {
  opacity: 1;
  color: #34495e;
}

/* Efecto de deslizamiento desde abajo */
.service-card:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(0, 204, 255, 0.9), rgba(255, 204, 0, 0.9));
  opacity: 0;
  transition: opacity 0.3s ease, bottom 0.3s ease;
}

.service-card:hover:before {
  opacity: 1;
  bottom: 0;
}

/* Estilos de las tarjetas en móviles */
@media (max-width: 768px) {
  .service-card {
    padding: 1.5rem;
  }

  .service-card i {
    font-size: 2.5rem;
  }

  .service-card h5 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .service-card {
    padding: 1rem;
  }

  .service-card i {
    font-size: 2rem;
  }
}

