/* Importación de fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Poppins:wght@300;400;600;700&display=swap');

/* Variables CSS para colores */
:root {
    --color-primary: #0D9488; /* Teal-600 */
    --color-primary-dark: #067A6C;
    --color-secondary: #FBBF24; /* Amber-400 */
    --color-secondary-dark: #D97706;
    --color-accent: #F87171; /* Red-400 */
    --color-dark-bg: #1A202C;
    --color-gray-900: #1F2937;
    --color-light-bg: #F9FAFB;
    --color-text-dark: #1F2937;
    --color-text-light: #f9f9f9;
    --color-gray-700: #374151;
    --color-gray-400: #9CA3AF;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}


/*
===========INTRO=======
*/
/*FONDO PRINCIPAL*/
.banner {
  height: 100vh;  
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/bg.jpg');
  background-size: contain;
  background-position: center;
  animation: bgZoomIn 4s ease-in-out 1 forwards;
  z-index: -1;
  pointer-events: none;
}
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/after.png');
  background-size: cover;
  background-position: top;
  transform: scale(2);
  animation: bgZoomOut 4s ease-in-out 1 forwards;
  z-index: -1;
  pointer-events: none;
}
@keyframes bgZoomIn {
  from {
    transform: scale(1.2);
  } to {
    transform: scale(1);
  }
}
@keyframes bgZoomOut {
  from {
    transform: scale(1);
  } to {
    transform: scale(2);
  }
}

.letrero
{
  position: absolute;
  width: 350px;
  top:10px;
}

/*
===========FINAL DE INTRO=======
*/

/*
============SIDEBAR============
*/
.toggle-btn,.sidebar
{
    z-index: 1000;
}
 
.sidebar.show {
  left: 0px!important;
}

.toggle-btn {
  position: fixed;
  right: 10px;
  top: 20px;
  background: #ff5733;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.sidebar {
    position: fixed;
    left: -300px!important;
    top: 0;
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background-image: linear-gradient(to right top, #1c4465, #007296, #00a19d, #00cb73, #a8eb12);
    box-shadow: 8px 8px 16px #171717, -8px -8px 16px #fff;
    border-radius: 0px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: left 0.3s ease-in-out;
}

.sidebar h2 {
    color: #ff5733;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.sidebar ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    display: block;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: inset 4px 4px 8px #15120c, inset -4px -4px 8px #fff;
    transition: 0.3s;
    text-transform: uppercase;
    background-color: #00cb73;
}

.sidebar ul li a:hover {
    background: #fff;
    color: rgb(62, 60, 60);
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.2), /* Sombra oscura en la parte inferior */
        -2px -2px 12px rgba(255, 253, 253, 0.8); /* Sombra clara en la parte superior */
}

.content {
    margin-left: 270px;
    padding: 20px;
    flex: 1;
}

.letrero_menu{
  width: 200px;
  height: 100px;
}

/*
============FIN SIDEBAR============
*/



h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    color: var(--color-gray-900);
    margin-top: 0;
}


.div_precio
{
    position: relative!important;
    top:-100px;
    text-align: center;    
    color: #ffffff;
    border: 1px solid #ffffff;
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 80% 100%, 20% 100%, 0% 80%);
}

.precio_platillo
{
    font-family: 'Lora', serif;
    font-weight: bold;
    font-size: 34px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0; /* py-16 */
    text-align: center;
}

.section-title {
    font-size: 2.5rem; /* text-4xl */
    font-weight: 700; /* font-bold */
    margin-bottom: 3rem; /* mb-12 */
    color: var(--color-gray-900);
}

.section-title.text-white {
    color: var(--color-text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600; /* font-semibold */
    padding: 0.75rem 2rem; /* py-3 px-8 */
    border-radius: 9999px; /* rounded-full */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-lg */
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-gray-900);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-dark);
    transform: scale(1.05);
}

/* Header & Navigation */
.main-header {
    background-color: var(--color-gray-900);
    color: var(--color-text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    font-size: 1.875rem; /* text-3xl */
    font-family: 'Lora', serif;
    font-weight: 700;
    letter-spacing: 0.05em; /* tracking-wider */
}

.nav-links {
    display: flex;
    gap: 1.5rem; /* space-x-6 */
}

.nav-links a {
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--color-secondary);
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 1.5rem; /* text-2xl */
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('../img/interior.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-light);
    overflow: hidden; /* To contain content within hero-overlay */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); /* bg-black bg-opacity-50 */
}

