:root {
  --rojo: #b02e2e;
  --verde: #3b7d57;
  --crema: #fef6e4;
  --negro: #222;
  --fuente-principal: 'Open Sans', sans-serif;
  --fuente-titular: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fuente-principal);
  color: var(--negro);
  line-height: 1.6;
  min-height: 100vh;
  background:
    url("data:image/svg+xml;utf8,<svg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='2' cy='2' r='2' fill='%23ffcc33' fill-opacity='0.15'/><circle cx='38' cy='38' r='2' fill='%23ff6666' fill-opacity='0.12'/></svg>"),
    linear-gradient(120deg, #fffbe7 0%, #ffcc33 40%, #ff6666 100%);
  background-size: 40px 40px, 100% 100%;
  background-repeat: repeat, no-repeat;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--rojo);
  color: white;
  padding: 0.7rem 1.2rem;
  flex-wrap: wrap;
}

.header-left .main-logo {
  font-family: var(--fuente-titular);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: white;
}

.header-right {
  display: flex;
  align-items: center;
}

.menu-nav {
  display: flex;
  list-style: none;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.3rem 0.5rem;
}

.dropdown {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-right: 10px;
  background: white;
  list-style: none;
  padding: 0.5rem;
  border: 1px solid #ccc;
  z-index: 999;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 1rem 0.5rem;
  transition: opacity 0.3s, transform 0.3s;
}

.submenu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.submenu li {
  margin: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.5rem;
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu a {
  color: var(--verde) !important;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  text-align: center;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
}

.submenu a:hover {
  background: #e0e7ff;
  color: #b02e2e !important;
  box-shadow: 0 2px 8px rgba(255,204,51,0.10);
}

.logo-center-container {
  background: linear-gradient(120deg, #b02e2e 70%, #ffcc33 100%);
  text-align: center;
  padding: 2.5rem 0 2rem 0;
  position: relative;
  box-shadow: 0 8px 24px rgba(176,46,46,0.08);
}

.logo-center-container .logo-img {
  position: relative;
  z-index: 2;
}

.logo-img {
  max-width: 180px;
  height: auto;
  display: inline-block;
  border-radius: 0;
  background: none;
  border: none;
  padding: 0;
  animation: logoFadeIn 1.2s ease;
}

@keyframes logoFadeIn {
  from { opacity: 0; transform: scale(0.8);}
  to { opacity: 1; transform: scale(1);}
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 40vh;
  padding: 2rem 1rem;
}

.hero-content {
  background: rgba(255, 251, 231, 0.85);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  animation: heroFadeIn 1.2s ease;
  backdrop-filter: blur(2px);
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-family: var(--fuente-titular);
  margin-bottom: 1.2rem;
  color: var(--rojo);
  text-shadow: 0 2px 8px rgba(255,204,51,0.10);
}

.hero p {
  font-size: 1.3rem;
  color: var(--negro);
  margin-bottom: 1.5rem;
}

.cta {
  margin-top: 1rem;
  background: var(--verde);
  color: white;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(59,125,87,0.10);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cta:hover {
  background: #388e5c;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(59,125,87,0.18);
}

.menu {
  padding: 3rem 2rem;
  text-align: center;
  background-color: var(--crema);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 2rem auto;
  max-width: 1200px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  padding: 2rem 0;
}

.menu-carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0 3.2rem 0;
}

.carousel-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(.4,2,.6,1);
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

.menu-item {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1rem 1.2rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  max-width: 340px;
  width: 100%;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.menu-item:hover {
  box-shadow: 0 16px 48px rgba(176,46,46,0.13);
  transform: translateY(-4px) scale(1.03);
}

.menu-item img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.menu-item img:hover {
  transform: scale(1.04);
}

.menu-item h3 {
  font-size: 1.5rem;
  color: var(--rojo);
  margin-bottom: 0.5rem;
  font-family: var(--fuente-titular);
}

.menu-item p {
  color: var(--negro);
  font-size: 1.1rem;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--rojo);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--rojo);
  color: #fffbe7;
  box-shadow: 0 4px 16px rgba(176,46,46,0.18);
}

.carousel-prev { left: 1.5rem; }
.carousel-next { right: 1.5rem; }

/* Indicadores de barra debajo del carrusel */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.8rem;
  z-index: 20;
}

.carousel-indicator {
  width: 36px;
  height: 6px;
  border-radius: 3px;
  background: #e0e7ff;
  opacity: 0.6;
  transition: background 0.3s, opacity 0.3s;
}

.carousel-indicator.active {
  background: var(--rojo);
  opacity: 1;
}

