/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Montserrat+Alternates:wght@300;400;500;600;700&display=swap");

/* Variables */
:root {
  --primary-color: #1e1e1e;
  --secondary-color: #B0A8FF;
  --purple-light: #d580ff;
  --purple-dark: #7700cc;
  --text-color: black;
  --light-bg: #f8f9fa;
  --coordinar-color: #6052a3;
  --coordinar-hover: White;
  --coordinar-hover-bg: #4A04E5;
}

/* General Styles */
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: #1e1e1e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
}
h2{
  font-size: 2.65rem;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Navbar */
.navbar {
  background-color: var(--primary-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

.logo-text {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}

/* Hero Section con Parallax */
.hero-section {
  background-color: var(--primary-color);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

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

.hero-section h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateZ(0);
  will-change: transform;
}

.text-purple {
  color: var(--secondary-color);
}

.hero-image-container {
  position: relative;
  z-index: 2;
}

.rounded-4 {
  border-radius: 1rem;
}



/* Servicios Section */
.servicios-section {
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.servicio-card {
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.servicio-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servicio-icon img {
 
}

.servicio-card h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.servicio-card p {
  font-size: 0.8rem;
  padding-left: 1em;
   padding-right: 1em;
/*  color: #666;*/
}

.servicio-card .small {
  font-size: 0.8rem;
  /*color: #888;*/
  margin-top: 1rem;
}

/* Reserva Section */
.reserva-section {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  overflow: hidden;
}

.reserva-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.reserva-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.calendar-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.calendar-icon img {
  max-width: 100%;
}


/* Botón Coordinar Turno */
.btn-coordinar {
  background-color: white;
  color: var(--coordinar-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  border: none;
}

.btn-coordinar:hover {
  background-color:var(--coordinar-hover-bg);
  color:var(--coordinar-hover);
}

.btn-coordinar-modal {
  background-color: #222;
  color: white;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  border: none;
}

.btn-coordinar-modal:hover:not(.disabled) {
  background-color: #000;
  color: white;
}

.btn-coordinar-modal.disabled {
  background-color: #555;
  color: #aaa;
  cursor: not-allowed;
}
.btn-coordinar-contacto {
  background-color: #1F1E24;
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  border: none;
}

.btn-coordinar-contacto:hover {
  background-color: var(--coordinar-hover-bg);
  color: white;
}
/* Cambios Section */
.cambios-section {
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.galeria-container {
  background-color: #f8f9fa;
  border-radius: 10px;
  min-height: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Sobre Nosotros Section */
.sobre-section {
  position: relative;
  padding: 6rem 0;
  color: #fff;
  overflow: hidden;
}

.sobre-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.sobre-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-image-placeholder {

  border-radius: 8px;
  width: 100%;
  height: 100px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.info-card {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  backdrop-filter: blur(5px);
  margin-bottom: 20px;
  border: #626165 solid 1px;
}

.info-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.info-card p {
  color: #fff;
  margin-bottom: 0;
}

/* Ubicación Section */
.ubicacion-section {
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.map-container {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  pointer-events: none;
}

.social-link {
  display: inline-block;
  color: #5450A5;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
}

.social-link:hover {
  color: #1F1E24;
}

/* Footer */
.footer {
  background-color: white;
  color: black;
  border-top: 1px solid var(--primary-color);
}

/* Modal de Políticas */
.modal-content {
  border-radius: 1rem;
  border: none;
}

.modal-header .btn-close {
  font-size: 1rem;
}
.modal-resalt{
  color: var(--coordinar-color);
}
.politicas-list {
  padding-left: 1.2rem;
}

.politicas-list li {
  margin-bottom: 1rem;
}

.form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-section h1 {
    font-size: 2.4rem;
  }

  .servicio-card {
    margin-bottom: 2rem;
  }

  .map-container {
    margin-top: 2rem;
  }

  .footer [class*="col-"] {
    text-align: center !important;
    margin-bottom: 1rem;
  }

  .info-image-placeholder {
    height: 120px;
    margin-bottom: 20px;
  }
}
.card-recomendacion{
  border-color: #4A04E5;
  background-color: #B0A8FF;
  color: #4A04E5;
  font-weight: bold;
}