:root {
    --primary-color: #5a1428;
    --secondary-color: #9a5a6a;
    --dark-color: #2a1a05;
    --light-color: #d4c4c8;
    --accent-color: #6a0f2a;
    --gradient-primary: linear-gradient(135deg, #5a1428, #6a0f2a);
    --gradient-secondary: linear-gradient(135deg, #9a5a6a, #b47585);
    --shadow-primary: 0 10px 30px rgba(90, 20, 40, 0.3);
    --shadow-hover: 0 20px 40px rgba(90, 20, 40, 0.4);
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #d4c4c8 0%, #c4b4b8 100%);
    padding-top: 80px;
  }
  
  h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
  }
  
  /* Efectos de partículas flotantes */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(circle at 20% 80%, rgba(214, 51, 132, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 192, 203, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
  }
  
  @keyframes float-particles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
  }
  
  /* Navbar con colores súper bonitos y animaciones mágicas */
  .navbar {
    background: linear-gradient(135deg, 
      #9a5a6a 0%, 
      #b47585 10%, 
      #b47585 20%, 
      #a56575 30%, 
      #9a5a6a 40%,
      #9a5a6a 50%,
      #b47585 60%,
      #a56575 70%,
      #9a5a6a 80%,
      #9a5a6a 90%,
      #b47585 100%) !important;
    background-size: 500% 500%;
    backdrop-filter: blur(20px);
    box-shadow: 
      0 8px 32px rgba(154, 90, 106, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    overflow: hidden;
  }
  
  .navbar::before {
    content: '✨ 🍰 🧁 🎂 ✨ 🍪 🎀 🌸 ✨';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 300%;
    height: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    z-index: 1;
    transform: translateY(-50%);
    letter-spacing: 25px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
  
  @keyframes navbar-particles {
    0% { 
      transform: translateX(-100%) translateY(-50%) rotate(0deg); 
      opacity: 0.3;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { 
      transform: translateX(100%) translateY(-50%) rotate(360deg); 
      opacity: 0.3;
    }
  }
  
  .navbar:hover::before {
    animation: navbar-particles 5s linear infinite;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 15px rgba(255, 255, 255, 1);
  }
  
  .navbar.scrolled {
    background: linear-gradient(135deg, 
      rgba(255, 154, 158, 0.95) 0%, 
      rgba(254, 207, 239, 0.95) 25%, 
      rgba(254, 207, 239, 0.95) 50%, 
      rgba(255, 195, 160, 0.95) 75%, 
      rgba(255, 175, 189, 0.95) 100%) !important;
    backdrop-filter: blur(25px);
    padding-top: 8px;
    padding-bottom: 8px;
    box-shadow: 
      0 15px 50px rgba(255, 154, 158, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
  }
  
  .navbar-brand {
    font-size: 2rem;
    background: linear-gradient(45deg, 
      #5a1428, 
      #2a1a05, 
      #6a0f2a, 
      #5a1428);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(90, 20, 40, 0.5);
  }
  
  @keyframes brand-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  @keyframes brand-pulse {
    0%, 100% { 
      filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.7));
      transform: scale(1) rotate(0deg);
    }
    25% { 
      filter: drop-shadow(0 0 25px rgba(255, 107, 157, 0.9));
      transform: scale(1.03) rotate(1deg);
    }
    50% { 
      filter: drop-shadow(0 0 35px rgba(255, 107, 157, 1));
      transform: scale(1.06) rotate(0deg);
    }
    75% { 
      filter: drop-shadow(0 0 25px rgba(255, 107, 157, 0.9));
      transform: scale(1.03) rotate(-1deg);
    }
  }
  
  .navbar-brand::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
      #ff6b9d, 
      #c44569, 
      #f8b500, 
      #ff6b9d);
    background-size: 300% 100%;
    transition: width 0.4s ease;
    border-radius: 2px;
  }
  
  @keyframes underline-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  .navbar-brand:hover::before {
    width: 100%;
  }
  
  .navbar-brand img {
    filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.6));
  }
  
  @keyframes logo-bounce {
    0%, 100% { 
      transform: translateY(0) rotate(0deg); 
      filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.6));
    }
    25% { 
      transform: translateY(-5px) rotate(5deg); 
      filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.8));
    }
    50% { 
      transform: translateY(-8px) rotate(0deg); 
      filter: drop-shadow(0 0 20px rgba(255, 107, 157, 1));
    }
    75% { 
      transform: translateY(-5px) rotate(-5deg); 
      filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.8));
    }
  }
  
  .navbar-nav {
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 25px;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
      0 8px 32px rgba(255, 154, 158, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
  }
  
  .navbar-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
      rgba(255, 154, 158, 0.1), 
      rgba(254, 207, 239, 0.1), 
      rgba(255, 195, 160, 0.1), 
      rgba(255, 175, 189, 0.1));
    border-radius: 25px;
    z-index: -1;
  }
  
  @keyframes nav-bg-shift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
  }
  
  .nav-item {
    position: relative;
    margin: 0 5px;
  }
  
  .nav-link {
    color: #2a1a05 !important;
    font-weight: 600;
    margin: 0 4px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 12px 20px !important;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
      0 6px 20px rgba(90, 20, 40, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 0 15px rgba(90, 20, 40, 0.2);
    overflow: hidden;
    z-index: 1;
  }
  
  .nav-link::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: left 0.6s ease;
    z-index: -1;
  }
  
  .nav-link:hover::before {
    left: 100%;
  }
  
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 
      0 12px 35px rgba(90, 20, 40, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      0 0 30px rgba(90, 20, 40, 0.4),
      0 0 50px rgba(90, 20, 40, 0.2);
    transform: translateY(-5px) scale(1.08);
    color: #2a1a05 !important;
  }
  
  .nav-link span {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, 
      #5a1428, 
      #2a1a05, 
      #6a0f2a, 
      #5a1428);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(90, 20, 40, 0.3);
  }
  
  @keyframes text-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  .nav-link:hover span {
    animation: text-pulse 0.6s ease-in-out;
  }
  
  @keyframes text-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
      #ff6b9d, 
      #c44569, 
      #f8b500, 
      #ff6b9d);
    background-size: 300% 100%;
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 2px;
  }
  
  .nav-link:hover::after {
    width: 80%;
  }
  
  .navbar-toggler {
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 15px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .navbar-toggler:hover {
    background: rgba(255, 107, 157, 0.1);
    border-color: rgba(255, 107, 157, 0.6);
    transform: scale(1.05);
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 157, 0.25);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 107, 157, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
  }
  
  .navbar-toggler:hover .navbar-toggler-icon {
    transform: rotate(90deg);
  }
  
  /* Efectos especiales para el navbar */
  .navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
      transparent, 
      #ff6b9d, 
      #c44569, 
      #f8b500, 
      #ff6b9d, 
      #c44569,
      #f8b500,
      transparent);
    background-size: 300% 100%;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.6);
  }
  
  @keyframes navbar-wave {
    0%, 100% { background-position: -300% 0; }
    50% { background-position: 300% 0; }
  }
  
  /* Responsive para el navbar */
  @media (max-width: 991.98px) {
    .navbar-nav {
      background: rgba(255, 255, 255, 0.9) !important;
      margin-top: 15px;
      border-radius: 15px;
      padding: 15px;
      box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
    }
    
    .nav-link {
      margin: 5px 0;
      text-align: center;
      border-radius: 15px;
    }
    
    .navbar-brand {
      font-size: 1.6rem;
    }
  }
  
  .hero-section {
    background: linear-gradient(135deg, rgba(196, 122, 138, 0.2) 0%, rgba(212, 149, 168, 0.3) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-bg, url('../img/imagen6.jpg')) center/cover;
    opacity: 0.7;
    z-index: -1;
    transition: opacity 2s ease-in-out, background-image 1s;
  }
  
  .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/imagen6.jpg') center/cover;
    opacity: 0;
    z-index: -1;
    transition: opacity 2s ease-in-out;
  }
  
  .hero-section .hero-bg-3 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/imagen6.jpg') center/cover;
    opacity: 1 !important;
    z-index: -1;
    transition: opacity 2s ease-in-out;
  }
  
  /* Overlay de transición suave */
  .hero-section .transition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
      rgba(214, 51, 132, 0.1) 0%, 
      rgba(255, 192, 203, 0.1) 50%, 
      rgba(214, 51, 132, 0.1) 100%);
    z-index: -1;
  }
  
  @keyframes overlay-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
  }
  
  @keyframes hero-carousel {
    0%, 28% {
      opacity: 0.7;
      transform: scale(1);
    }
    14% {
      opacity: 0.7;
      transform: scale(1.01);
    }
    29%, 100% {
      opacity: 0;
      transform: scale(1.03);
    }
  }
  
  @keyframes hero-carousel-2 {
    0%, 28% {
      opacity: 0;
      transform: scale(1.03);
    }
    29%, 58% {
      opacity: 0.7;
      transform: scale(1);
    }
    43% {
      opacity: 0.7;
      transform: scale(1.01);
    }
    59%, 100% {
      opacity: 0;
      transform: scale(1.03);
    }
  }
  
  @keyframes hero-carousel-3 {
    0%, 58% {
      opacity: 0;
      transform: scale(1.03);
    }
    59%, 100% {
      opacity: 0.7;
      transform: scale(1);
    }
    72% {
      opacity: 0.7;
      transform: scale(1.01);
    }
  }
  
  .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #8a1f3f;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
  }
  
  .hero-title .sparkle {
    display: inline-block;
  }
  
  @keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(138, 31, 63, 0.6);
    background: linear-gradient(45deg, #ffffff, #f8f0f2, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  @keyframes subtitle-glow {
    0%, 100% { 
      background-position: 0% 50%;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(138, 31, 63, 0.6);
    }
    50% { 
      background-position: 100% 50%;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(138, 31, 63, 0.8);
    }
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  
  .particle {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
  }
  
  .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }
  
  .particle:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
  }
  
  .particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
  }
  
  .particle:nth-child(4) {
    top: 70%;
    right: 25%;
    animation-delay: 3s;
  }
  
  .particle:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
  }
  
  .particle:nth-child(6) {
    top: 80%;
    left: 60%;
    animation-delay: 5s;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
      opacity: 0.7;
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
      opacity: 1;
    }
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    min-width: 180px;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #8a1f3f 0%, #a01a4a 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(138, 31, 63, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(138, 31, 63, 0.4);
    color: white;
  }
  
  .btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
  }
  
  .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(108, 117, 125, 0.4);
    color: white;
  }
  
  .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }
  
  .btn:hover .btn-shine {
    left: 100%;
  }
  
  .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-size: 2.5rem;
  }
  
  @keyframes title-slide {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 20px;
    z-index: -1;
  }
  
  @keyframes title-bg {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.05); opacity: 0.2; }
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--gradient-primary);
    bottom: -15px;
    left: 20%;
    border-radius: 2px;
  }
  
  @keyframes title-line {
    0%, 100% { width: 60%; }
    50% { width: 80%; }
  }
  
  .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
  }
  
  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .card:hover::before {
    transform: scaleX(1);
  }
  
  .card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(214, 51, 132, 0.2);
  }
  
  .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
  }
  
  .card:hover .card-img-top {
    transform: scale(1.1);
  }
  
  .card-body {
    padding: 30px;
    position: relative;
  }
  
  .card-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.3rem;
  }
  
  .price-tag {
    background: var(--gradient-secondary);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(255, 192, 203, 0.3);
    transition: all 0.3s ease;
  }
  
  .price-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 192, 203, 0.4);
  }
  
  .service-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
  }
  
  @keyframes icon-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
  }
  
  /* Efectos especiales para la galería */
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --loading: block;
  }
  
  .gallery-item::before {
    content: '🔄';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #d63384;
    z-index: 1;
    opacity: 0.7;
    display: var(--loading);
  }
  
  .gallery-item img {
    width: 300px !important;
    height: 300px !important;
    object-fit: cover !important;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
    opacity: 0;
    position: relative;
    z-index: 2;
  }
  
  @keyframes fade-in-fallback {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  .gallery-item img.loaded {
    opacity: 1;
  }
  
  .gallery-item img.loaded + .gallery-item::before {
    display: none;
  }
  
  @keyframes loading-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(214, 51, 132, 0.3);
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-item::after {
    content: '👁️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: white;
    z-index: 3;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
  }
  
  /* Efectos para el formulario */
  .form-control {
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
    transform: translateY(-2px);
  }
  
  /* Estilos simplificados para select sin movimiento */
  .form-select {
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
    outline: none;
  }
  
  .form-select:hover {
    border-color: rgba(255, 107, 157, 0.5);
  }
  
  /* Estilos básicos para las opciones sin efectos */
  select option,
  .form-select option {
    background: white;
    color: #333;
    padding: 8px 12px;
    border: none;
    font-size: 14px;
    line-height: 1.5;
  }
  
  select option:hover,
  .form-select option:hover {
    background: #f8f9fa;
    color: #333;
  }
  
  select option:checked,
  .form-select option:checked {
    background: #e9ecef;
    color: #333;
  }
  
  /* Reglas adicionales para eliminar completamente cualquier movimiento */
  select,
  .form-select,
  select *,
  .form-select *,
  option,
  optgroup {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    position: static !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    perspective: none !important;
    transform-style: flat !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
  }
  
  /* Eliminar cualquier efecto de Bootstrap que cause movimiento */
  .form-select:focus,
  select:focus,
  .form-select:active,
  select:active,
  .form-select:hover,
  select:hover {
    transform: none !important;
    animation: none !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  }
  
  /* Asegurar que las opciones no se muevan en ningún contexto */
  select option,
  .form-select option,
  select option:hover,
  .form-select option:hover,
  select option:checked,
  .form-select option:checked,
  select option:focus,
  .form-select option:focus,
  select option:active,
  .form-select option:active,
  select option:selected,
  .form-select option:selected {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    position: static !important;
    background: white !important;
    color: #333 !important;
    padding: 8px 12px !important;
    border: none !important;
    margin: 0 !important;
    box-shadow: none !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    will-change: auto !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
  }
  
  /* Hover específico solo cambio de color sin movimiento */
  select option:hover,
  .form-select option:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  
  /* Checked específico solo cambio de color sin movimiento */
  select option:checked,
  .form-select option:checked {
    background: #e9ecef !important;
    color: #333 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  
  /* REGLAS EXTREMADAMENTE AGRESIVAS PARA ELIMINAR TODO MOVIMIENTO */
  /* Sobrescribir cualquier CSS que pueda causar movimiento */
  select,
  .form-select,
  select *,
  .form-select *,
  option,
  optgroup,
  select option,
  .form-select option,
  select option:hover,
  .form-select option:hover,
  select option:checked,
  .form-select option:checked,
  select option:focus,
  .form-select option:focus,
  select option:active,
  .form-select option:active,
  select option:selected,
  .form-select option:selected,
  select:focus,
  .form-select:focus,
  select:hover,
  .form-select:hover,
  select:active,
  .form-select:active,
  select:disabled,
  .form-select:disabled,
  select:enabled,
  .form-select:enabled,
  select:required,
  .form-select:required,
  select:optional,
  .form-select:optional,
  select:valid,
  .form-select:valid,
  select:invalid,
  .form-select:invalid,
  select:in-range,
  .form-select:in-range,
  select:out-of-range,
  .form-select:out-of-range,
  select:read-only,
  .form-select:read-only,
  select:read-write,
  .form-select:read-write,
  select:default,
  .form-select:default,
  select:checked,
  .form-select:checked,
  select:indeterminate,
  .form-select:indeterminate,
  select:placeholder-shown,
  .form-select:placeholder-shown,
  select:autofill,
  .form-select:autofill,
  select:required,
  .form-select:required,
  select:valid,
  .form-select:valid,
  select:invalid,
  .form-select:invalid,
  select:in-range,
  .form-select:in-range,
  select:out-of-range,
  .form-select:out-of-range,
  select:step-up,
  .form-select:step-up,
  select:step-down,
  .form-select:step-down,
  select:first-of-type,
  .form-select:first-of-type,
  select:last-of-type,
  .form-select:last-of-type,
  select:only-of-type,
  .form-select:only-of-type,
  select:nth-of-type(n),
  .form-select:nth-of-type(n),
  select:nth-last-of-type(n),
  .form-select:nth-last-of-type(n),
  select:first-child,
  .form-select:first-child,
  select:last-child,
  .form-select:last-child,
  select:only-child,
  .form-select:only-child,
  select:nth-child(n),
  .form-select:nth-child(n),
  select:nth-last-child(n),
  .form-select:nth-last-child(n),
  select:empty,
  .form-select:empty,
  select:target,
  .form-select:target,
  select:enabled,
  .form-select:enabled,
  select:disabled,
  .form-select:disabled,
  select:checked,
  .form-select:checked,
  select:indeterminate,
  .form-select:indeterminate,
  select:root,
  .form-select:root,
  select:scope,
  .form-select:scope,
  select:any-link,
  .form-select:any-link,
  select:link,
  .form-select:link,
  select:visited,
  .form-select:visited,
  select:local-link,
  .form-select:local-link,
  select:target,
  .form-select:target,
  select:open,
  .form-select:open,
  select:closed,
  .form-select:closed,
  select:playing,
  .form-select:playing,
  select:paused,
  .form-select:paused,
  select:seeking,
  .form-select:seeking,
  select:buffering,
  .form-select:buffering,
  select:stalled,
  .form-select:stalled,
  select:muted,
  .form-select:muted,
  select:volume-locked,
  .form-select:volume-locked,
  select:deferred,
  .form-select:deferred,
  select:loading,
  .form-select:loading,
  select:error,
  .form-select:error,
  select:future,
  .form-select:future,
  select:past,
  .form-select:past,
  select:current,
  .form-select:current,
  select:today,
  .form-select:today,
  select:yesterday,
  .form-select:yesterday,
  select:tomorrow,
  .form-select:tomorrow,
  select:this-month,
  .form-select:this-month,
  select:last-month,
  .form-select:last-month,
  select:next-month,
  .form-select:next-month,
  select:this-week,
  .form-select:this-week,
  select:last-week,
  .form-select:last-week,
  select:next-week,
  .form-select:next-week,
  select:dir(ltr),
  .form-select:dir(ltr),
  select:dir(rtl),
  .form-select:dir(rtl),
  select:lang(en),
  .form-select:lang(en),
  select:lang(es),
  .form-select:lang(es),
  select:lang(fr),
  .form-select:lang(fr),
  select:lang(de),
  .form-select:lang(de),
  select:lang(it),
  .form-select:lang(it),
  select:lang(pt),
  .form-select:lang(pt),
  select:lang(ru),
  .form-select:lang(ru),
  select:lang(zh),
  .form-select:lang(zh),
  select:lang(ja),
  .form-select:lang(ja),
  select:lang(ko),
  .form-select:lang(ko),
  select:lang(ar),
  .form-select:lang(ar),
  select:lang(he),
  .form-select:lang(he),
  select:lang(hi),
  .form-select:lang(hi),
  select:lang(th),
  .form-select:lang(th),
  select:lang(vi),
  .form-select:lang(vi),
  select:lang(id),
  .form-select:lang(id),
  select:lang(ms),
  .form-select:lang(ms),
  select:lang(tr),
  .form-select:lang(tr),
  select:lang(nl),
  .form-select:lang(nl),
  select:lang(pl),
  .form-select:lang(pl),
  select:lang(sv),
  .form-select:lang(sv),
  select:lang(da),
  .form-select:lang(da),
  select:lang(nb),
  .form-select:lang(nb),
  select:lang(fi),
  .form-select:lang(fi),
  select:lang(hu),
  .form-select:lang(hu),
  select:lang(cs),
  .form-select:lang(cs),
  select:lang(sk),
  .form-select:lang(sk),
  select:lang(ro),
  .form-select:lang(ro),
  select:lang(bg),
  .form-select:lang(bg),
  select:lang(hr),
  .form-select:lang(hr),
  select:lang(sr),
  .form-select:lang(sr),
  select:lang(sl),
  .form-select:lang(sl),
  select:lang(et),
  .form-select:lang(et),
  select:lang(lv),
  .form-select:lang(lv),
  select:lang(lt),
  .form-select:lang(lt),
  select:lang(uk),
  .form-select:lang(uk),
  select:lang(be),
  .form-select:lang(be),
  select:lang(mk),
  .form-select:lang(mk),
  select:lang(sq),
  .form-select:lang(sq),
  select:lang(bs),
  .form-select:lang(bs),
  select:lang(mt),
  .form-select:lang(mt),
  select:lang(ga),
  .form-select:lang(ga),
  select:lang(cy),
  .form-select:lang(cy),
  select:lang(is),
  .form-select:lang(is),
  select:lang(fo),
  .form-select:lang(fo),
  select:lang(gl),
  .form-select:lang(gl),
  select:lang(eu),
  .form-select:lang(eu),
  select:lang(ca),
  .form-select:lang(ca),
  select:lang(oc),
  .form-select:lang(oc),
  select:lang(ast),
  .form-select:lang(ast),
  select:lang(an),
  .form-select:lang(an),
  select:lang(rm),
  .form-select:lang(rm),
  select:lang(fur),
  .form-select:lang(fur),
  select:lang(lij),
  .form-select:lang(lij),
  select:lang(vec),
  .form-select:lang(vec),
  select:lang(sc),
  .form-select:lang(sc),
  select:lang(co),
  .form-select:lang(co),
  select:lang(br),
  .form-select:lang(br),
  select:lang(gd),
  .form-select:lang(gd),
  select:lang(kw),
  .form-select:lang(kw),
  select:lang(cor),
  .form-select:lang(cor),
  select:lang(ia),
  .form-select:lang(ia),
  select:lang(ie),
  .form-select:lang(ie),
  select:lang(io),
  .form-select:lang(io),
  select:lang(vo),
  .form-select:lang(vo),
  select:lang(jbo),
  .form-select:lang(jbo),
  select:lang(lfn),
  .form-select:lang(lfn),
  select:lang(nov),
  .form-select:lang(nov),
  select:lang(tok),
  .form-select:lang(tok),
  select:lang(art-x-bork),
  .form-select:lang(art-x-bork),
  select:lang(art-x-klingon),
  .form-select:lang(art-x-klingon),
  select:lang(art-x-piglatin),
  .form-select:lang(art-x-piglatin),
  select:lang(art-x-ubbi),
  .form-select:lang(art-x-ubbi),
  select:lang(art-x-elfic),
  .form-select:lang(art-x-elfic),
  select:lang(art-x-dothraki),
  .form-select:lang(art-x-dothraki),
  select:lang(art-x-valyrian),
  .form-select:lang(art-x-valyrian),
  select:lang(art-x-quenya),
  .form-select:lang(art-x-quenya),
  select:lang(art-x-sindarin),
  .form-select:lang(art-x-sindarin),
  select:lang(art-x-adunaic),
  .form-select:lang(art-x-adunaic),
  select:lang(art-x-khuzdul),
  .form-select:lang(art-x-khuzdul),
  select:lang(art-x-black-speech),
  .form-select:lang(art-x-black-speech),
  select:lang(art-x-westron),
  .form-select:lang(art-x-westron),
  select:lang(art-x-rohirric),
  .form-select:lang(art-x-rohirric),
  select:lang(art-x-quenya),
  .form-select:lang(art-x-quenya),
  select:lang(art-x-sindarin),
  .form-select:lang(art-x-sindarin),
  select:lang(art-x-adunaic),
  .form-select:lang(art-x-adunaic),
  select:lang(art-x-khuzdul),
  .form-select:lang(art-x-khuzdul),
  select:lang(art-x-black-speech),
  .form-select:lang(art-x-black-speech),
  select:lang(art-x-westron),
  .form-select:lang(art-x-westron),
  select:lang(art-x-rohirric),
  .form-select:lang(art-x-rohirric) {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    position: static !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    perspective: none !important;
    transform-style: flat !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
    margin: 0 !important;
    padding: 8px 12px !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    background: white !important;
    color: #333 !important;
    text-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-transform: none !important;
    -webkit-animation: none !important;
    -webkit-transition: none !important;
    -webkit-backface-visibility: visible !important;
    -webkit-perspective: none !important;
    -moz-transform: none !important;
    -moz-animation: none !important;
    -moz-transition: none !important;
    -moz-backface-visibility: visible !important;
    -moz-perspective: none !important;
    -ms-transform: none !important;
    -ms-animation: none !important;
    -ms-transition: none !important;
    -ms-backface-visibility: visible !important;
    -ms-perspective: none !important;
    -o-transform: none !important;
    -o-animation: none !important;
    -o-transition: none !important;
    -o-backface-visibility: visible !important;
    -o-perspective: none !important;
    -o-transform-style: flat !important;
  }
  
  /* Regla final para cualquier elemento que pueda tener movimiento */
  *[class*="select"],
  *[class*="option"],
  *[id*="select"],
  *[id*="option"],
  *[name*="select"],
  *[name*="option"] {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    position: static !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    perspective: none !important;
    transform-style: flat !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
  }
  
  /* Footer mejorado */
  footer {
    background: linear-gradient(135deg, #4a2a0b 0%, #6b3410 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-primary);
  }
  
  @keyframes footer-glow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
  }
  
  footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 192, 203, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  
  @keyframes footer-particles {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    margin: 0 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
  }
  
  .social-icon:hover::before {
    transform: scale(1);
  }
  
  .social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(214, 51, 132, 0.4);
  }
  
  .social-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover i {
    transform: rotate(360deg);
  }
  
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-primary);
    cursor: pointer;
  }
  
  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  @keyframes back-to-top-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
  }
  
  .back-to-top:hover {
    background: linear-gradient(135deg, #c22569, #d63384);
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-hover);
  }
  
  /* Animaciones personalizadas */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }
  
  .floating {
  }
  
  /* Efecto de onda mejorado */
  .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
  
  @keyframes wave-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  .wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
  }
  
  .wave .shape-fill {
    fill: #FFFFFF;
  }
  
  @keyframes wave-color {
    0%, 100% { fill: #FFFFFF; }
    50% { fill: #fff5f5; }
  }
  
  /* WhatsApp float mejorado */
  .whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    left: 30px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: var(--shadow-primary);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
  }
  
  @keyframes whatsapp-pulse {
    0% { 
      transform: scale(1);
      box-shadow: var(--shadow-primary);
    }
    50% { 
      transform: scale(1.1);
      box-shadow: 0 0 0 20px rgba(138, 31, 63, 0.2);
    }
    100% { 
      transform: scale(1);
      box-shadow: var(--shadow-primary);
    }
  }
  
  .whatsapp-float:hover {
    background: linear-gradient(135deg, #6b1a2f, #8a1f3f);
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-hover);
  }
  
  /* Modal de WhatsApp súper bonito y mágico */
  .whatsapp-modal .modal-dialog {
    max-width: 600px;
  }
  
  .whatsapp-modal .modal-content {
    background: linear-gradient(135deg, 
      #fff5f7 0%, 
      #ffeef8 25%, 
      #fff0f5 50%, 
      #ffeef8 75%, 
      #fff5f7 100%);
    border: none;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
      0 30px 80px rgba(255, 107, 157, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.8),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    backdrop-filter: blur(20px);
  }
  
  /* Partículas decorativas del modal */
  .modal-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }
  
  .modal-particles .particle {
    position: absolute;
    font-size: 20px;
    opacity: 0.6;
  }
  
  .modal-particles .particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }
  
  .modal-particles .particle:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
  }
  
  .modal-particles .particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
  }
  
  .modal-particles .particle:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
  }
  
  .modal-particles .particle:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
  }
  
  .modal-particles .particle:nth-child(6) {
    top: 40%;
    right: 5%;
    animation-delay: 5s;
  }
  
  @keyframes modal-float {
    0%, 100% { 
      transform: translateY(0px) rotate(0deg) scale(1); 
      opacity: 0.6;
    }
    25% { 
      transform: translateY(-10px) rotate(5deg) scale(1.1); 
      opacity: 0.8;
    }
    50% { 
      transform: translateY(-20px) rotate(0deg) scale(1.2); 
      opacity: 1;
    }
    75% { 
      transform: translateY(-10px) rotate(-5deg) scale(1.1); 
      opacity: 0.8;
    }
  }
  
  /* Header del modal */
  .whatsapp-modal .modal-header {
    background: linear-gradient(135deg, 
      #ff9a9e 0%, 
      #fecfef 25%, 
      #ffc3a0 50%, 
      #ffafbd 75%, 
      #ff9a9e 100%);
    background-size: 400% 400%;
    border: none;
    padding: 30px;
    position: relative;
    z-index: 2;
  }
  
  @keyframes modal-header-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  .whatsapp-modal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
      radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .brand-info {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
  }
  
  .logo-container {
    position: relative;
    width: 80px;
    height: 80px;
  }
  
  .modal-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
      0 10px 30px rgba(255, 107, 157, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.5);
  }
  
  @keyframes logo-pulse {
    0%, 100% { 
      transform: scale(1);
      box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    }
    50% { 
      transform: scale(1.05);
      box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
    }
  }
  
  .logo-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
    border-radius: 50%;
  }
  
  @keyframes logo-glow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
  }
  
  .brand-text {
    flex: 1;
  }
  
  .modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
    margin: 0 0 5px 0;
    background: linear-gradient(45deg, #8b4513, #d63384, #8b4513);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  @keyframes title-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  .modal-subtitle {
    font-size: 1.1rem;
    color: #8b4513;
    margin: 0 0 10px 0;
    font-weight: 500;
  }
  
  .schedule-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b4513;
    font-weight: 600;
  }
  
  .schedule-info i {
    color: #d63384;
  }
  
  @keyframes clock-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
  }
  
  .btn-close-modal {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b4513;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
  }
  
  .btn-close-modal:hover {
    background: rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.6);
    transform: scale(1.1) rotate(90deg);
    color: #d63384;
  }
  
  /* Body del modal */
  .whatsapp-modal .modal-body {
    padding: 40px;
    position: relative;
    z-index: 2;
  }
  
  .form-container {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
      0 10px 30px rgba(255, 107, 157, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  
  .form-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .form-header h4 {
    color: #8b4513;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  @keyframes form-title-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  .form-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
  }
  
  .whatsapp-form {
    position: relative;
  }
  
  .form-group {
    margin-bottom: 25px;
    position: relative;
  }
  
  .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b4513;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .form-label i {
    color: #d63384;
    font-size: 1.1rem;
  }
  
  .modal-input,
  .modal-textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
  }
  
  .modal-input:focus,
  .modal-textarea:focus {
    outline: none;
    border-color: #d63384;
    background: rgba(255, 255, 255, 1);
    box-shadow: 
      0 0 0 3px rgba(214, 51, 132, 0.1),
      0 10px 25px rgba(255, 107, 157, 0.2);
    transform: translateY(-2px);
  }
  
  .modal-textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .input-glow,
  .textarea-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
      transparent, 
      rgba(255, 107, 157, 0.1), 
      transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .modal-input:focus + .input-glow,
  .modal-textarea:focus + .textarea-glow {
    opacity: 1;
  }
  
  /* Botón de WhatsApp */
  .btn-whatsapp-modal {
    background: linear-gradient(135deg, 
      #25d366 0%, 
      #128c7e 50%, 
      #25d366 100%);
    background-size: 300% 300%;
    border: none;
    border-radius: 25px;
    padding: 1 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px 
      0 10px 30px rg rgba(255, 255, 255, 0.2);
  }
  
  @keyframes whatsapp-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  .btn-whatsapp-modal:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
      0 15px 40px rgba(37, 211, 102, 0.6),
      0 0 0 1px rgba(255, 255, 255, 0.3),
      0 0 30px rgba(37, 211, 102, 0.4);
  }
  
  .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
  }
  
  .btn-whatsapp-modal i {
    font-size: 1.3rem;
  }
  
  @keyframes whatsapp-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
  }
  
  .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      transparent, 
      rgba(255, 255, 255, 0.4), 
      transparent);
    transition: left 0.6s ease;
  }
  
  .btn-whatsapp-modal:hover .btn-shine {
    left: 100%;
  }
  
  .btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
  }
  
  .btn-particles span {
    position: absolute;
    font-size: 12px;
    opacity: 0;
  }
  
  .btn-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
  }
  
  .btn-particles span:nth-child(2) {
    top: 30%;
    right: 30%;
    animation-delay: 0.5s;
  }
  
  .btn-particles span:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 1s;
  }
  
  @keyframes btn-particle-float {
    0% { 
      transform: translateY(0) scale(0);
      opacity: 0;
    }
    50% { 
      transform: translateY(-20px) scale(1);
      opacity: 1;
    }
    100% { 
      transform: translateY(-40px) scale(0);
      opacity: 0;
    }
  }
  
  /* Footer del modal */
  .whatsapp-modal .modal-footer {
    background: linear-gradient(135deg, 
      rgba(255, 154, 158, 0.1) 0%, 
      rgba(254, 207, 239, 0.1) 100%);
    border: none;
    padding: 20px 40px;
    position: relative;
    z-index: 2;
  }
  
  .contact-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b4513;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  .contact-item i {
    color: #d63384;
    font-size: 1.1rem;
  }
  
  @keyframes contact-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .whatsapp-modal .modal-dialog {
      margin: 10px;
    }
    
    .whatsapp-modal .modal-content {
      border-radius: 20px;
    }
    
    .whatsapp-modal .modal-header {
      padding: 20px;
    }
    
    .brand-info {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }
    
    .logo-container {
      width: 60px;
      height: 60px;
    }
    
    .modal-title {
      font-size: 1.5rem;
    }
    
    .whatsapp-modal .modal-body {
      padding: 20px;
    }
    
    .form-container {
      padding: 20px;
    }
    
    .contact-info {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  /* Efectos de scroll suave */
  html {
    scroll-behavior: smooth;
  }
  
  /* Efectos de carga */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Efectos de hover para imágenes */
  .gallery-item {
    cursor: pointer;
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(214, 51, 132, 0.3);
  }
  
  /* Efectos de texto brillante */
  .glow-text {
    text-shadow: 0 0 10px rgba(214, 51, 132, 0.5);
  }
  
  @keyframes text-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(214, 51, 132, 0.5); }
    50% { text-shadow: 0 0 20px rgba(214, 51, 132, 0.8); }
  }
  
  .animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
  }
  
  .animate-fade-in:nth-child(1) {
    animation-delay: 0.3s;
  }
  
  .animate-fade-in:nth-child(2) {
    animation-delay: 0.6s;
  }
  
  .animate-fade-in:nth-child(3) {
    animation-delay: 0.9s;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  }
  
  .modal-header {
    background: linear-gradient(135deg, #d63384 0%, #e91e63 100%);
    color: white;
    padding: 1rem;
  }
  
  .modal-body {
    padding: 0;
  }
  
  .modal-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    transition: transform 0.3s ease;
  }
  
  .modal-img:hover {
    transform: scale(1.02);
  }
  
  .btn-close {
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .btn-close:hover {
    transform: scale(1.1);
    background-color: rgba(255, 107, 157, 0.2);
  }
  
  /* Efecto de brillo lateral */
  .navbar .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      transparent, 
      rgba(255, 255, 255, 0.6), 
      transparent);
    z-index: 1;
    pointer-events: none;
  }
  
  @keyframes navbar-shine {
    0%, 100% { left: -100%; opacity: 0; }
    50% { left: 100%; opacity: 1; }
  }
  
  /* Efecto de brillo en hover */
  .navbar:hover .container::before {
  }
  
  /* Efecto de partículas flotantes adicionales */
  .navbar .container::after {
    content: '💫 🎈 🎊 💫';
    position: absolute;
    top: 0;
    right: -100%;
    width: 200%;
    height: 100%;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    z-index: 1;
    letter-spacing: 20px;
  }
  
  @keyframes navbar-particles-reverse {
    0% { 
      transform: translateX(100%) translateY(0) rotate(0deg); 
      opacity: 0.2;
    }
    50% { opacity: 0.6; }
    100% { 
      transform: translateX(-100%) translateY(0) rotate(-360deg); 
      opacity: 0.2;
    }
  }
  
  .navbar:hover .container::after {
    color: rgba(255, 255, 255, 0.8);
  }

  /* Efectos de entrada del modal */
  .whatsapp-modal.show .modal-content {
  }
  