.about {
  max-width: 800px;
  margin: 2.5rem auto 2rem auto;
  background: rgba(255, 251, 231, 0.92);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 2.2rem 2rem 1.7rem 2rem;
  text-align: center;
  backdrop-filter: blur(1.5px);
  position: relative;
}

.about h2 {
  font-family: var(--fuente-titular);
  font-size: 2rem;
  margin-bottom: 0.7rem;
  color: var(--rojo);
  position: relative;
}

.about h2::after {
  content: '';
  display: block;
  margin: 0.5rem auto 0 auto;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffcc33 0%, #ff6666 100%);
  opacity: 0.7;
}

.about p {
  font-size: 1.18rem;
  color: var(--negro);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 700px;
}

.contact {
  max-width: 800px;
  margin: 2.5rem auto 2rem auto;
  background: rgba(255, 251, 231, 0.92);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 2.2rem 2rem 1.7rem 2rem;
  text-align: center;
  backdrop-filter: blur(1.5px);
  position: relative;
}

.contact h2 {
  font-family: var(--fuente-titular);
  font-size: 2rem;
  margin-bottom: 0.7rem;
  color: var(--rojo);
  position: relative;
}

.contact h2::after {
  content: '';
  display: block;
  margin: 0.5rem auto 0 auto;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffcc33 0%, #ff6666 100%);
  opacity: 0.7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.contact-info span,
.contact-info a {
  display: flex;
  align-items: center;
  font-size: 1.18rem;
  color: var(--negro);
  gap: 0.5rem;
  text-decoration: none;
}

.contact-info .icon {
  font-size: 1.3rem;
  color: var(--rojo);
}

.contact-info .phone {
  color: var(--verde);
  font-weight: bold;
  font-size: 1.18rem;
  transition: color 0.2s;
}

.contact-info .phone:hover {
  color: #388e5c;
  text-decoration: underline;
}

iframe {
  width: 100%;
  height: 300px;
  margin-top: 1rem;
  border: none;
  border-radius: 8px;
}

footer {
  background: linear-gradient(135deg, #b02e2e 0%, #ffcc33 50%, #ff6666 100%);
  color: #fff;
  text-align: center;
  padding: 2rem 0 1.5rem 0;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 -4px 20px rgba(176,46,46,0.15);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffcc33 0%, #ff6666 50%, #b02e2e 100%);
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.footer-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.footer-social img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.1);
}

.footer-social img:hover {
  transform: scale(1.15) rotate(-8deg);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  background: rgba(255, 255, 255, 0.2);
}

footer p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

footer p a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  background: transparent;
}

footer p a:hover {
  color: #b02e2e;
  transform: scale(1.05);
  text-shadow: 0 2px 8px rgba(176,46,46,0.4);
  background: rgba(255, 255, 255, 0.15);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 1.8rem;
  padding: 0.6rem 0.8rem;
  border-radius: 50%;
  text-decoration: none;
  z-index: 1000;
}

.precios {
  color: var(--verde);
  font-weight: bold;
}

