
:root {
  --bg: #fffaf4;
  --primary: #e63946;
  --primary-dark: #b02330;
  --accent: #ffb703;
  --accent-soft: #ffe8a1;
  --text: #2b2b2b;
  --muted: #777777;
  --card: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 14px 30px rgba(0,0,0,0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #fff2d9 0, #fffaf4 40%, #ffeaf0 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.25rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 10px 18px rgba(0,0,0,0.18);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.logo-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.btn-cta,
.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(230,57,70,0.3);
}

.btn-cta:hover,
.btn-primary:hover {
  filter: brightness(0.95);
  text-decoration: none;
}

.btn-ghost {
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.7);
  color: var(--text);
}

.btn-ghost:hover {
  background: #ffffff;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.burger span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 2.5rem;
  padding: 1.25rem 0 2.75rem;
}

.hero-media img {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-text h1 {
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  margin: 0 0 0.75rem;
}

.hero-text p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-info {
  font-size: 0.9rem;
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

/* Sections */

.section-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-header.small {
  text-align: left;
}

.section-header h2 {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Video */

.video-section {
  padding-bottom: 2.5rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Menu */

.menu-section {
  padding: 2.25rem 0 2.75rem;
}

.menu-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.menu-card {
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
}

.menu-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.menu-sub {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.menu-price {
  margin: 0;
  font-weight: 700;
  color: var(--primary-dark);
}

.menu-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
}

.menu-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Social */

.social-section {
  padding: 2.25rem 0 2.75rem;
}

.social-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  align-items: center;
}

.social-embed {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 0.4rem;
  box-shadow: var(--shadow-soft);
}

.social-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* Gallery */

.gallery-section {
  padding: 2.25rem 0 2.75rem;
}

.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item::after {
  content: "Ver foto";
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-align: right;
  padding-right: 0.7rem;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.03);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 960px;
  width: 100%;
  max-height: 94vh;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.9);
  font-size: 1.4rem;
}

/* About */

.about-section {
  padding: 2.25rem 0 2.75rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  align-items: center;
}

.about-text p {
  margin-top: 0;
  color: var(--muted);
}

.about-list {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  font-size: 0.95rem;
}

.about-list li {
  margin-bottom: 0.35rem;
}

.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Location */

.location-section {
  padding: 2.25rem 0 0;
}

.map-wrapper {
  margin-top: 1.25rem;
  width: 100%;
  height: 360px;
}

.map-wrapper iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

/* Contact */

.contact-section {
  padding: 2.75rem 0 3rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  align-items: flex-start;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.contact-info li {
  margin-bottom: 0.45rem;
}

.contact-form {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.form-row input,
.form-row textarea {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(230,57,70,0.18);
}

/* WhatsApp float */

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.15rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 26px rgba(0,0,0,0.35);
  color: #fff;
  font-size: 1.5rem;
  z-index: 55;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

/* Footer */

.site-footer {
  background: #150f1a;
  color: rgba(255,255,255,0.85);
  padding: 1.2rem 0 1.6rem;
  margin-top: 1.25rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  text-align: center;
}

.site-footer a {
  color: #ffd166;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 0.75rem;
  }
  .hero-media {
    order: 2;
  }
  .hero-text {
    order: 1;
  }
  .social-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .map-wrapper {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding-inline: 0;
  }
  .main-nav {
    position: fixed;
    inset: 56px 0 auto 0;
    background: rgba(255,250,244,0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem 1rem;
    transform: translateY(-110%);
    transition: transform 0.2s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }
  .main-nav.open {
    transform: translateY(0);
  }
  .btn-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero {
    gap: 1.5rem;
  }
}

@media (max-width: 520px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .video-section,
  .menu-section,
  .gallery-section,
  .about-section,
  .contact-section,
  .social-section,
  .location-section {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .contact-form {
    padding: 1.1rem 1rem;
  }
  .social-embed iframe {
    height: 360px;
  }
}
