body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #0f6ff5;
}

p {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* Clases de utilidad para fuentes */
.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

.font-nunito {
  font-family: "Nunito", sans-serif;
}

/* Clases adicionales para variaciones de peso */
.font-bold {
  font-weight: 700;
}

.font-regular {
  font-weight: 400;
}

/* Clase específica para títulos de sección */
.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #0f6ff5;
  margin-bottom: 1.5rem;
}

/* Estilos del Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(15, 111, 245, 0.8),
    rgba(15, 111, 245, 0.4)
  );
  backdrop-filter: blur(2px);
}

/* Animaciones de texto */
.slide-title {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease forwards;
}

.slide-description {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease 0.2s forwards;
  font-size: 1.25rem;
  margin: 1.5rem 0;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botón de WhatsApp */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #25d366;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease 0.4s forwards;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #1ea952;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Controles del Carousel */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0;
  transition: all 0.3s ease;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
  opacity: 0.8;
}

.carousel-item {
  transition: transform 0.8s ease;
}

/* Media Queries */
@media (max-width: 768px) {
  .slide-title {
    font-size: 2.5rem;
  }

  .slide-description {
    font-size: 1.1rem;
  }

  .whatsapp-btn {
    padding: 0.75rem 1.5rem;
  }
}
/* Estilos para las tarjetas de marcas */
.brand-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.brand-card:hover {
  transform: translateY(-5px);
}

.brand-logo {
  max-height: 80px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 768px) {
  .brand-card {
    height: 100px;
    padding: 1rem;
  }

  .brand-logo {
    max-height: 60px;
  }
}

.ofrecemos {
  padding: 3rem 0;
}

.offer-card {
  background: white;
  padding: 1.25rem 0.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0f6ff5;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(15, 111, 245, 0.1);
}

.offer-card:hover::before {
  transform: scaleX(1);
}

.offer-icon {
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: rgba(15, 111, 245, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.offer-card:hover .offer-icon {
  transform: scale(1.1);
  background: rgba(15, 111, 245, 0.2);
}

.offer-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.offer-text {
  font-family: "Nunito", sans-serif;
  color: #718096;
  margin-bottom: 0;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .offer-card {
    padding: 1rem 0.5rem;
  }

  .offer-icon {
    width: 45px;
    height: 45px;
    padding: 0.5rem;
  }

  .offer-title {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .offer-text {
    font-size: 0.75rem;
  }
}

.servicios {
  padding: 3rem 0;
  background-color: #f8f9fa;
}

.agenda-visita {
  padding: 3rem 0;
}

.indicadores {
  padding: 3rem 0;
  background-color: #f8f9fa;
}

.category-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.category-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.category-content {
  padding: 1.5rem;
}

.category-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #656c76;
}

.category-content p {
  font-family: "Nunito", sans-serif;
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.button-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.button-group .btn {
  flex: 1;
  padding: 0.5rem;
  font-size: 0.9rem;
}

.equipment-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.equipment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.equipment-image {
  height: 250px;
  overflow: hidden;
}

.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.equipment-card:hover .equipment-image img {
  transform: scale(1.1);
}

.equipment-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #0f6ff5;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.equipment-content {
  padding: 1.5rem;
}

.equipment-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #656c76;
}

.equipment-content p {
  font-family: "Nunito", sans-serif;
  color: #718096;
  margin-bottom: 1rem;
}

.equipment-features {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.equipment-features span {
  background: rgba(15, 111, 245, 0.1);
  color: #0f6ff5;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.equipment-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-catalogue {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #0f6ff5;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-catalogue:hover {
  background: #0d5fd3;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #25d366;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #128c7e;
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

@media (max-width: 767px) {
  .contact-bar {
    display: none; /* Oculta la barra de contacto */
  }
}

.schedule-visit {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.floating-image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  z-index: 1;
}

.specialist-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.schedule-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  background: rgba(15, 111, 245, 0.1);
  padding: 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #2d3748;
}

.benefit-item p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 0;
}

.highlight-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f6ff5;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.contact-info {
  color: #718096;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .schedule-visit {
      padding: 3rem 0;
  }

  .schedule-card {
      padding: 2rem;
  }

  .benefit-item h3 {
      font-size: 1rem;
  }

  .benefit-item p {
      font-size: 0.85rem;
  }
}

.modern-footer {
  position: relative;
  margin-top: 4rem;
  background: #0f6ff5;
  color: white;
}

.footer-waves {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.footer-waves svg {
  width: 100%;
  height: 100%;
}

.footer-content {
  position: relative;
  padding: 4rem 0 2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.locations-grid {
  display: grid;
  gap: 1.5rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-item svg {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.location-item h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.location-item p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

.important-links {
  display: grid;
  gap: 1rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  color: white;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-bottom-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-left: 1.5rem;
  transition: opacity 0.3s ease;
}

.footer-bottom-link:hover {
  opacity: 1;
  color: white;
}

@media (max-width: 768px) {
  .footer-content {
      padding: 3rem 0 1.5rem;
  }
  
  .footer-bottom {
      text-align: center;
  }
  
  .footer-bottom-link {
      display: inline-block;
      margin: 0.5rem;
  }
}