 :root {
      --black: #0d0d0d;
      --dark: #171717;
      --card: #1e1e1e;
      --amber: #e8820c;
      --amber-light: #f5a03a;
      --white: #f5f0eb;
      --gray: #888;
      --border: rgba(255,255,255,0.07);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--black);
      color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.2rem 5%;
      background: rgba(13,13,13,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--amber);
      letter-spacing: -0.5px;
    }
    .logo span { color: var(--white); }
    nav a {
      color: var(--gray);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    nav a:hover { color: var(--white); }
    .nav-links { display: flex; gap: 2rem; align-items: center; }
    .nav-cta {
      background: var(--amber);
      color: var(--black) !important;
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      font-weight: 500;
    }
    .nav-cta:hover { background: var(--amber-light); }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8rem 5% 4rem;
      position: relative;
      overflow: hidden;
      text-align: center;
      flex-direction: column;

      
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,130,12,0.15) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(13,13,13,0.5) 0%, rgba(13,13,13,1) 100%);        
    }

    .hero-carousel {
  position: relative;
  z-index: 1;
  max-width: 500px;
  width: 90%;
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(232, 130, 12, 0.2);
  animation: fadeUp 0.6s 0s ease both;
}

.carousel-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: var(--card);
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--amber);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
   

    .hero-image-container {
      position: relative;
      z-index: 1;
      max-width: 500px;
      width: 90%;
      margin-bottom: 2rem;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(232, 130, 12, 0.2);
      animation: fadeUp 0.6s 0s ease both;
    }

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
    .hero-content {
      position: relative; z-index: 1;
      max-width: 990px;
      display: flex; flex-direction: column; align-items: center;
    }
    .badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: rgba(232,130,12,0.15);
      border: 1px solid rgba(232,130,12,0.3);
      color: var(--amber-light);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.35rem 0.9rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s ease both;
    }
    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1.08;
      letter-spacing: -1.5px;
      margin-bottom: 1.2rem;
      animation: fadeUp 0.6s 0.1s ease both;
    }
    h1 em { color: var(--amber); font-style: normal; }
    .hero p {
      font-size: 1.1rem;
      color: #aaa;
      max-width: 520px;
      margin-bottom: 2rem;
      font-weight: 300;
      animation: fadeUp 0.6s 0.2s ease both;
    }
    .hero-btns {
      display: flex; gap: 1rem; flex-wrap: wrap;
      justify-content: center;
      animation: fadeUp 0.6s 0.3s ease both;
    }
    .btn-primary {
      background: var(--amber);
      color: var(--black);
      padding: 0.85rem 2rem;
      border-radius: 50px;
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }
    .btn-secondary {
      background: transparent;
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 50px;
      border: 1px solid var(--border);
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-secondary:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }

    /* FEATURED PRODUCT STRIP */
    .featured-strip {
      background: var(--amber);
      color: var(--black);
      text-align: center;
      padding: 1rem;
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.03em;
    }
    .featured-strip strong { font-weight: 700; }

    /* SERVICES */
    section { padding: 5rem 5%; }
    .section-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1rem;
      text-align: center;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -1px;
      margin-bottom: 1rem;
      text-align: center;
    }
    .section-sub {
      color: #888;
      max-width: 500px;
      font-weight: 300;
      margin-bottom: 3rem;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .service-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      transition: border-color 0.2s, transform 0.2s;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .service-card.featured {
      border-color: rgba(232,130,12,0.5);
      background: linear-gradient(135deg, rgba(232,130,12,0.08), var(--card));
    }
    .service-card.featured::before {
      content: '⭐ Destacado';
      position: absolute; top: 1rem; right: 1rem;
      font-size: 0.7rem; font-weight: 600;
      color: var(--amber);
      background: rgba(232,130,12,0.12);
      border: 1px solid rgba(232,130,12,0.3);
      padding: 0.2rem 0.6rem;
      border-radius: 50px;
    }
    .service-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-3px); }
    .service-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      margin-bottom: 0.6rem;
    }
    .service-card p { color: #888; font-size: 0.9rem; font-weight: 300; line-height: 1.6; }

    /* RESTAURANT SHOWCASE */
    .restaurant-section { background: var(--dark); }
    .restaurant-preview {
      background: var(--card);
      border: 1px solid rgba(232,130,12,0.25);
      border-radius: 20px;
      padding: 3rem;
      display: flex;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .restaurant-preview-text { flex: 1; min-width: 260px; text-align: center; }
    .restaurant-preview-text h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      margin-bottom: 0.8rem;
    }
    .restaurant-preview-text p { color: #888; margin-bottom: 1.5rem; font-weight: 300; }
    .features-list { display: inline-block; text-align: left; list-style: none; }
    .features-list li {
      padding: 0.4rem 0;
      font-size: 0.9rem;
      color: #bbb;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .features-list li::before { content: '✓'; color: var(--amber); font-weight: 700; }

    .mock-website {
      flex: 1; min-width: 260px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(232,130,12,0.3);
      position: relative;
    }
    .mock-website img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      display: block;
      filter: brightness(0.85);
      transition: filter 0.3s;
    }
    .mock-website:hover img { filter: brightness(1); }
    .mock-overlay {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
      padding: 1.5rem;
    }
    .mock-overlay .mock-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; margin-bottom: 0.2rem; color: #fff;
    }
    .mock-overlay .mock-text { font-size: 0.75rem; color: #ccc; margin-bottom: 0.6rem; }
    .mock-overlay .mock-btn {
      background: var(--amber);
      color: var(--black);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.4rem 0.9rem;
      border-radius: 50px;
      display: inline-block;
    }

    /* CONTACT */
    .contact-section {
      background: var(--dark);
      display: flex;
      align-items: flex-start;
      gap: 4rem;
      flex-wrap: wrap;
      
    }
    .contact-info { flex: 1; min-width: 260px; text-align: center; }
    .contact-info h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 1rem;
    }
    .contact-info p { color: #888; font-weight: 300; margin-bottom: 2rem; }

    .wa-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      background: #25d366;
      color: #fff;
      padding: 0.9rem 1.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: background 0.2s, transform 0.15s;
    }
    .wa-btn:hover { background: #1ebe5c; transform: translateY(-1px); }
    .wa-btn svg { width: 20px; height: 20px; }

    .contact-form { flex: 1; min-width: 280px; }
    .contact-form form {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      
    }
    .form-group { margin-bottom: 1.2rem; }
    label {
      display: block;
      font-size: 0.82rem;
      font-weight: 500;
      color: #aaa;
      margin-bottom: 0.4rem;
    }
    input, textarea, select {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0.75rem 1rem;
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s;
    }
    input:focus, textarea:focus, select:focus {
      border-color: rgba(232,130,12,0.5);
    }
    select option { background: var(--dark); }
    textarea { resize: vertical; min-height: 100px; }
    .submit-btn {
      width: 100%;
      background: var(--amber);
      color: var(--black);
      border: none;
      padding: 0.85rem;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      margin-top: 0.5rem;
    }
    .submit-btn:hover { background: var(--amber-light); transform: translateY(-1px); }
    .success-msg {
      display: none;
      text-align: center;
      padding: 1rem;
      color: var(--amber);
      font-weight: 500;
    }

    /* FOOTER */
    footer {
      text-align: center;
      padding: 2rem 5%;
      border-top: 1px solid var(--border);
      font-size: 0.85rem;
      color: #555;
    }
    footer span { color: var(--amber); }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* FLOATING WA BUTTON */
    .wa-float {
      position: fixed;
      bottom: 2rem; right: 2rem;
      z-index: 999;
      background: #25d366;
      width: 58px; height: 58px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,0.4);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
    .wa-float svg { width: 30px; height: 30px; fill: #fff; }

    /* ── HAMBURGER MENU ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* mobile nav drawer */
    .nav-drawer {
      display: none;
      position: fixed;
      top: 65px; left: 0; right: 0;
      background: rgba(13,13,13,0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 5%;
      flex-direction: column;
      gap: 1.2rem;
      z-index: 99;
    }
    .nav-drawer.open { display: flex; }
    .nav-drawer a {
      font-size: 1rem;
      color: var(--gray);
      text-decoration: none;
      font-weight: 500;
    }
    .nav-drawer .nav-cta {
      display: inline-block;
      background: var(--amber);
      color: var(--black) !important;
      padding: 0.6rem 1.4rem;
      border-radius: 50px;
      text-align: center;
    }

    /* ── TABLET  (≤ 900px) ── */
    @media (max-width: 900px) {
      .restaurant-preview {
        flex-direction: column;
      }
      .mock-website img { height: 260px; }
      .contact-section {
        flex-direction: column;
        gap: 2.5rem;
      }
    }

    /* ── MOBILE  (≤ 640px) ── */
    @media (max-width: 640px) {
      /* Nav */
      .nav-links { display: none; }
      .hamburger { display: flex; }

      /* Featured strip */
      .featured-strip { font-size: 0.78rem; padding: 0.75rem 1rem; }

      /* Hero */
      .hero { padding: 7rem 5% 3.5rem; min-height: 90vh; align-items: center; }
      .hero-bg {
        background:
          radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,130,12,0.18) 0%, transparent 70%),
          linear-gradient(to bottom, rgba(13,13,13,0.4) 0%, rgba(13,13,13,1) 100%);
      }
      .hero-content { max-width: 100%; }
      .hero p { font-size: 1rem; }
      .hero-btns { flex-direction: column; }
      .btn-primary, .btn-secondary { text-align: center; }

      /* Sections */
      section { padding: 3.5rem 5%; }

      /* Services grid — single column on very small screens */
      .services-grid { grid-template-columns: 1fr; }
      .service-card.featured::before { font-size: 0.65rem; }

      /* Image strip */
      .image-strip { height: 200px; }

      /* Restaurant preview */
      .restaurant-preview { padding: 1.5rem; gap: 1.5rem; }
      .mock-website img { height: 220px; }

      /* Contact */
      .contact-section { padding: 3.5rem 5%; }
      .contact-info h2 { font-size: 1.8rem; }
      .wa-btn { width: 100%; justify-content: center; }
      .contact-form form { padding: 1.5rem; }

      /* WA float — smaller on mobile */
      .wa-float { width: 50px; height: 50px; bottom: 1.2rem; right: 1.2rem; }
      .wa-float svg { width: 25px; height: 25px; }

      /* Footer */
      footer { font-size: 0.8rem; padding: 1.5rem 5%; }
    }

    /* ── VERY SMALL  (≤ 380px) ── */
    @media (max-width: 380px) {
      .badge { font-size: 0.68rem; }
      .section-title { font-size: 1.7rem; }
      .restaurant-preview-text h3 { font-size: 1.3rem; }
    }

    @media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-info {
    width: 100%;
    flex: none;
  }
  
  .contact-form {
    width: 100%;
    flex: none;
    min-width: unset;
  }
  
  .contact-form form {
    padding: 1.5rem;
  }
}