body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Backgrounds y Efectos */
.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Navegación */
.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #93c6dc !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #93c6dc;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

/* Hero Section */
.hero-section {
  min-height: 500px;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Cards con hover effect */
.hover-card {
  transition: all 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.card img {
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* Botones mejorados */
.btn {
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius: 8px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
  border-color: #93c6dc;
  color: #93c6dc;
}

.btn-outline-primary:hover {
  background-color: #93c6dc;
  border-color: #93c6dc;
  color: white;
}

/* Secciones */
section {
  scroll-margin-top: 70px;
}

/* Testimonios */
.blockquote {
  border-left: 4px solid #e6c3cb;
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* Formularios */
.form-control {
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #93c6dc;
  box-shadow: 0 0 0 0.2rem rgba(147, 198, 220, 0.25);
}

/* Footer */
footer {
  margin-top: auto;
}

footer a:hover {
  opacity: 0.8;
}

/* Animaciones suaves */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* WhatsApp flotante */
.btn.position-fixed {
  z-index: 1000;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
  }

  .display-3 {
    font-size: 2.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }
}

/* Tablas */
.table {
  border-radius: 8px;
  overflow: hidden;
}

.table thead {
  background-color: #f8f9fa;
}

.table tbody tr {
  transition: background-color 0.3s ease;
}

.table tbody tr:hover {
  background-color: #f8f9fa;
}

/* Colores de marca */
.text-primary-custom {
  color: #93c6dc;
}

.text-secondary-custom {
  color: #e6c3cb;
}

.bg-primary-custom {
  background-color: #93c6dc;
}

.bg-secondary-custom {
  background-color: #e6c3cb;
}

/* Sombras personalizadas */
.shadow-custom {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mejoras de accesibilidad */
a:focus,
button:focus {
  outline: 2px solid #93c6dc;
  outline-offset: 2px;
}

/* Carousel mejorado */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

/* Gradientes personalizados */
.gradient-primary {
  background: linear-gradient(135deg, #93c6dc 0%, #e6c3cb 100%);
}

.gradient-secondary {
  background: linear-gradient(135deg, #e6c3cb 0%, #93c6dc 100%);
}