.hero-content {
    position: relative; /* z-10 */
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem; /* text-5xl */
    font-weight: 700;
    line-height: 1.25; /* leading-tight */
    margin-bottom: 1rem;
    color: var(--color-text-light);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-subtitle {
    font-size: 1.25rem; /* text-xl */
    margin-bottom: 2rem;
    max-width: 48rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.2s; /* delay */
}

.hero-btn {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.4s; /* delay */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nuestra Esencia Section */
.essence-section {
    background-color: var(--color-light-bg);
}

.essence-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem; /* gap-12 */
    align-items: center;
}

.essence-text {
    text-align: center;
}

.essence-text p {
    font-size: 1.125rem; /* text-lg */
    line-height: 1.625; /* leading-relaxed */
    margin-bottom: 1rem;
    color: var(--color-gray-700);
}

.essence-image-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.essence-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    transition: transform 0.5s ease-in-out;
}

.essence-image-container:hover .essence-image {
    transform: scale(1.02);
}

.essence-image-caption {
    position: absolute;
    bottom: -1rem; /* -bottom-4 */
    right: -1rem; /* -right-4 */
    background-color: var(--color-primary-dark); /* bg-teal-600 */
    color: var(--color-text-light);
    padding: 1rem;
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.essence-image-container:hover .essence-image-caption {
    opacity: 1;
}

.essence-image-caption p {
    font-weight: 600; /* font-semibold */
    margin: 0;
    font-size: 1rem;
}


/* Coctelería Section */
.cocktails-section {
    background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-dark)); /* from-teal-500 to-emerald-700 */
    color: var(--color-text-light);
}

.cocktail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* gap-8 */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cocktail-card {
    background-color: white;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cocktail-card:hover {
    transform: scale(1.05);
}

.cocktail-card.featured-card {
    border: 4px solid var(--color-secondary); /* border-4 border-amber-400 */
}

.cocktail-img {
    width: 100%;
    height: 18rem; /* h-72 */
    object-fit: cover;
}

.cocktail-info {
    padding: 1.5rem; /* p-6 */
    color: var(--color-gray-900);
    text-align: left;
}

.cocktail-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cocktail-description {
    font-size: 1rem; /* text-base */
    margin-bottom: 1rem;
}

.cocktail-tag {
    display: inline-block;
    background-color: var(--color-secondary); /* bg-amber-200, emerald-200, sky-200 */
    color: var(--color-secondary-dark); /* text-amber-800, emerald-800, sky-800 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600;
    padding: 0.25rem 0.75rem; /* px-3 py-1 */
    border-radius: 9999px; /* rounded-full */
}

.view-menu-btn {
    margin-top: 3rem; /* mt-12 */
}

/* Gastronomía Section */
.gastronomy-section {
    background-color: var(--color-light-bg);
}

.food-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* gap-8 */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.food-card {
    background-color: white;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.food-card:hover {
    transform: scale(1.02);
}

.food-img {
    width: 100%;
    height: 16rem; /* h-64 */
    object-fit: cover;
}

.food-info2 {
    position: relative;
    top: -80px;
    padding: 1.5rem; /* p-6 */
    text-align: left;
}

.food-info {   
    padding: 1.5rem; /* p-6 */
    text-align: left;
}

.food-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.food-description {
    color: var(--color-gray-700);
    font-size: 1rem;
}


/* Estilos para pantallas grandes (desktop) - Por defecto */
.grill-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Tres columnas en pantallas grandes */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Media Query para pantallas más pequeñas (móviles) */
@media (max-width: 768px) { /* Puedes ajustar este valor (breakpoint) según tus necesidades */
    .grill-3 {
        grid-template-columns: 1fr; /* Una sola columna en pantallas pequeñas */
        padding: 0 1rem; /* Mantén el padding lateral para que no se pegue a los bordes */
        /* No necesitas cambiar max-width, margin, ni gap aquí si quieres que el gap se mantenga */
    }
}

/* Opcional: Si quieres un gap diferente o eliminarlo en móvil */
@media (max-width: 768px) {
    .grill-3 {
        grid-template-columns: 1fr; /* Una sola columna en pantallas pequeñas */
        padding: 0 1rem;
        gap: 1rem; /* Podrías reducir el gap en móvil si 2rem es demasiado */
        /* O incluso gap: 0; si no quieres espacio entre elementos en móvil */
    }
}

/* Snow Machine Highlight */
.snow-machine-highlight {
    margin-top: 4rem; /* mt-16 */
    background: linear-gradient(to right, #2563EB, #4F46E5); /* from-blue-600 to-indigo-800 */
    color: var(--color-text-light);
    padding: 2rem; /* p-8 */
    border-radius: 1rem; /* rounded-2xl */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-xl */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* gap-8 */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem;
}

.snow-machine-text {
    text-align: center;
}

.snow-machine-title {
    font-size: 2rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 1rem;
}

.snow-machine-description {
    font-size: 1.125rem; /* text-lg */
    line-height: 1.625;
    margin-bottom: 1rem;
}

.snow-machine-tag {
    display: inline-block;
    background-color: white;
    color: #1E40AF; /* blue-800 */
    font-weight: 700;
    padding: 0.5rem 1rem; /* px-4 py-2 */
    border-radius: 9999px; /* rounded-full */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06); /* shadow-md */
}

.snow-machine-image-wrapper {
    width: 100%;
}

.snow-machine-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-xl */
    border: 4px solid #93C5FD; /* border-4 border-blue-300 */
}

/* Ambiente Section */
.ambiance-section {
    background-color: var(--color-gray-100);
}

.ambiance-description {
    font-size: 1.125rem;
    line-height: 1.625;
    max-width: 48rem; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem; /* mb-10 */
    color: var(--color-gray-700);
}

.ambiance-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* gap-6 */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-item {
    border-radius: 0.75rem; /* rounded-xl */
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 18rem; /* h-72 */
    object-fit: cover;
}

/* Eventos Deportivos Section */
.events-section {
    background-color: var(--color-gray-900);
    color: var(--color-text-light);
}

.events-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* gap-8 */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    align-items: center;
}

