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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111;
  background-color: #faf7f4;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

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

.section-header h2 {
  font-size: 2rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.section-header p {
  color: #555;
}

/* Header & hero */

.site-header {
  position: relative;
  color: #fff;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.8);
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.logo-top {
  font-size: .7rem;
  letter-spacing: .2em;
}

.logo-main {
  font-size: 1.25rem;
  letter-spacing: .35em;
}

.logo-sub {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff4b2b, #ffbb00);
  transition: width .25s ease-out;
}

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

.btn-cta {
  background: linear-gradient(135deg, #ff4b2b, #ffbb00);
  color: #fff;
  border-radius: 999px;
  padding: .65rem 1.6rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .15s ease-out, box-shadow .15s ease-out, filter .15s ease-out;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.3);
  filter: brightness(1.05);
}

.btn-cta.full-width {
  width: 100%;
}

.btn-secondary {
  border-radius: 999px;
  padding: .65rem 1.6rem;
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  background-color: rgba(0,0,0,.25);
  transition: background-color .2s ease-out, border-color .2s ease-out;
}

.btn-secondary:hover {
  background-color: rgba(0,0,0,.4);
  border-color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,75,43,.35), transparent 55%),
              linear-gradient(to bottom, rgba(0,0,0,.65), rgba(0,0,0,.9));
}

.hero-content {
  position: relative;
  padding: 5rem 0 6rem;
  max-width: 640px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3.2vw + 1.6rem, 3.4rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.05rem;
  color: #f5f5f5;
  margin-bottom: 1.8rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-info {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  color: #f0e1d6;
}

.hero-info .bullet {
  font-size: 1.2rem;
}

/* Delivery strip */

.section-delivery {
  background-color: #fff;
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.section-delivery h2 {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.delivery-text p {
  color: #444;
  margin-bottom: 1.25rem;
}

.delivery-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.delivery-list li::before {
  content: "•";
  color: #ff4b2b;
  margin-right: .5rem;
}

.delivery-list li + li {
  margin-top: .35rem;
}

.delivery-media img {
  border-radius: 1.25rem;
  box-shadow: 0 22px 45px rgba(0,0,0,.25);
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.card {
  background-color: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0,0,0,.16);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease-out, box-shadow .18s ease-out;
}

.card img {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem 1.6rem 1.8rem;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.card-body p {
  color: #555;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.2);
}

/* Highlight */

.section-highlight {
  background: radial-gradient(circle at top left, #fff5eb, #fef7f2);
}

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

.section-highlight h2 {
  font-size: 2rem;
  margin-bottom: .8rem;
}

.highlight-text p {
  color: #444;
}

.highlight-media img {
  border-radius: 1.5rem;
  box-shadow: 0 22px 45px rgba(0,0,0,.24);
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}

.gallery-item {
  border-radius: .9rem;
  cursor: pointer;
  height: 160px;
  object-fit: cover;
  transition: transform .18s ease-out, box-shadow .18s ease-out, filter .18s ease-out;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
  filter: brightness(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -2.2rem;
  right: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* Ambiente */

.section-ambiente {
  background-color: #fff;
}

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

.ambiente-text h2 {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.ambiente-text p {
  margin-bottom: 1rem;
  color: #444;
}

.ambiente-text ul {
  list-style: none;
}

.ambiente-text li + li {
  margin-top: .35rem;
}

.ambiente-text li::before {
  content: "✓";
  color: #ff4b2b;
  margin-right: .5rem;
}

.ambiente-media img {
  border-radius: 1.5rem;
  box-shadow: 0 22px 45px rgba(0,0,0,.22);
}

/* Video */

.section-video {
  background-color: #111;
  color: #fff;
}

.section-video .section-header p {
  color: #ccc;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 22px 45px rgba(0,0,0,.6);
}

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

/* Social */

.section-social {
  background-color: #fff;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.social-card {
  background-color: #faf7f4;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-card h3 {
  font-size: 1.1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-embed iframe {
  width: 100%;
}

.social-fallback {
  font-size: .8rem;
  color: #777;
}

.social-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background-color: #fff;
}

/* Contact */

.section-contact {
  background-color: #111;
  color: #fff;
}

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

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.contact-info p {
  margin-bottom: 1.2rem;
  color: #ddd;
}

.contact-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.contact-list li + li {
  margin-top: .4rem;
}

.map-wrapper {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.75);
}

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

.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.contact-form-wrap p {
  margin-bottom: 1.2rem;
  color: #ccc;
}

.contact-form {
  background-color: rgba(255,255,255,.02);
  border-radius: 1.25rem;
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.6);
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: .85rem;
  margin-bottom: .25rem;
}

input,
textarea {
  width: 100%;
  border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.18);
  padding: .6rem .8rem;
  background-color: rgba(0,0,0,.6);
  color: #fff;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid #ff4b2b;
  outline-offset: 2px;
}

/* WhatsApp button */

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1.2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(0,0,0,.45);
  z-index: 999;
}

.whatsapp-icon {
  font-size: 1.6rem;
}

/* Footer */

.site-footer {
  background-color: #000;
  color: #aaa;
  padding: 1.8rem 0;
  font-size: .85rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  align-items: center;
  text-align: center;
}

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

/* Responsive */

@media (max-width: 960px) {
  .nav-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .main-nav {
    display: none;
  }

  .hero-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .delivery-grid,
  .cards-grid,
  .highlight-grid,
  .ambiente-grid,
  .social-grid,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-item {
    height: 190px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3rem 0;
  }

  .nav-bar {
    align-items: center;
  }

  .logo-main {
    letter-spacing: .2em;
  }

  .hero-content {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .delivery-media {
    order: -1;
  }

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

  .video-wrapper {
    border-radius: .75rem;
  }

  .contact-form {
    padding: 1.25rem;
  }
}
