  :root {
      --primary: #FF6B9E;
      --primary-dark: #E05586;
      --secondary: #5B9BFF;
      --light-bg: #FFF4F8;
      --dark-text: #2A2A2A;
    }
   
    
    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--light-bg);
      color: var(--dark-text);
      overflow-x: hidden;
    }
    
    /* Navbar Transparente com Leve Branco */
    .navbar {
      background-color: rgba(255, 255, 255, 0.85) !important;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .navbar-brand {
      color: var(--primary) !important;
      font-weight: 800;
    }
    
    .nav-link {
      color: #555 !important;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .nav-link:hover {
      color: var(--primary) !important;
    }
    
    /* Hero Section com Gradiente Personalizado */
    .hero-section {
      background: linear-gradient(135deg, #ff84ae94 0%, #5b9bff9c 100%);
      min-height: 90vh;
      position: relative;
      overflow: hidden;
    }
    .text-color{
      color: #49c1f1;
    }
    .hero-content {
      z-index: 2;
      position: relative;
    }
    
    .hero-image-container {
      position: relative;
      perspective: 1000px;
    }
    
    .hero-image {
      width: 100%;
      max-width: 600px;
      border-radius: 20px;
      box-shadow: 0 25px 50px rgba(0,0,0,0.15);
      transform-style: preserve-3d;
      animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }
    
    /* Galeria Responsiva */
    .gallery-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
      padding: 15px;
    }
    
    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      aspect-ratio: 1/1;
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    
    /* Mobile First Adjustments */
    @media (max-width: 768px) {
      .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
      }
      
      .hero-title {
        font-size: 2.3rem !important;
      }
      
      .hero-image {
        margin-top: 40px;
        max-width: 100%;
        animation: none;
      }
      
      .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      }
      
      /* Garante que não tenha overflow */
      body, html {
        width: 100%;
        overflow-x: hidden;
      }
    }
    
    /* Design Moderno para Botões */
    .btn-modern {
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      border: none;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .btn-primary-modern {
      background-color: var(--primary);
      color: white;
    }
    
    .btn-primary-modern:hover {
      background-color: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 7px 20px rgba(255,107,158,0.4);
    }
    
    .btn-outline-modern {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }
    
    .btn-outline-modern:hover {
      background-color: var(--primary);
      color: white;
    }



  /* cardapio */
.card-menu {
  transition: all 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
} 

.card-menu:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 94, 153, 0.2) !important;
}

.menu-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff84ae94 0%, #5b9bff9c 100%);
  border-radius: 50%;
  padding: 15px;
}

.menu-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Estilo para o modal */
.modal-content {
  border-radius: 20px;
  border: none;
}

.modal-header {
  border-radius: 20px 20px 0 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 20px;
  }
  
  .modal-body .card {
    margin-bottom: 15px;
  }
}




/*contato*/
 .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ff5e99;
  }

  .pill {
    background-color: rgba(255, 94, 153, 0.1);
    color: #ff5e99;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
  }

  .form-control, .form-select {
    border-radius: 10px;
    border: 1px solid #ff5e99;
  }

  .form-control:focus, .form-select:focus {
    border-color: #ff5e99;
    box-shadow: 0 0 5px rgba(255, 94, 153, 0.5);
  }

  .btn-primary {
    background-color: #ff5e99;
    border-color: #ff5e99;
  }

  .btn-primary:hover {
    background-color: #e55a8a;
    border-color: #e55a8a;
  }

  .btn-success {
    background-color: #25D366;
    border-color: #25D366;
  }

  .btn-success:hover {
    background-color: #1ebc5a;
    border-color: #1ebc5a;
  }

  .shadow-sm {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  
/* Animações personalizadas */
  .animate-pop-in {
    animation: popIn 0.6s ease-out;
  }
  
  .animate-fade-in {
    animation: fadeIn 1s ease-out;
  }
  
  .animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
  }
  
  .animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
  }
  
  .input-animate {
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
  }
  
  .input-animate:focus {
    border-color: #ff5e99;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 94, 153, 0.2);
  }
  
  .btn-animate {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .btn-animate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .btn-animate:active {
    transform: translateY(-1px);
  }
  
  .btn-social {
    transition: all 0.3s ease;
  }
  
  .btn-social:hover {
    transform: scale(1.1);
    background-color: #ff5e99 !important;
    border-color: #ff5e99 !important;
    color: white !important;
  }
  
  .shadow-hover {
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .shadow-hover:hover {
    box-shadow: 0 10px 30px rgba(255, 94, 153, 0.15);
  }
  
  /* Keyframes das animações */
  @keyframes popIn {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes slideInLeft {
    0% {
      opacity: 0;
      transform: translateX(-30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    0% {
      opacity: 0;
      transform: translateX(30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Efeito de loading no botão de enviar */
  .btn-loading {
    position: relative;
    color: transparent;
  }
  
  .btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  .fw-bold{
      font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ff5e99; 
  text-shadow: 2px 2px 5px #ffffff;
  letter-spacing: 3px;
    

}
.fw-boldd {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #00000046; 
  text-shadow: 2px 2px 5px #4ca8ff;
  letter-spacing: 5px;
}

    .text-highlight {
        color: #ff5e99;
        font-size: 1.5rem; /* Adjust font size as needed */
        text-shadow: 0 0 5px rgba(255, 94, 153, 0.8), 0 0 20px rgba(0, 153, 255, 0.8); /* Pink and blue glow effect */
    }

    .borda{ 
      border-left: 15px solid rgba(255, 90, 200, 0.349);
      border-top: 15px solid rgba(255, 90, 200, 0.37);
      border-radius: 18px;
      box-shadow: 20px 20px 10px rgba(0, 0, 0, 0.432);
      transform: rotate(350deg);
    }

    @keyframes textChange {
  0% { content: "Criamos experiências encantadas que ficarão para sempre na memória do seu filho!"; }
  25% { content: "Momentos de alegria e diversão que seu filho nunca vai esquecer!"; }
  50% { content: "Festas personalizadas que refletem a personalidade do seu pequeno!"; }
  75% { content: "Magia e encanto em cada detalhe da sua celebração!"; }
  100% { content: "Criamos experiências encantadas que ficarão para sempre na memória do seu filho!"; }
}

#animated-text {
    animation: textChange 10s infinite;
    overflow: hidden;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
#animated-text {
    animation: fadeIn 0.5s forwards; /* Fading in */
    overflow: hidden;
    opacity: 1; /* Start visible */
}