:root {
  --cream: #fff8eb;
  --warm-white: #fffdf8;
  --yellow: #f7c948;
  --yellow-soft: #ffe6a3;
  --red: #c94a3a;
  --brown: #5a2f22;
  --text: #2d2019;
  --muted: #765b4d;
  --line: #f0d8b7;
  --whatsapp: #25d366;
  --shadow: 0 14px 32px rgba(90, 47, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-bottom: 68px;
  background: var(--warm-white);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

.section {
  padding: 34px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(240, 216, 183, 0.9);
  backdrop-filter: blur(12px);
}

.navbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brown);
  font-weight: 900;
}

.brand span {
  min-width: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: none;
}

.header-whatsapp {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 9px 13px;
  background: var(--whatsapp);
  color: #082812;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: transform;
}

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 14px 0 24px;
  background:
    linear-gradient(150deg, rgba(255, 248, 235, 0.98), rgba(255, 253, 248, 0.92)),
    radial-gradient(circle at 12% 8%, rgba(247, 201, 72, 0.42), transparent 36%);
}

.hero-grid {
  display: grid;
  gap: 14px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.business-name {
  margin: 0 0 8px;
  color: var(--brown);
  font-size: 1rem;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--brown);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  font-size: clamp(2rem, 9vw, 2.35rem);
}

h2 {
  font-size: clamp(1.55rem, 7vw, 2.1rem);
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0;
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-hours {
  width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(240, 216, 183, 0.95);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 8px 18px rgba(90, 47, 34, 0.08);
}

.hero-hours span,
.hero-hours strong {
  display: block;
}

.hero-hours span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-hours strong {
  margin-top: 2px;
  color: var(--brown);
  font-size: 0.94rem;
}

.hero-actions {
  width: 100%;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.btn {
  min-height: 50px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: transform;
}

.btn-icon,
.location-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.btn:hover,
.header-whatsapp:hover,
.floating-whatsapp:hover,
.floating-location:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--whatsapp);
  color: #082812;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.26);
}

.btn-location {
  background: var(--red);
  color: #fff8eb;
  box-shadow: 0 14px 28px rgba(201, 74, 58, 0.2);
}

.btn-secondary {
  border-color: var(--line);
  background: var(--warm-white);
  color: var(--brown);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--brown);
  font-size: 0.88rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  display: block;
}

.visual-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--yellow-soft);
  box-shadow: var(--shadow);
}

.placeholder-card,
.mini-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 230, 163, 0.92), rgba(255, 248, 235, 0.98)),
    repeating-linear-gradient(45deg, rgba(201, 74, 58, 0.08) 0 12px, transparent 12px 24px);
  box-shadow: var(--shadow);
}

.placeholder-card p,
.mini-placeholder p {
  position: relative;
  z-index: 2;
  max-width: 250px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--brown);
  font-weight: 900;
  text-align: center;
}

.placeholder-sun {
  position: absolute;
  top: 26px;
  right: 28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
}

.placeholder-plate {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 78%;
  height: 128px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  border: 10px solid rgba(201, 74, 58, 0.16);
}

.placeholder-plate span {
  position: absolute;
  display: block;
  width: 36%;
  height: 42%;
  border-radius: 50% 48% 54% 46%;
  background: #f4c469;
  box-shadow: inset 0 -8px 0 rgba(90, 47, 34, 0.08);
}

.placeholder-plate span:nth-child(1) {
  top: 28%;
  left: 17%;
  transform: rotate(-12deg);
}

.placeholder-plate span:nth-child(2) {
  top: 20%;
  right: 18%;
  transform: rotate(12deg);
}

.placeholder-plate span:nth-child(3) {
  bottom: 19%;
  left: 34%;
  transform: rotate(5deg);
}

.section-heading {
  margin-bottom: 20px;
}

.benefits-section,
.info-section {
  background: var(--warm-white);
}

.benefits-grid,
.info-grid,
.split-grid {
  display: grid;
  gap: 14px;
}

.benefit-card,
.info-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(90, 47, 34, 0.07);
}

.info-panel {
  padding: 18px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: stretch;
  overflow: hidden;
  padding: 10px;
}

.benefit-media {
  position: relative;
  min-height: 104px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--yellow-soft);
}

.benefit-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(247, 201, 72, 0.08), rgba(201, 74, 58, 0.36));
}

.benefit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.benefit-card:nth-child(4) .benefit-media img {
  object-position: center 38%;
}

.benefit-copy {
  align-self: center;
  padding: 4px 4px 4px 0;
}

.benefit-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.96rem;
}

.why-section {
  background: var(--cream);
}

.mini-placeholder {
  min-height: 220px;
  box-shadow: none;
}

.mini-placeholder span {
  position: absolute;
  inset: 24px;
  border: 2px dashed rgba(201, 74, 58, 0.34);
  border-radius: 8px;
}

.why-content p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.info-panel {
  background: var(--cream);
}

.schedule-panel,
.location-panel {
  display: flex;
  flex-direction: column;
}