.back-to-top {
  position: fixed;
  right: 2.2rem;
  bottom: 2.2rem;
  width: 56px;
  height: 56px;
  background: var(--verde);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(59,125,87,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 100;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
  background: #388e5c;
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 8px 32px rgba(59,125,87,0.22);
}

.back-to-top svg {
  width: 28px;
  height: 28px;
  display: block;
}

.ingredientes-btn {
  margin: 0.7rem 0 0.5rem 0;
  background: linear-gradient(90deg, #b02e2e 60%, #ffcc33 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 2.2rem;
  font-size: 1.15rem;
  font-family: var(--fuente-titular);
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(176,46,46,0.18), 0 1.5px 8px rgba(255,204,51,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: background 0.25s, box-shadow 0.25s, transform 0.18s;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(176,46,46,0.10);
}

.ingredientes-btn:hover, .ingredientes-btn.active {
  background: linear-gradient(90deg, #a02626 60%, #ffd966 100%);
  box-shadow: 0 8px 32px rgba(176,46,46,0.22), 0 2px 12px rgba(255,204,51,0.13);
  transform: translateY(-2px) scale(1.03);
}

.ingredientes-btn .chevron {
  display: inline-block;
  font-size: 1.1em;
  margin: 0 0.2em;
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55), color 0.2s;
  color: #fffbe7;
}

.ingredientes-btn.active .chevron {
  transform: rotate(180deg) scale(1.2);
  color: #b02e2e;
}

.ingredientes-content {
  background: #fffbe7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(255,204,51,0.10);
  padding: 1rem 1.2rem;
  margin: 0.5rem auto 0 auto;
  text-align: left;
  font-size: 1.08rem;
  max-width: 90%;
  display: none;
  animation: fadeIn 0.4s;
}

.ingredientes-content.show {
  display: block;
  animation: fadeIn 0.4s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}

.ingredientes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingredientes-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.3rem 0 0.3rem 0;
  padding: 0.2rem 0 0.4rem 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  color: var(--negro);
  font-size: 1.05rem;
  text-align: center;
}
.ingredientes-list li strong {
  display: block;
  font-size: 1.25rem;
  color: var(--rojo);
  font-family: var(--fuente-titular);
  margin-bottom: 0.2rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.ingredientes-list li .icon, .ingredientes-list li > span:first-child {
  font-size: 1.6rem;
  margin-bottom: 0.1rem;
  display: block;
}
.ingredientes-list li {
  color: var(--negro);
  font-size: 1.05rem;
  text-align: center;
}
.ingredientes-list li span.descripcion, .ingredientes-list li .descripcion {
  display: block;
  font-size: 1.01rem;
  color: #6d6d6d;
  margin-top: 0.1rem;
  font-weight: 400;
  font-family: var(--fuente-principal);
}

a {
  text-decoration: none;
}

.map-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.2rem 0 0.5rem 0;
}

.map-icon {
  width: 48px;
  height: 48px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 12px;
  background: #fff;
  padding: 0.3rem;
}

.map-icon:hover {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 4px 16px rgba(59,125,87,0.13);
}

.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 1.5rem 1rem 1.2rem 1rem;
  max-width: 340px;
  width: 100%;
  text-align: center;
  margin: 1rem auto;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 16px 48px rgba(176,46,46,0.13);
  transform: translateY(-4px) scale(1.03);
}

.product-card img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.product-card img:hover {
  transform: scale(1.04);
}

.product-card h3 {
  font-size: 1.5rem;
  color: var(--rojo);
  margin-bottom: 0.5rem;
  font-family: var(--fuente-titular);
}

.product-card .price {
  font-size: 1.15rem;
  color: var(--negro);
  font-weight: bold;
  margin: 1rem 0 0.5rem 0;
}

.ingredientes-btn {
  margin: 0.7rem 0 0.5rem 0;
  background: var(--rojo);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1.08rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(176,46,46,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.ingredientes-btn .chevron {
  display: inline-block;
  transition: transform 0.3s;
}

.ingredientes-btn.active .chevron {
  transform: rotate(180deg);
}

.ingredientes-content {
  background: #fffbe7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(255,204,51,0.10);
  padding: 1rem 1.2rem;
  margin: 0.5rem 0 0 0;
  text-align: left;
  font-size: 1.08rem;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  display: none;
  animation: fadeIn 0.4s;
}

.ingredientes-content.show {
  display: block;
  animation: fadeIn 0.4s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}

.ingredientes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingredientes-list li {
  margin: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
}

.ingredientes-list li .icon {
  font-size: 1.2rem;
}

@media (max-width: 700px) {
  .product-card {
    max-width: 98vw;
    margin: 1rem 0.2rem;
  }
}

@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle span {
    display: block;
    height: 4px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .header-right {
    flex-direction: column;
    width: 90%;
    max-width: 300px;
    margin-top: 1rem;
    background: var(--crema);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: none;
  }

  .header-right.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-nav {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
    margin-top: 0.5rem;
  }

  .menu-nav li a {
    color: var(--negro);
    font-size: 1.1rem;
  }

  .dropdown {
    width: 100%;
    text-align: center;
  }

  .submenu {
    position: static;
    transform: none;
    border: none;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .submenu.show {
    display: block;
    opacity: 1;
  }

  .submenu a {
    color: var(--negro);
    font-weight: 600;
    text-align: center;
  }

  .logo-img {
    max-width: 140px;
  }

  .hero {
    height: 60vh;
  }

  .back-to-top {
    bottom: 70px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .carousel-controls-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.7rem;
    width: 100%;
  }
  .carousel-controls-mobile .carousel-prev,
  .carousel-controls-mobile .carousel-next {
    position: static;
    margin: 0;
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
    transform: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    top: auto !important;
    left: auto !important;
    right: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-links {
    gap: 1rem;
    font-size: 0.98rem;
  }
  .footer-social img {
    width: 28px;
    height: 28px;
  }
  footer {
    font-size: 0.98rem;
    border-radius: 0 0 12px 12px;
    padding: 1.5rem 0 1rem 0;
  }
  footer p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    max-width: 110px;
  }

  .hero {
    height: 50vh;
  }

  .main-logo {
    font-size: 1.8rem;
  }

  .menu-nav {
    flex-direction: column;
    align-items: center;
  }
}