.events-text {
    text-align: center;
}

.events-text p {
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.event-promos {
    list-style: disc;
    list-style-position: inside;
    text-align: left;
    font-size: 1.25rem; /* text-xl */
    line-height: 1.5;
    max-width: 28rem; /* max-w-md */
    margin: 0 auto;
    padding-left: 1.5rem;
}

.event-promos li strong {
    color: var(--color-secondary);
}

.events-image-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.events-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    border: 4px solid var(--color-secondary);
}


/* Contacto Section */
.contact-section {
    background-color: var(--color-light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem; /* gap-12 */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-subtitle {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 600;
    margin-bottom: 1.5rem; /* mb-6 */
    color: var(--color-gray-900);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* space-y-6 */
}

.form-group label {
    display: block;
    font-size: 1.125rem; /* text-lg */
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-gray-700);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem; /* p-4 */
    border: 1px solid #D1D5DB; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    transition: all 0.3s ease;
    box-sizing: border-box; /* Ensures padding doesn't add to total width */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.5); /* ring-2 focus:ring-teal-500 */
}

.submit-btn {
    width: 100%;
    padding: 1rem 1.5rem; /* py-4 px-6 */
    border-radius: 9999px; /* rounded-full */
}

.contact-details {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--color-gray-700);
}

.contact-details strong {
    color: var(--color-gray-900);
    font-weight: 600;
}

.link-teal {
    color: var(--color-primary-dark);
}

.link-teal:hover {
    text-decoration: underline;
}

.hours-list {
    list-style: disc;
    list-style-position: inside;
    margin-left: 1rem;
}

.map-container {
    border-radius: 0.75rem; /* rounded-xl */
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-xl */
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Footer */
.main-footer {
    background-color: var(--color-gray-900);
    color: var(--color-gray-400);
    padding: 2rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem; /* text-2xl */
    font-family: 'Lora', serif;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* space-x-6 */
    margin-bottom: 1.5rem;
}

.social-icon img {
    width: 2rem; /* w-8 */
    height: 2rem; /* h-8 */
    filter: invert(70%) sepia(0%) saturate(1%) hue-rotate(18deg) brightness(98%) contrast(90%); /* To make SVG icons light gray */
    transition: filter 0.3s ease;
}

.social-icon:hover img {
    filter: invert(100%) sepia(0%) saturate(7483%) hue-rotate(222deg) brightness(108%) contrast(107%); /* To make them white on hover */
}

.copyright, .design-credit {
    font-size: 0.875rem; /* text-sm */
    margin-top: 0.5rem;
}


/* --- Responsive Design --- */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .essence-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .essence-text {
        text-align: left;
    }

    .cocktail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .snow-machine-highlight {
        flex-direction: row;
        text-align: left;
    }
    .snow-machine-text {
        text-align: left;
        width: 66.666667%; /* lg:w-2/3 */
    }
    .snow-machine-image-wrapper {
        width: 33.333333%; /* lg:w-1/3 */
    }

    .ambiance-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .events-text {
        text-align: left;
    }
    .event-promos {
        margin: 0;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem; /* lg:text-7xl */
    }
    .hero-subtitle {
        font-size: 1.5rem; /* lg:text-2xl */
    }
    .cocktail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .food-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .ambiance-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-nav .nav-links {
        display: flex !important; /* Override JS for mobile menu on desktop */
        flex-direction: row;
        position: static;
        width: auto;
        padding: 0;
        background: none;
        gap: 1.5rem;
    }
    .menu-toggle {
        display: none;
    }
   
}

