/* === RESET Y CONFIGURACIÓN BASE === */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: 'Montserrat', sans-serif;
   color: #333;
   line-height: 1.6;
   /* Fondo global: degradado suave inspirado en amanecer */
   background: linear-gradient(135deg, #e6f4ff 0%, #fdf6e3 100%) !important;
   min-height: 100vh;
}

h1, h2, h3, h4, h5 {
   font-family: 'Playfair Display', serif;
   font-weight: 700;
   color: #ecba16;
   text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* === NAVBAR === */
.navbar {
   background: linear-gradient(135deg, #00c0ff 0%, #fcec95 100%);
   box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
   padding: 10px 0;
}
.navbar.scrolled {
   background: rgba(255, 252, 233, 0.95);
   backdrop-filter: blur(6px);
   box-shadow: 0 6px 20px rgba(0,0,0,0.12);
   padding: 8px 0;
}

.logo-container {
   display: flex;
   align-items: center;
   gap: 10px;
   text-decoration: none;
   color: inherit;
}
.logo-text {
   font-family: 'Playfair Display', serif;
   font-size: 3rem;
   font-style: italic;
   color: #000000;
}

/* === MENÚ COMO BOTONES OVALADOS === */
.nav-link {
   background: linear-gradient(135deg, #fcec95, #ecba16) !important;
   color: #000 !important;
   border: 2px solid #5a4a00 !important;
   border-radius: 50px !important;
   padding: 6px 14px !important;
   font-size: 0.85rem !important;
   font-weight: 700 !important;
   text-transform: uppercase !important;
   letter-spacing: 0.5px !important;
   box-shadow: 0 3px 0 #a88b0f !important;
   display: inline-flex !important;
   align-items: center !important;
   gap: 8px !important;
   text-decoration: none !important;
   margin: 0 4px !important;
   transition: all 0.2s ease !important;
}

.nav-link:hover {
   transform: translateY(-2px) !important;
   box-shadow: 0 5px 0 #a88b0f !important;
   background: linear-gradient(135deg, #fef0b0, #f0c95a) !important;
}

.nav-link:active {
   transform: translateY(1px) !important;
   box-shadow: 0 2px 0 #a88b0f !important;
}

.nav-link::after {
   display: none !important;
}

/* Botón de usuario */
.btn-user {
   background: transparent;
   border: none;
   color: #4a4a4a;
   font-size: 1.2rem;
   cursor: pointer;
   transition: color 0.3s;
}
.btn-user:hover {
   color: #d4af37;
}

/* Menú desplegable */
.user-dropdown {
   display: none;
   position: absolute;
   top: 100%;
   right: 0;
   background: white;
   border-radius: 8px;
   min-width: 180px;
   z-index: 1000;
   overflow: hidden;
   box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.user-dropdown a {
   display: block;
   padding: 10px 16px;
   color: #333;
   text-decoration: none;
   transition: background 0.2s;
}
.user-dropdown a:hover {
   background-color: #f8f9fa;
}

/* === SECCIONES === */
.section-padding {
   padding: 80px 0;
}
.section-title {
   text-align: center;
   margin-bottom: 50px;
   color: #002fc0;
   font-size: 2.5rem;
   position: relative;
   display: inline-block;
   text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.section-title::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 60px;
   height: 4px;
   background: linear-gradient(to right, #ecba16, #fcec95);
   border-radius: 2px;
}

/* === DISEÑO DE SECCIONES SIN FONDO BLANCO === */
#conocenos,
#aspectos,
#ubicacion,
#comentarios {
   background: transparent !important;
   margin: 30px auto;
   padding: 0 15px;
   max-width: 1200px;
}

/* Tarjetas de contenido con estilo premium */
.content-card {
   background: rgba(255, 255, 255, 0.7);
   backdrop-filter: blur(8px);
   border: 1px solid rgba(236, 186, 22, 0.2);
   border-radius: 16px;
   padding: 30px;
   box-shadow: 0 6px 20px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
}
.content-card:hover {
   background: rgba(255, 255, 255, 0.85);
   box-shadow: 0 8px 24px rgba(0,0,0,0.12);
   transform: translateY(-4px);
}

/* Sección "Aspectos" con fondo crema cálido */
#aspectos .content-card {
   background: rgba(253, 246, 227, 0.75);
   border-color: rgba(236, 186, 22, 0.3);
}

/* Sección "Conócenos" con fondo celeste suave */
#conocenos .content-card {
   background: rgba(230, 244, 255, 0.7);
   border-color: rgba(147, 211, 232, 0.3);
}

/* Títulos dentro de secciones */
.content-card h4 {
   color: #002fc0;
   margin-bottom: 16px;
   font-size: 1.4rem;
}
.content-card p, .content-card ul {
   color: #2c2c2c;
   font-size: 1rem;
}

/* Valores con íconos */
.list-group-item {
   background: transparent !important;
   border: none !important;
   padding: 10px 0 !important;
   border-bottom: 1px dashed rgba(236, 186, 22, 0.3) !important;
}
.list-group-item:last-child {
   border-bottom: none !important;
}

/* === HERO === */
.hero-section {
   /* ✅ ILUMINACIÓN AZUL ELIMINADA: solo dorado/marrón */
   background-image:  url('imagenes/IMG-20250906-WA0010.jpg');
   background-size: cover;
   background-position: center;
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   text-align: center;
   padding: 0 20px;
}
.hero-content h1 {
   font-size: 3.5rem;
   margin-bottom: 1rem;
   text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.hero-content p {
   font-size: 1.3rem;
   margin-bottom: 2rem;
   max-width: 700px;
   margin-left: auto;
   margin-right: auto;
}

/* === BOTONES UNIFICADOS === */
.btn,
.btn-primary,
.btn-hero,
.btn-login,
.btn-register {
   font-family: 'Montserrat', sans-serif;
   font-weight: 600;
   border: none;
   border-radius: 8px;
   padding: 12px 24px;
   cursor: pointer;
   position: relative;
   overflow: hidden;
   transition: all 0.2s ease;
   box-shadow: 0 4px 0 #a88b0f;
   background: linear-gradient(135deg, #fcec95, #ecba16);
   color: #000 !important;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   display: inline-block;
   text-decoration: none;
   text-align: center;
}

.btn:hover,
.btn-primary:hover,
.btn-hero:hover,
.btn-login:hover,
.btn-register:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 0 #a88b0f;
}

.btn:active {
   transform: translateY(2px);
   box-shadow: 0 2px 0 #a88b0f;
}

.btn::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
   transition: 0.6s;
   z-index: 1;
}
.btn:hover::before {
   left: 100%;
}

.btn-hero {
   background: linear-gradient(135deg, #fcec95, #ecba16);
   color: #000 !important;
   padding: 12px 30px;
   font-size: 1.1rem;
   border-radius: 50px;
}

/* === IMÁGENES === */
.img-fluid {
   max-width: 70%;
   height: auto;
   border-radius: 16px;
   box-shadow: 0 8px 20px rgba(0,0,0,0.15);
   border: 3px solid rgba(236, 186, 22, 0.2);
}
.hero-image img {
   max-width: 80%;
   border-radius: 16px;
   box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* === COMENTARIOS === */
#comentarios .card {
   background: rgb(250, 250, 250) !important;
   border: 1px solid rgba(236, 186, 22, 0.3);
   border-radius: 16px;
   box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
#comentarios .form-control,
#comentarios .form-select {
   background: rgba(255, 255, 255, 0.988) !important;
   border: 1px solid rgba(236, 186, 22, 0.3) !important;
}

#estrellas input[type="radio"] {
   display: none;
}
#estrellas label.star {
   font-size: 1.4rem;
   color: #ddd;
   cursor: pointer;
   transition: all 0.2s ease;
}
#estrellas label.star:hover,
#estrellas input[type="radio"]:checked ~ label.star {
   color: #ffcc26;
   text-shadow: 0 0 8px rgba(255, 204, 38, 0.7);
}

/* === TARJETAS === */
.card,
.login-card,
.register-card {
   background: rgba(255, 255, 255, 0.85) !important;
   border: 1px solid rgba(236, 186, 22, 0.2);
   border-radius: 16px;
   box-shadow: 0 6px 16px rgba(0,0,0,0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover,
.login-card:hover,
.register-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

/* === FORMULARIOS === */
.form-label {
   font-weight: 600;
   color: #555;
   margin-bottom: 6px;
}
.form-control {
   border: 2px solid #e0e7ff;
   padding: 10px 16px;
   border-radius: 12px;
   transition: border-color 0.3s;
   background: rgba(255,255,255,0.8);
}
.form-control:focus {
   border-color: #93d3e8;
   box-shadow: 0 0 0 0.25rem rgba(147, 211, 232, 0.25);
}

/* === COMENTARIOS - CARRUSEL === */
.carousel-container-wide {
   position: relative;
   overflow: hidden;
   border-radius: 16px;
   padding: 20px;
   background: rgba(255, 252, 233, 0.7);
   border: 1px solid rgba(236, 186, 22, 0.2);
}

.carousel-track {
   display: flex;
   gap: 20px;
   animation: scroll 20s linear infinite;
}

.comment-card {
   min-width: 280px;
   padding: 20px;
   background: rgba(255, 255, 255, 0.75);
   border-radius: 12px;
   border-left: 4px solid #ffcc26;
   box-shadow: 0 2px 8px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}
.comment-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.comment-card blockquote {
   font-size: 0.95rem;
   margin-bottom: 10px;
   color: #333;
   font-style: italic;
}
.comment-card .stars {
   margin: 8px 0;
}
.comment-name {
   font-weight: 600;
   margin: 8px 0 4px;
   font-size: 0.95rem;
}
.comment-date {
   font-size: 0.75rem;
   color: #888;
}

@keyframes scroll {
   0% { transform: translateX(0); }
   100% { transform: translateX(-50%); }
}
.carousel-container-wide:hover .carousel-track {
   animation-play-state: paused;
}

/* === FOOTER MODERNO === */
footer {
   background: linear-gradient(135deg, #93d3e8 0%, #fcec95 100%);
   padding: 40px 0 20px;
   border-top: 2px solid rgba(255,255,255,0.3);
   color: #4a4a4a;
   margin-top: 40px;
   font-family: 'Montserrat', sans-serif;
}
footer a {
   color: #4a4a4a;
   text-decoration: none;
   transition: color 0.3s, transform 0.2s;
}
footer a:hover {
   color: #d4af37;
   transform: translateY(-2px);
}
footer h6 {
   font-size: 1.1rem;
   font-weight: 700;
   margin-bottom: 16px;
   color: #002fc0;
}
footer p, footer li {
   font-size: 0.95rem;
   line-height: 1.6;
}
footer .fab, footer .fas {
   font-size: 1.4rem;
   transition: transform 0.3s, color 0.3s;
}
footer .fab:hover, footer .fas:hover {
   transform: scale(1.2);
   color: #ffc505 !important;
}

/* Columnas del footer */
.footer-col {
   margin-bottom: 25px;
}
@media (min-width: 768px) {
   .footer-col {
      padding: 0 15px;
   }
}

/* Enlaces de contacto */
footer .d-block {
   margin-bottom: 8px;
   padding: 4px 0;
   transition: all 0.2s;
}
footer .d-block:hover {
   padding-left: 6px;
   color: #d4af37 !important;
}

/* Redes sociales */
.footer-social {
   display: flex;
   justify-content: center;
   gap: 20px;
   margin-top: 15px;
}
.footer-social a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: rgba(255,255,255,0.7);
   color: #4a4a4a;
   transition: all 0.3s;
   text-decoration: none;
}
.footer-social a:hover {
   background: #ecba16;
   color: #000 !important;
   transform: translateY(-3px) scale(1.1);
}

/* Sección de descarga de app */
.apk-download {
   background: rgba(255, 255, 255, 0.15);
   border-radius: 12px;
   padding: 20px;
   text-align: center;
   margin-top: 20px;
}
.apk-download a {
   display: inline-block;
   background: #28a745;
   color: white !important;
   padding: 10px 20px;
   border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
   margin-top: 10px;
   transition: background 0.2s;
}
.apk-download a:hover {
   background: #218838;
   transform: translateY(-2px);
}

/* Copyright */
.footer-bottom {
   margin-top: 30px;
   padding-top: 20px;
   border-top: 1px solid rgba(255,255,255,0.4);
   text-align: center;
   font-size: 0.9rem;
   color: #555;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
   .navbar .container {
      flex-wrap: wrap;
   }
   .logo-container {
      margin-bottom: 10px;
   }
   .logo-text {
      font-size: 1.5rem;
   }
   .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: rgba(255, 252, 233, 0.95);
      backdrop-filter: blur(6px);
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 1rem 0;
      z-index: 1000;
   }
   .hero-content h1 {
      font-size: 2.5rem;
   }
   .hero-content p {
      font-size: 1.1rem;
   }
   .section-title {
      font-size: 2rem;
   }
   footer .text-md-end {
      text-align: center !important;
      margin-top: 20px;
   }
   .img-fluid {
      max-width: 100%;
   }
   .content-card {
      padding: 20px;
      border-radius: 12px;
   }
   .footer-social {
      justify-content: center;
   }
}
      /* === ANIMACIONES DE ENTRADA === */
      .animate-on-scroll {
         opacity: 0;
         transform: translateY(30px);
         transition: opacity 0.6s ease, transform 0.6s ease;
      }
      .animate-on-scroll.visible {
         opacity: 1;
         transform: translateY(0);
      }
      /* Iconos animados */
      .animated-icon {
         display: inline-block;
         transition: transform 0.3s ease;
      }
      .animated-icon:hover {
         transform: scale(1.2) rotate(10deg);
      }
      /* Vibración suave para teléfono */
      @keyframes vibrate {
         0%, 100% { transform: translateX(0); }
         25% { transform: translateX(-2px); }
         75% { transform: translateX(2px); }
      }
      .vibrate {
         animation: vibrate 2s infinite;
      }