:root {
  --black: #0e0a06;
  --dark: #171009;
  --dark-soft: #1f160c;
  --gold: #c79a4b;
  --gold-light: #e4bd77;
  --cream: #f3e9d8;
  --muted: #bfae95;
  --white: #ffffff;
  --border: rgba(228, 189, 119, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(14, 10, 6, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1180px;
  height: 82px;
  padding: 0 22px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.brand span {
  color: var(--gold-light);
  font-style: italic;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 20px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  min-height: 100vh;
  position: relative;
  padding: 150px 22px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("../img/pao1.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,10,6,0.97) 0%, rgba(14,10,6,0.88) 32%, rgba(14,10,6,0.55) 62%, rgba(14,10,6,0.3) 100%),
    linear-gradient(to top, rgba(14,10,6,0.82), rgba(14,10,6,0.1));
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 42%, rgba(199, 154, 75, 0.22), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  margin-bottom: 22px;
  border: 1px solid rgba(228, 189, 119, 0.5);
  border-radius: 999px;
  background: rgba(199, 154, 75, 0.14);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.08;
  color: var(--cream);
}

.hero p {
  max-width: 540px;
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.85rem;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1c1409;
  box-shadow: 0 12px 30px rgba(199, 154, 75, 0.3);
}

.btn-outline {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 22px;
}

.section-title {
  max-width: 700px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title span {
  display: inline-block;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  color: var(--cream);
}

.order-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)), var(--dark);
  box-shadow: var(--shadow);
}

.order-card-date strong {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  color: var(--gold-light);
}

.order-card-date span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.order-card-flavors {
  margin: 28px 0;
  padding: 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.order-card-label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.order-card-flavors ul {
  list-style: none;
  display: grid;
  gap: 6px;
}

.order-card-flavors li {
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.order-card-prices {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
}

.price-block span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.price-block strong {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 2.1rem;
  color: var(--gold-light);
}

.price-block strong small {
  font-size: 1.1rem;
  font-weight: 700;
}

.order-card-note {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.order-card-note strong {
  color: var(--cream);
}

.order-card-btn {
  width: 100%;
}

.bread-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.bread-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)), var(--dark);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.bread-card:hover {
  transform: translateY(-8px);
  border-color: rgba(228, 189, 119, 0.5);
}

.bread-card.featured {
  border-color: rgba(228, 189, 119, 0.6);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--gold);
  color: #1c1409;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.bread-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: radial-gradient(circle, rgba(199, 154, 75, 0.2), transparent 60%), #14100a;
}

.bread-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bread-info {
  padding: 24px;
}

.bread-info h3 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cream);
}

.bread-info p {
  margin: 10px 0 16px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-line strong {
  color: var(--gold-light);
  font-size: 1.25rem;
}

.price-line span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.bread-order-btn {
  width: 100%;
  margin-top: 18px;
  padding: 13px 20px;
  font-size: 0.78rem;
}

.about {
  margin-top: 20px;
  padding: 100px 22px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 40%, rgba(199, 154, 75, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-content {
  max-width: 640px;
  margin: 0 auto;
}

.about-content span {
  display: inline-block;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.about-content h2 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  color: var(--cream);
}

.about-content p {
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.footer {
  padding: 40px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer a {
  color: var(--gold-light);
  font-weight: 800;
}

.footer-dev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.usb-logo {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

.usb-logo svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
  font-size: 1.6rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.float-whatsapp:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

@media (max-width: 980px) {
  .bread-grid {
    grid-template-columns: 1fr;
  }

  .order-card-prices {
    gap: 24px;
  }

  .hero {
    align-items: flex-start;
    padding-top: 130px;
    padding-bottom: 80px;
    background-position: center right 38%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(14,10,6,0.82), rgba(14,10,6,0.5)),
      linear-gradient(to top, rgba(14,10,6,0.88), rgba(14,10,6,0.1));
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: block;
  }

  .menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    height: calc(100vh - 82px);
    padding: 34px 22px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 26px;
    background: rgba(14, 10, 6, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 74px;
  }

  .hero {
    padding: 130px 18px 90px;
  }

  .order-card {
    padding: 28px 20px;
  }

  .order-card-prices {
    gap: 18px;
  }

  .section {
    padding: 72px 18px;
  }

  .about {
    padding: 72px 18px;
  }
}