/* Specific for mobile navigation toggle */
@media (max-width: 767px) {
    .main-nav .nav-links {
        display: none; /* hidden on mobile by default */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Below the header */
        left: 0;
        width: 100%;
        background-color: var(--color-gray-800); /* A slightly lighter dark gray for mobile menu */
        padding: 1rem;
        gap: 1rem; /* space-y-4 */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 40;
    }

    .main-nav .nav-links--open {
        display: flex;
    }

    .main-nav .nav-links a {
        text-align: center;
        padding: 0.5rem 0;
        width: 100%;
    }

    .main-nav .menu-toggle {
        display: block; /* Show hamburger on mobile */
    }

   
}



/* Estilos generales para la lista del menú */
.food-titlegrill {
    /* Propiedades existentes */
    font-size: 2.5rem; /* Ajustado para que se vea grande como en la imagen. Puedes variar. */
    font-weight: 900; /* Más grueso, casi 'black' o 'heavy' */
    margin-bottom: 0.5rem;
    color: #FBBF24; /* Color amarillo/dorado */

    /* Nuevas propiedades para el efecto visual */
    font-family: 'Impact', 'Bebas Neue', 'Arial Black', sans-serif; /* Fuentes de impacto, en orden de preferencia */
    text-transform: uppercase; /* Asegura que el texto esté en mayúsculas */
    letter-spacing: 0.1em; /* Espaciado entre letras para un look más impactante */
    
     text-shadow:
        -1px -1px 0 #c38727,
        1px -1px 0 #c38727,
        -1px 1px 0 #c38727,
        1px 1px 0 #c38727;
    
}
/* Contenedor principal de la lista de precios */
.menu-precios-tiki {
    list-style: none; /* Elimina los marcadores de lista por defecto */
    padding: 0;       /* Elimina el padding por defecto del ul */
    margin: 0px;
    font-family: 'Lora', serif; /* Misma fuente elegante */
    color: #2e2e2e; /* Un gris muy oscuro para el texto principal */
    max-width: 650px; /* Ancho máximo para la legibilidad en pantallas grandes */
    margin-left: auto; /* Centra la lista */
    margin-right: auto; /* Centra la lista */   
    border-radius: 0px; /* Esquinas ligeramente redondeadas */
    background-color: rgba(255, 255, 255, 0.05); /* Un fondo muy sutil para destacar */
    padding: 0px; /* Relleno interno para la tarjeta del menú */
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

/* Estilos para cada item individual del menú */
.menu-precios-tiki li {
    display: flex; /* Habilita Flexbox para alinear contenido */
    justify-content: space-between; /* Empuja el nombre a la izquierda y el precio a la derecha */
    align-items: center; /* Centra verticalmente el texto y el precio */
    padding: 0.3rem 0; /* Espaciado interno vertical */
    font-size: 1.15rem; /* Tamaño de fuente ligeramente más grande */
    line-height: 1.5; /* Altura de línea para mejor legibilidad */
    /* Color de borde sutil para los separadores */
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Separador entre ítems */
}

/* Elimina el borde inferior del último ítem para un acabado limpio */
.menu-precios-tiki li:last-child {
    border-bottom: none;
}

/* Estilos para el nombre del platillo (parte que no es el span) */
.menu-precios-tiki li {
    font-weight: 500; /* Un peso de fuente medio para el nombre */
}

/* Estilos específicos para el precio */
.menu-precios-tiki .precio-item {
    font-family: 'Lora', serif; /* Asegura que la fuente sea la misma */
    font-weight: bold; /* El precio más grueso */
    font-size: 1.3rem; /* Precio ligeramente más grande que el nombre */
    color: #ff5722; /* Tu color naranja vibrante para destacar el precio */
    margin-left: 1rem; /* Pequeño espacio para separar el precio del nombre */
    flex-shrink: 0; /* Evita que el precio se comprima si el texto del nombre es largo */
}

/* Efecto hover opcional para los ítems */
.menu-precios-tiki li:hover {
    background-color: rgba(231, 231, 231, 0.5)!important; /* Fondo muy sutil al pasar el ratón */
    border-radius: 4px; /* Ligeras esquinas redondeadas en hover */
    cursor: pointer;
}




.wooden-plank {
    background: linear-gradient(to bottom, #966010, rgb(111, 90, 27)); /* Degradado base para el color general de la madera */    
    font-family: 'Lora', serif; /* Asegura que la fuente sea la misma */
    font-family: sans-serif; /* Una fuente legible */
    font-size: 2.2rem;
    line-height: 1.4;
    text-align: center;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: 2px solid #966010; /* Borde ligeramente más oscuro */
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra interior y exterior para dar relieve */
    max-width: 80%; /* Ajusta el ancho según necesites */
    margin: 2rem auto; /* Centra el bloque */
    position: relative; /* Para los pseudo-elementos de las vetas */
    overflow: hidden; /* Recorta las vetas que puedan salirse */

    --s: 18px;  /* control the size of the spikes */
    --w: 350px; /* preferred image width */
  

  aspect-ratio: 1;
  height: 250px;
  width: 100%;
  box-sizing: border-box; 
  --_m:#0000 0 calc(2*atan(.5)),#000 0 50%;
  mask:
    repeating-conic-gradient(from atan(2) at 50% var(--s),var(--_m))
     calc(2*var(--s)) calc(-1*var(--s))/calc(4*var(--s)) 100% intersect,
    repeating-conic-gradient(from atan(-.5) at var(--s),var(--_m))
     calc(-1*var(--s)) calc(2*var(--s))/100% calc(4*var(--s));
}

.wooden-plank::before,
.wooden-plank::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6; /* Ajusta la intensidad de las vetas */
    background-repeat: repeat;
    background-size: auto 20%; /* Ajusta el espaciado vertical de las vetas */
    pointer-events: none; /* Permite interactuar con el contenido debajo */
}

.wooden-plank::before {
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), transparent 50%, rgba(255, 255, 255, 0.2) 100%); /* Vetas claras */
    transform: rotate(-10deg); /* Ligeramente inclinadas */
}

