/* OPTIMIZED BUILD */
/* ===== VARIABLES CSS (Brand Molly's) ===== */
:root {
  --primary: #6F432A;
  --secondary: #B57D4A;
  --bg-light: #FDFBF2;
  --accent: #B57D4A;
  --text-dark: #2C221B;
  --text-light: #6B4F3C;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 6px rgba(111, 67, 42, 0.08);
  --shadow-md: 0 10px 25px -5px rgba(111, 67, 42, 0.15);
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-primary: 'Raleway', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --transition: all 0.3s ease;
}

/* ===== RESET Y BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  display: none !important;
}

main {
  position: relative;
  z-index: 10;
}

h1, h2, h3 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.accent {
  color: var(--accent);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(253, 251, 242, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(111, 67, 42, 0.05) 0%, rgba(253, 251, 242, 0.9) 100%);
  padding: 6rem 0;
}

.hero-container {
  max-width: 800px;
}

.hero-logo {
  max-width: 300px;
  width: 80%;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
}

.hero-section h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-block {
  width: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== WHATSAPP FLOAT - VERSIÓN ÚNICA Y CORREGIDA ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 9999;
  text-decoration: none;
  border: 3px solid white;
  opacity: 1;
  visibility: visible;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
  background: #20ba5c;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
}

.scroll-top.show {
  display: flex;
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.3s ease;
}

.scroll-top:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 5rem 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.about-image img:hover {
  transform: scale(1.02);
}

/* ===== ITEMS SECTION (Menú) ===== */
.items-section {
  padding: 5rem 0;
  background: var(--bg-light);
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.item-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: left;
}

.item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.item-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.item-card h3 {
  font-size: 1.5rem;
  margin: 1rem 1rem 0.5rem;
  color: var(--primary);
}

.item-card p {
  color: var(--text-light);
  margin: 0 1rem 1rem;
}

.price {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 1rem 1rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(111, 67, 42, 0.2);
}

/* ===== LOCATIONS SECTION ===== */
.locations-section {
  padding: 5rem 0;
  background: white;
  text-align: center;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.location-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  text-align: left;
  transition: var(--transition);
  cursor: pointer;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.location-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.location-card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* ===== MAPA ===== */
.map-container {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

#dynamic-map {
  width: 100%;
  height: 400px;
  z-index: 1;
  position: relative;
  border-radius: var(--radius-lg);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.contact-details li[data-location] {
  cursor: pointer;
  transition: var(--transition);
  padding: 5px 10px;
  border-radius: 8px;
}

.contact-details li[data-location]:hover {
  background: rgba(111, 67, 42, 0.1);
  transform: translateX(5px);
}

.contact-details a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--secondary);
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #e0d6cc;
  border-radius: 8px;
  font-family: var(--font-primary);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(111, 67, 42, 0.1);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 5rem 0;
  background: white;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* ===== PROMOS SECTION ===== */
.promos-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
  text-align: center;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.promo-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.promo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  z-index: 2;
}

.promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.promo-content {
  padding: 1.5rem;
}

.promo-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.promo-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.current-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.original-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
}

.btn-promo {
  display: inline-block;
  width: 100%;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-promo:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 5rem 0;
  background: white;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(111, 67, 42, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-size: 2rem;
}

.gallery-overlay small {
  color: white;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.2rem 1rem;
  border-radius: 50px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-light);
  text-align: center;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: left;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 1rem;
  font-size: 5rem;
  color: rgba(111, 67, 42, 0.1);
  font-family: var(--font-secondary);
  line-height: 1;
}

.testimonial-rating {
  color: #FFD700;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin: 1rem 0;
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid #eee;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-date {
  font-size: 0.8rem;
  color: #999;
}

/* ===== RESERVAS SECTION ===== */
.reservas-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.reservas-card {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-dark);
}

.reservas-form {
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reservas-form input,
.reservas-form select,
.reservas-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e0d6cc;
  border-radius: 8px;
  font-family: var(--font-primary);
}