.info-panel p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.nowrap {
  white-space: nowrap;
}

.location-box {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  color: var(--brown);
  font-weight: 900;
}

.location-map {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--yellow-soft);
  box-shadow: 0 10px 22px rgba(90, 47, 34, 0.09);
}

.location-map iframe {
  width: 100%;
  height: auto;
  min-height: 240px;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

.location-address {
  display: grid;
  gap: 4px;
  margin-top: 0;
  color: var(--brown);
  font-size: 0.98rem;
  line-height: 1.35;
}

.location-address span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.location-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  background: var(--red);
  color: #fff8eb;
  font-size: 1rem;
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.location-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201, 74, 58, 0.2);
}

.final-cta {
  padding-top: 28px;
  background: var(--warm-white);
}

.cta-box {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brown), #7c3b2c);
  color: #fff8eb;
}

.cta-box h2 {
  color: #fff8eb;
}

.cta-box p:not(.eyebrow) {
  margin-top: 10px;
  color: #ffe6d5;
}

.cta-box .eyebrow {
  color: var(--yellow);
}

.site-footer {
  padding: 26px 0;
  background: #2d2019;
  color: #fff8eb;
}

.footer-content {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.footer-content p:last-child {
  color: #ecd8c4;
  font-weight: 600;
}

.floating-whatsapp,
.floating-location {
  position: fixed;
  bottom: 12px;
  z-index: 30;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--whatsapp);
  color: #082812;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(8, 40, 18, 0.25);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: transform;
}

.floating-whatsapp {
  right: 12px;
  min-width: 48px;
}

.floating-location {
  left: 12px;
  max-width: calc(100% - 132px);
  padding: 0 16px;
  gap: 9px;
  background: var(--red);
  color: #fff8eb;
  box-shadow: 0 14px 30px rgba(90, 47, 34, 0.26);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero-content,
.hero-visual {
  animation: fade-up 620ms ease both;
}

.hero-visual {
  animation-delay: 90ms;
}

.animate-on-scroll {
  opacity: 0;
}

.benefit-card.animate-on-scroll {
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.benefit-card.animate-on-scroll:nth-child(2) {
  transition-delay: 80ms;
}

.benefit-card.animate-on-scroll:nth-child(3) {
  transition-delay: 160ms;
}

.benefit-card.animate-on-scroll:nth-child(4) {
  transition-delay: 240ms;
}

.image-fade.animate-on-scroll {
  transition: opacity 600ms ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
}

.benefit-card.animate-on-scroll.is-visible {
  transform: translateY(0);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  .hero-content,
  .hero-visual,
  .animate-on-scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .hero .eyebrow,
  .business-name {
    display: none;
  }

  .hero-hours,
  .hero-actions {
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .container,
  .navbar {
    width: min(100% - 22px, 1120px);
  }

  .section {
    padding: 28px 0;
  }

  .navbar {
    gap: 8px;
  }

  .brand {
    gap: 7px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    display: none;
  }

  .header-whatsapp {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 10px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .hero-hours strong {
    font-size: 0.9rem;
  }

  .visual-image {
    max-height: 250px;
  }

  .benefit-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
  }

  .whatsapp-icon {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 520px) {
  body {
    padding-bottom: 92px;
  }

  .container,
  .navbar {
    width: min(100% - 40px, 1120px);
  }

  .hero {
    padding: 34px 0;
  }

  .visual-image {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

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

  .benefit-card {
    display: block;
    min-height: 250px;
    padding: 10px;
  }

  .benefit-media {
    min-height: 136px;
    aspect-ratio: 16 / 10;
  }

  .benefit-copy {
    padding: 16px 10px 10px;
  }

  .benefit-card p {
    margin-top: 10px;
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .navbar {
    min-height: 74px;
  }

  .brand strong {
    font-size: 1.18rem;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-weight: 900;
  }

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

  .header-whatsapp {
    min-width: 118px;
  }

  .hero {
    min-height: auto;
    padding: 76px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
    align-items: center;
    gap: 42px;
  }

  h1 {
    font-size: clamp(3rem, 5vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2rem, 3.4vw, 2.75rem);
  }

  .hero-subtitle {
    font-size: 1.16rem;
  }

  .hero-hours,
  .hero-actions {
    max-width: 460px;
  }

  .btn {
    width: auto;
    min-width: 220px;
  }

  .hero-actions {
    grid-template-columns: repeat(2, max-content);
  }

  .hero-visual .visual-image {
    min-height: 430px;
    object-position: center 38%;
  }

  .split-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .split-grid {
    align-items: center;
  }

  .info-grid {
    align-items: stretch;
  }

  .mini-placeholder {
    min-height: 360px;
  }

  .info-panel,
  .cta-box {
    padding: 34px;
  }

  .cta-box {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .floating-whatsapp {
    right: 22px;
    bottom: 22px;
  }

  .floating-location {
    display: none;
  }
}

@media (min-width: 1040px) {
  .benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