.wooden-plank::after {
    background-image: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.1) 50%, transparent 70%); /* Vetas oscuras */
    transform: rotate(15deg); /* Inclinación diferente para más variación */
}

.wooden-plank span {
    font-weight: bold; /* Resalta los precios y la promo */
    font-size: 1.3rem;
}


/* Estilos para el texto dentro del wooden-plank */
.wooden-plank .promo-text {
    font-family: 'Impact', 'Bebas Neue', 'Arial Black', sans-serif; /* Fuentes de impacto */
    font-size: 1.8rem; /* Ajusta el tamaño de fuente según necesites */
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2; /* Espaciado entre líneas */
    letter-spacing: 0.05em; /* Ligeramente espaciado */

    color: #fff; /* Color base del texto: Azul */
    
    /* Efecto de sombra/contorno verde */
    text-shadow: 
        -1px -1px 0 #0F9D58, /* Verde oscuro (como el de tu imagen) */
        1px -1px 0 #0F9D58,
        -1px 1px 0 #0F9D58,
        1px 1px 0 #0F9D58,
        2px 2px 0 #0F9D58, /* Para darle más grosor a la sombra */
        -2px -2px 0 #0F9D58; /* Y extenderlo un poco más */
        /* Puedes añadir más capas con diferentes offsets para un efecto más grueso */
}

/* Estilos específicos para el precio individual "$139" */
.wooden-plank .precio-snow {
    color: #FBBF24; /* Color amarillo/naranja para el precio */
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000; /* Sombra negra para destacarlo */
}

/* Estilos para la línea de la PROMO 2X$199 */
.wooden-plank .promo-bold {
    font-size: 2.2rem; /* Más grande para la promoción */
    font-weight: 900; /* Más grueso */
    margin-top: 1rem; /* Espacio superior */
    text-shadow: 
        -2px -2px 0 #0F9D58, /* Sombra/contorno verde */
        2px -2px 0 #0F9D58,
        -2px 2px 0 #0F9D58,
        2px 2px 0 #0F9D58,
        4px 4px 0 #0F9D58; /* Sombra más pronunciada para la promo */
}

.wooden-plank .promo-offer {
    color: #e2e2e2; /* Azul para el texto de la promo */
    /* text-shadow heredado de promo-bold */
}