.reservas-form input:focus,
.reservas-form select:focus,
.reservas-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* ===== NEWSLETTER ===== */
.newsletter-card {
  background: var(--primary);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.newsletter-card h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.newsletter-card input {
  width: 100%;
  padding: 1rem;
  margin: 1rem 0;
  border: none;
  border-radius: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li[data-location] {
  cursor: pointer;
  transition: var(--transition);
  padding: 2px 5px;
  border-radius: 4px;
}

.footer-col ul li[data-location]:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== SECTION TAG ===== */
.section-tag {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(111, 67, 42, 0.1);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ===== HERO BADGES ===== */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}

.badge-icon {
  font-size: 1.3rem;
}

/* ===== STATS ===== */
.stats-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-secondary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== MENU TABS ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.8rem 2rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary);
  color: white;
}

/* ===== BOTONES ADICIONALES ===== */
.btn-add {
  display: inline-block;
  width: calc(100% - 2rem);
  margin: 0 1rem 1rem;
  padding: 0.7rem;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-add:hover {
  background: var(--primary);
  transform: scale(1.02);
}

/* ===== MENU TOGGLE (Hamburguesa) ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== MODAL (Lightbox) ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal.show {
  display: flex;
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  animation: zoomIn 0.3s ease;
}

.modal-content img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 1;
}

.modal-close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.2);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== LEAFLET MAP STYLES ===== */
.custom-marker {
  font-size: 24px;
  background: white;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  border: 3px solid #6F432A;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}

.custom-marker:hover {
  transform: scale(1.15);
  border-color: #B57D4A;
  box-shadow: 0 5px 12px rgba(111, 67, 42, 0.4);
}

.leaflet-popup-content {
  font-family: var(--font-primary);
  min-width: 200px;
}

.leaflet-popup-content h4 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 1.2rem;
}

.leaflet-popup-content p {
  margin: 0 0 5px;
  font-size: 0.95rem;
}

.leaflet-popup-content a {
  color: #25D366;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  padding: 5px 15px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  transition: var(--transition);
}

.leaflet-popup-content a:hover {
  background: #20ba5c;
  transform: scale(1.05);
}

/* ===== TOAST SYSTEM ===== */
.toast-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  padding: 1rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: slideIn 0.3s ease;
  max-width: 350px;
}

