.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: white;
    color: #FFF;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

body{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f5f2;
  }
  
  /* Para evitar que el navbar fijo tape el contenido */
  body {
    padding-top: 70px;
}
  /* Estilos del navbar (Appbar) */
.navbar {
    background-color: #3e2723;
    padding: 15px 20px;
  }
  
  .navbar-brand img {
    width: 100px;
  }
  
  .navbar-nav .nav-item {
    position: relative;
  }
  
  .navbar-nav .nav-link {
    color: #365a54 !important;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out;
  }
  
  .navbar-nav .nav-link:hover {
    color: #ffe0b2 !important;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 8px;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.2s ease;
    z-index: 1000;
    width: 200px;
  }
  
  .dropdown-item {
    padding: 12px 15px;
    font-size: 16px;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .dropdown-item:hover {
    background-color: #ffe0b2;
    color: #3e2723;
  }
  
  .nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  @media (min-width: 992px) {
    .navbar-collapse {
      justify-content: space-around;
    }
    .navbar-nav {
      width: 80%;
      display: flex;
      justify-content: space-around;
    }
  }

  .icon {
    width: 25px;
    height: auto;
  }


  .title {
    margin-top: 50px;

    width: 100%;
    text-align: center;
    height: 300px;
    font-size: 2.5rem;
    color: #ccc;
    background-image: url(../images/catering.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;

  }

 /* Contenedor general de la sección */
.catering-section {
    max-width: 1200px;    /* Ancho máximo del contenedor */
    margin: 0 auto;       /* Centrar horizontalmente */
    padding: 2rem;        /* Espacio interno */
  }
  
  /* Estilos para el título principal (h2.title) */

  
  /* Texto y subtítulo (h3 dentro de .text) */
  .text h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
  }
  
  /* Párrafos dentro de .text */
  .text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
    text-align: justify;

  }
  
  /* Imágenes del carrusel */
  .carousel-inner img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ajusta la imagen para que se vea bien recortada */
  }
  
  /* Adaptación en pantallas más anchas (tablets, desktops) */
  @media (min-width: 768px) {
    .catering-section {
      display: flex;              /* Mostramos flex para alinear texto e imágenes */
      align-items: flex-start;    /* Alineación vertical al inicio */
      justify-content: space-between; /* Separar contenido a los extremos */
    }
  
    .text {
      flex: 1;          /* Que ocupe un espacio flexible */
      margin-right: 2rem; /* Separación del carrusel */
    }
  
    #carouselExampleSlidesOnly {
      flex: 1;          /* El carrusel ocupa la otra mitad */
    }
  }


  .container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
  }
  h1 {
    text-align: left;
    margin-bottom: 20px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-row {
    display: flex;
    gap: 20px;
  }
  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
  }
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="date"],
  input[type="number"],
  select,
  textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
  }
  textarea {
    resize: vertical;
  }
  /* Ajusta la separación de los radios/checkboxes */
  .options-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 5px;
  }
  .option {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .submit-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  .submit-btn:hover {
    background: #333;
  }

  footer {
    background-color: #3e2723;
    color: #f3e5ab;
    padding: 20px 0;
  }