/* Importar fuentes Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Lato&family=Open+Sans&family=Montserrat&family=Poppins&family=Merriweather&family=Questrial&family=Anton&display=swap');

body { 
  font-family: 'Questrial', sans-serif; 
  background: #FFF5E1;
  margin: 0; 
  padding: 0; 
}

/* ==================== BANNER ==================== */
.banner-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(116, 2, 97, 0.95);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.navbar-brand, .nav-link {
  color: #fff !important;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.navbar-nav .nav-link:hover {
  color: #FFD166 !important;
}
.navbar .navbar-brand img {
  height: 40px;
}
.navbar-collapse {
  justify-content: center;
}
@media (max-width: 768px) {
  .navbar-brand img { height: 30px; }
  .navbar-nav .nav-link { font-size: 0.9rem; }
}

/* ==================== CAROUSEL ==================== */
.carousel-item img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) { .carousel-item img { height: 60vh; } }
@media (max-width: 480px) { .carousel-item img { height: 50vh; } }

/* ==================== MINI BAR ==================== */
.mini-bar {
  background: linear-gradient(90deg, #f70071, #06D6A0);
  color: #fdf9f6ff;
  font-weight: bold;
  text-align: center;
  height: 25px;
  line-height: 30px;
  overflow: hidden;
  position: relative;
}
.slider {
  display: flex;
  flex-direction: column;
  animation: slide 9s infinite;
}
.slider p {
  margin: 0;
  height: 30px;
}
@keyframes slide {
  0%, 20% { transform: translateY(0); }
  33%, 53% { transform: translateY(-30px); }
  66%, 86% { transform: translateY(-60px); }
  100% { transform: translateY(0); }
}

/* ==================== NAVBAR SEARCH ==================== */
.navbar-search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  padding: 5px 15px;
  border: 1px solid #ddd;
  width: 250px;
}
.navbar-search input {
  border: none;
  outline: none;
  background: none;
  padding: 5px 10px;
  flex: 1;
  font-size: 0.95rem;
}
.navbar-search button {
  border: none;
  background: none;
  color: #E75480;
  font-size: 1.1rem;
  cursor: pointer;
}
.navbar-search button:hover { color: #c73d66; }
@media (max-width: 768px) { .navbar-search { width: 150px; } }
@media (max-width: 480px) { .navbar-search { display: none; } }

/* ==================== OUR STORY ==================== */
.about-us {
  background: linear-gradient(135deg, #fce4ec, #fff5e1);
}
.about-us p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin: auto;
  font-weight: 500;
  font-family: 'Questrial', sans-serif;
}
@media (max-width: 768px) {
  .about-us p { font-size: 1rem; padding: 0 10px; }
}

/* ==================== SECTION TITLES ==================== */
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  color: #E75480;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E75480, #ffafbd);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.section-title:hover {
  color: #d63d6b;
  transform: scale(1.05);
}

/* ==================== BLOG BUTTON ==================== */
/* Botón personalizado del Blog */
.btn-blog {
  background: linear-gradient(90deg, #f70071, #f70071);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-blog:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #f70071, #f70071);
  color: #fff;
}



/* ==================== BLOG GALLERY ==================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(231, 84, 128, 0.3);
}
.gallery-item p {
  font-family: 'Questrial', sans-serif;
  color: #555;
  font-size: 1rem;
  margin-top: 8px;
  font-weight: 500;
}
.extra { display: none; }
@media (max-width: 768px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .gallery-item img { height: auto; max-height: 250px; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item img { height: auto; max-height: 200px; }
}

/* ==================== VIDEO BAR ==================== */
.video-bar {
  position: relative;
  width: 100%;
  height: 290px;
}
.video-bar video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .video-bar { height: 180px; }
}

/* ==================== FOOTER ==================== */
footer { 
  background: linear-gradient(90deg, #f70071, #06D6A0); 
  color: #fff; 
  padding: 20px 0; 
}
footer a { color: #fff; text-decoration: none; }
footer a:hover { color: #FFD166; }
@media (max-width: 768px) {
  footer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
}
.footer-login {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(90deg, #f70071, #06D6A0);
  color: white;
}
@media (max-width: 768px) {
  .footer-login {
    flex-direction: column;
    padding: 15px;
  }
}

/* ==================== SOCIAL BAR ==================== */
.social-bar { 
  position: fixed; 
  top: 50%; 
  left: 0; 
  transform: translateY(-50%); 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  padding: 10px 5px; 
  background: #FFD166; 
  border-radius: 0 10px 10px 0; 
  z-index: 999;
}

.social-bar a { 
  color: #E75480; 
  font-size: 22px; 
  padding: 10px; 
  transition: transform 0.3s ease;
}

.social-bar a:hover { 
  transform: scale(1.3); 
  color: #06D6A0; 
}

/* ==================== LOGO ==================== */
.logo { height: 40px; width: auto; }
@media (max-width: 576px) { .logo { height: 30px; } }



.frase-destacada {
  font-family: 'Dancing Script', cursive !important;
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  text-align: center;
  color: #ff1493;
  background-image: linear-gradient(90deg, #ff4da6, #ff1493);
  margin: 50px auto;
  max-width: 1000px;
  line-height: 1.2;
  position: relative;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 3px 15px rgba(255, 20, 147, 0.4);
  animation: fadeIn 1.2s ease-out;
  text-transform: none;
  letter-spacing: 1px;
}

/* Ajuste para móvil */
@media (max-width: 400px) {
  .frase-destacada {
    font-size: 2.1rem !important;      /* Tamaño más pequeño */
    max-width: 90%;         /* Ajuste ancho */
    letter-spacing: 2px;    /* Menos espacio entre letras */
    line-height: 1.3;       /* Mejor altura de línea */
    padding: 0 10px;        /* Padding para que no toque bordes */
  }
}

/* Línea decorativa debajo del texto */
.frase-destacada::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 130px !important;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #ff66b2, #ff1493, #ff66b2);
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    font-size: 28px;
    z-index: 1000;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #1ebe57;
}
#heroCarousel .carousel-item img {
    object-fit: cover; /* Ajusta imagen manteniendo proporción */
    width: 95%;
    height: 87vh; /* Ajusta altura del banner al 100% de la pantalla */
}

@media (max-width: 768px) {
    #heroCarousel .carousel-item img {
        height: 50vh; /* Altura menor en móvil */
    }
}
.nav-link {
      padding-top: 0.3rem !important;
      padding-bottom: 0.3rem !important;
      color: #fff !important;
      font-weight: 500;
    }
    #heroCarouselMobile .carousel-item img {
  height: 300px;
  object-fit: cover;
}
 