.toast.success { background: #10b981; }
.toast.error { background: #ef4444; }
.toast.info { background: var(--primary); }

.toast.hiding {
  animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ===== HELIX POWERED ===== */
.helix-powered {
  text-align: center;
  padding: 0.5rem;
  background: #1a1a1a;
  font-size: 0.9rem;
  position: relative;
  z-index: 20;
}

.helix-powered a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}

.helix-powered a:hover {
  color: white;
}

/* ===== NO ITEMS MESSAGE ===== */
.no-items {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ===== BODY MENU OPEN ===== */
body.menu-open {
  overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 2rem 2rem;
    transition: 0.3s;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-menu.show {
    right: 0;
  }
  
  .logo img {
    height: 50px;
  }
  
  .about-grid,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-logo {
    max-width: 200px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 80%;
    text-align: center;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
  
  .scroll-top {
    bottom: 90px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .stats-container {
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-col ul li[data-location]:hover {
    transform: translateX(0);
  }
}

/* ===== HERO SECTION CON FONDO DE IMAGEN ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* La imagen de fondo se aplica desde el HTML con style="background-image: ..." */
  background-size: cover;        /* Cubre toda el área */
  background-position: center;   /* Centra la imagen */
  background-repeat: no-repeat;  /* Evita que se repita */
  position: relative;
  padding: 6rem 0;
}

/* Capa oscura para mejorar el contraste del texto */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Ajusta la opacidad (0.3 a 0.7) según tu imagen */
  z-index: 1;
}

/* Asegura que el contenido esté por encima de la capa oscura */
.hero-container {
  position: relative;
  z-index: 2;
  color: white; /* Cambia el color del texto a blanco para que contraste con el fondo oscuro */
}

/* Ajusta el color de los badges si es necesario */
.hero-badges .badge {
  background: rgba(0, 0, 0, 0.7); /* Fondo más oscuro para los badges */
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badges .badge-icon {
  color: var(--secondary); /* Mantén el color de acento */
}

/* Ajusta el color del tagline si es necesario */
.hero-tagline {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== FOOTER CORREGIDO (SIN CUADRADO BLANCO) ===== */
.footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Columna del logo - reset total */
.footer-logo-col {
  all: initial; /* Resetea todas las propiedades heredadas */
  display: block;
}

.footer-logo-container {
  display: block;
  max-width: 220px;
  margin-bottom: 1rem;
  background: transparent;
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 200px;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  filter: brightness(0) invert(1); /* Mantiene el logo blanco */
  opacity: 1;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.9;
}

.footer-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 280px;
  font-size: 0.95rem;
  margin: 0;
  padding: 0;
}

/* Resto de columnas del footer */
.footer-col {
  color: white;
  min-width: 0; /* Evita desbordes */
}

.footer-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: white;
  transform: translateX(3px);
}

/* Direcciones clickeables (solo las que tienen data-location) */
.footer-col ul li[data-location] {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
  padding: 2px 5px;
  border-radius: 4px;
  display: inline-block;
}

.footer-col ul li[data-location]:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateX(5px);
}

/* Redes sociales */
.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-links a {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.3rem;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.social-links a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}
.social-links a[aria-label="WhatsApp"]:hover { background: #25D366; }
.social-links a[aria-label="Facebook"]:hover { background: #1877f2; }

/* Línea inferior */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo-container {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-col ul li[data-location]:hover {
    transform: translateX(0);
  }
}

/* ===== CORRECCIÓN ENLACES RÁPIDOS ===== */
.footer-col ul li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;  
  padding: 2px 0;         
  width: auto;
  cursor: pointer;
}

.footer-col ul li a:hover {
  color: white;
  transform: translateX(3px);
}

/* Asegurar que los elementos de lista no sean clickeables por sí mismos */
.footer-col ul li {
  cursor: default;  
}


.footer-col ul li[data-location] {
  cursor: pointer;
  display: inline-block;
  padding: 2px 5px;
}

/* Quitar cualquier padding o margin extra de los ul/li */
.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ===== CORRECCIÓN NEWSLETTER ===== */
.newsletter-card {
  background: var(--primary);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden; /* Evita desbordes */
}

.newsletter-card h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  cursor: default; /* Explícitamente no clickeable */
}

.newsletter-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  cursor: default; /* Explícitamente no clickeable */
  line-height: 1.5;
}

#newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  z-index: 2;
}

#newsletter-form input {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-family: var(--font-primary);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  cursor: text;
}

#newsletter-form input:focus {
  outline: none;
  border-color: white;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

#newsletter-form button {
  width: 100%;
  padding: 1rem;
  background: white;
  color: var(--primary);
  border: 2px solid white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer; 
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
}

#newsletter-form button:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#newsletter-form button:active {
  transform: translateY(0);
}


.contact-extra {
  cursor: default;
}


.newsletter-card * {
  cursor: inherit;
}

.newsletter-card input,
.newsletter-card button {
  cursor: auto; 
}


.newsletter-card::before,
.newsletter-card::after {
  display: none !important;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(253, 251, 242, 0.85);
  border-radius: 60px 60px 60px 60px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 2rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-section h1 {
  color: #2C221B;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-tagline {
  color: #2C221B;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.hero-badges .badge {
  background: white;
  color: #2C221B;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(111, 67, 42, 0.2);
  font-weight: 500;
}

.hero-badges .badge-icon {
  color: var(--secondary);
  font-size: 1.2rem;
}

.hero-buttons {
  margin-top: 1.5rem;
}

.hero-buttons .btn {
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
}

.hero-buttons .btn-primary {
  background: var(--primary);
  color: white;
}

.hero-buttons .btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border: 2px solid var(--primary);
}

@media (max-width: 768px) {
  .hero-container {
    padding: 2rem 1.5rem;
    border-radius: 40px;
    width: 95%;
  }
  
  .hero-badges {
    gap: 0.8rem;
  }
  
  .hero-badges .badge {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}