 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box; 
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     }
    body {
        background-color: #fdf6f0; 
        color: #333; }

    /* Header */
    header { 
        background: linear-gradient(90deg, #2E8B57, #3CB371); 
        color: white; 
        padding: 25px 0; 
        text-align: center;
     }
    header h1 { 
        font-size: 50px; 
        font-weight: bold; 
        color: #FFD700;
    }
    .titulo {
        width: 250px;
        height: auto;
        border-radius: 50%;
        margin-bottom: 10px;
    }
    nav { 
        margin-top: 10px;
        font-size: 18px; 
        text-align: center ;
    }
    nav a { 
        margin: 0 15px; 
        text-decoration: none; 
        color: white; 
        font-weight: 600; 
        transition: all 0.3s;
     }
    nav a:hover { 
        color: #FFD700; 
        text-decoration: underline; 
    }

    /* Sections */
    section { 
        padding: 30px 20px; 
        max-width: 1100px; 
        margin: auto; 
    }

    h2 { 
        margin-bottom: 30px; 
        color: #2E8B57; 
        text-align: center; 
        font-size: 2em; 
        border: 5px solid #3CB371;
        background-color: #FFD700;
        border-radius: 20px;
       
        }

    /* Menú */
    .menu { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
        gap: 25px; 
    }
    .menu-item { 
        background: white; 
        padding: 20px; border-radius: 12px; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
        transition: transform 0.3s;
     }
    .menu-item:hover { 
        transform: translateY(-5px); 
    }
    .menu-item h3 { 
        color: #3CB371; 
        margin-bottom: 10px; 
    }
    .menu-item p {
         font-size: 16px; 
        }

    /* Galería */

.gallery {
    display: flex;             
    flex-wrap: wrap;           
    justify-content: center;   
    gap: 30px;                 
    padding: 20px;             
}

.gallery img {
    max-width: 300px;          
    width: 100%;             
    height: auto;        
    border-radius: 12px;     
    object-fit: cover;        
    transition: transform 0.3s, filter 0.3s;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);    
    filter: brightness(1.1);  
}

    /* Ubicación */
    .map-container { 
        border-radius: 12px; 
        overflow: hidden; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
        margin-bottom: 20px;
     }

    /* Footer */
    footer { 
        background-color: #2E8B57; 
        color: white; text-align: center; 
        padding: 25px; 
        margin-top: 50px; font-size: 0.9em;
        font-weight: bold;
     }

/* CONTACTO */
.contact{
    padding:100px 20px;
    text-align:center;
    font-weight: bold;
    font-size: 20px;
    border: 2px solid #3CB371;
    background-color: rgb(195, 195, 245);
}

.contact a{
    display:inline-block;
    margin-top:20px;
}

/* WHATSAPP */
.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    padding:15px;
    border-radius:50%;
    text-decoration:none;
    
}

input, textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.btn {
    background: #3CB371;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn:hover {
    background: #2E8B57;
}
  #reloj {
  font-family: "Poppins", sans-serif; 
  font-size: 20px;           
  color: #00ff00;             
  background-color: #222;     
  padding: 7px;             
  border-radius: 10px;       
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
  text-align: center;
  color: bisque;
}
#reloj {
  font-weight: bold;
  }
  .titulo-reloj {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #0a140a;
  font-size: 18px;
  }
  .contact:hover {
    background-color: #25D366;
    transition: background-color 0.3s ease, color 0.3s ease;
    }


.texto-bienvenida{
    text-align: center;
    max-width: 700px;
    margin: auto;
    font-weight: bold;
    font-size: 20px;
    border: 2px solid #3CB371;
    padding: 10px;
    background-color: #25D366;
}


.tabla-horarios{
    width: 100%;
    border-collapse: collapse;
    max-width: 600px;
    margin: auto;
    margin-top: 30px;
}

.tabla-horarios th,
.tabla-horarios td{
    border: 2px solid #3CB371;
    padding: 10px;
}

.tabla-horarios th{
    background-color: #25D366;
    text-align: center;
}


.reseña{
    text-align: center;
    max-width: 700px;
    margin: auto;
    font-weight: bold;
    font-size: 20px;
    border: 2px solid #3CB371;
    padding: 10px;
    background-color: #25D366;
}


.contacto-texto{
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    border: 2px solid #3CB371;
    padding: 10px;
    background-color: #25D366;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {

    header h1 {
        font-size: 28px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 14px;
    }

    section {
        padding: 20px 10px;
    }

    .menu {
        grid-template-columns: 1fr;
    }

    .gallery img {
        max-width: 100%;
    }

    iframe {
        width: 100% !important;
        height: 300px;
    }

    h2 {
        font-size: 1.4em;
        padding: 10px;
    }

    .texto-bienvenida,
    .reseña,
    .contacto-texto {
        font-size: 16px;
        padding: 10px;
    }
}


.aviso {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #3CB371;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 200px;
    color:black;
    font-size: 20px;
}