:root {
  --color-primary: #8f1722;
  --color-primary-dark: #4f0b12;
  --color-secondary: #d8b56d;
  --color-accent: #202124;
  --color-bg: #ffffff;
  --color-bg-soft: #f7f4ef;
  --color-text: #201b1b;
  --color-muted: #6d6260;
  --color-border: #e5ded6;
  --color-whatsapp: #1fa855;
  --color-phone: #8f1722;
  --shadow-soft: 0 14px 35px rgba(31, 18, 17, 0.11);
  --shadow-premium: 0 28px 80px rgba(22, 8, 9, 0.26);
  --shadow-card: 0 18px 45px rgba(31, 18, 17, 0.1);
  --radius: 8px;
  --container: 1120px;
  --header-height: 78px;
}

body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img,
svg,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

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

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.62)),
    var(--color-bg-soft);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2,
.two-column h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(18, 9, 10, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--color-border);
  box-shadow: 0 12px 34px rgba(28, 12, 14, 0.08);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-actions a,
.header-actions button {
  min-height: 40px;
  padding: 9px 13px;
  border: 0;
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(143, 23, 34, 0.94);
  font-weight: 900;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
}

.header-actions button {
  background: var(--color-whatsapp);
}

.nav-link {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-header.scrolled .nav-link,
.site-header.menu-open .nav-link {
  color: #2c2423;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(143, 23, 34, 0.92);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.site-header.scrolled .menu-toggle,
.site-header.menu-open .menu-toggle {
  border-color: var(--color-border);
  background: #ffffff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.site-header.scrolled .menu-toggle span,
.site-header.menu-open .menu-toggle span {
  background: var(--color-text);
}

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 84px;
  background:
    linear-gradient(90deg, rgba(14, 6, 7, 0.96) 0%, rgba(42, 11, 15, 0.84) 44%, rgba(42, 11, 15, 0.36) 100%),
    linear-gradient(0deg, rgba(14, 6, 7, 0.22), rgba(14, 6, 7, 0.22)),
    var(--hero-bg, url("img/product-pirzola.jpeg")) center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(15, 7, 8, 0.85));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 56px;
}

.hero h1 {
  margin: 0;
  max-width: 790px;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1.04;
  text-wrap: balance;
}

.hero__text {
  max-width: 650px;
  margin: 22px 0 0;
  color: #f3e9df;
  font-size: 1.12rem;
}

.hero .section-kicker {
  color: var(--color-secondary);
}

.hero__actions,
.cta-strip__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions {
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

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

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), #b42230);
  box-shadow: 0 14px 34px rgba(143, 23, 34, 0.28);
}

.btn--secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.btn--secondary-dark,
.btn--outline {
  color: var(--color-primary-dark);
  background: #fff8ed;
  border-color: rgba(216, 181, 109, 0.55);
}

.btn--outline {
  background: #ffffff;
}

.btn--whatsapp {
  color: #ffffff;
  background: var(--color-whatsapp);
  box-shadow: 0 14px 34px rgba(31, 168, 85, 0.24);
}

.btn--call {
  color: #ffffff;
  background: var(--color-phone);
  box-shadow: 0 14px 34px rgba(143, 23, 34, 0.24);
}

.hero__panel {
  min-height: 345px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(6, 3, 3, 0.08), rgba(17, 6, 7, 0.84)),
    var(--hero-panel-bg, url("img/product-tbone.jpeg")) center / cover no-repeat;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.quote-card__list {
  display: grid;
  width: 100%;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff6ea;
  font-weight: 800;
}

.quote-card__list li {
  position: relative;
  padding-left: 24px;
}

.quote-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

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

.content-box p:first-child {
  margin-top: 0;
}

.slogan-box {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 22px;
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius);
  color: #fff8ef;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
  box-shadow: var(--shadow-card);
}

.slogan-box strong {
  color: #ffffff;
  font-size: 1.08rem;
}

.slogan-box span {
  color: #f0dcc0;
}

.service-grid,
.gallery-grid,
.contact-grid,
.reason-grid {
  display: grid;
  gap: 22px;
}

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

.service-card,
.contact-card,
.reason-card {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.94));
  box-shadow: var(--shadow-card);
}

.service-card,
.reason-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before,
.reason-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 0%, rgba(216, 181, 109, 0.22), transparent 35%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.service-card > *,
.reason-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.reason-card:hover {
  border-color: rgba(143, 23, 34, 0.24);
  box-shadow: 0 24px 60px rgba(31, 18, 17, 0.14);
  transform: translateY(-7px);
}

.service-card:hover::before,
.reason-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), #2a1113);
  box-shadow: 0 14px 30px rgba(143, 23, 34, 0.24);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.value-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.value-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(216, 181, 109, 0.45);
  border-radius: 999px;
  color: var(--color-primary-dark);
  background: #fff8ed;
  font-size: 0.94rem;
  font-weight: 800;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.product-card__body {
  padding: 24px;
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.product-card p {
  margin: 0 0 16px;
  color: var(--color-muted);
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 18px;
  color: #3a302f;
  font-weight: 700;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}

.trust-grid {
  display: grid;
  gap: 22px;
}

.trust-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.trust-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 14px;
  background: #f7f4ef;
}

.trust-card h2,
.delivery-grid h2,
.campaign-inner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.14;
}

.trust-card p,
.delivery-grid p,
.campaign-inner p {
  color: var(--color-muted);
}

.trust-card--dark {
  grid-template-columns: 1fr;
  color: #ffffff;
  background: linear-gradient(135deg, #211819, #4f0b12);
}

.trust-card--dark p {
  color: #f0dcc0;
}

.trust-card--dark strong {
  display: block;
  margin-top: 18px;
  color: #ffffff;
}

.delivery-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(14, 7, 8, 0.94), rgba(67, 10, 16, 0.92)),
    url("img/product-rosto.jpeg") center / cover no-repeat;
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  align-items: center;
  gap: 36px;
}

.delivery-grid p {
  color: #f0dcc0;
}

.delivery-grid img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-premium);
}

.delivery-section .value-cloud span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(216, 181, 109, 0.55);
}

.campaign-strip {
  padding: 58px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #8f1722, #201617);
}

.campaign-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.campaign-inner p {
  max-width: 760px;
  color: #f0dcc0;
}

.reason-grid--wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 28px;
}

.gallery-filters button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-primary-dark);
  background: #ffffff;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery-filters button.active,
.gallery-filters button:hover {
  color: #ffffff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.gallery-tile {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  text-align: left;
}

.gallery-tile.is-hidden {
  display: none;
}

.gallery-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.gallery-tile--poster img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #f7f4ef;
}

.gallery-tile span,
.gallery-tile strong {
  display: block;
  padding-inline: 14px;
}

.gallery-tile span {
  padding-top: 12px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-tile strong {
  padding-top: 3px;
  padding-bottom: 14px;
  color: var(--color-text);
  line-height: 1.25;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.order-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.order-item {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.order-item span {
  color: var(--color-primary);
  font-weight: 900;
}

.order-item strong {
  word-break: break-word;
}

.contact-actions--center {
  justify-content: center;
  margin-top: 28px;
}

.floating-btn {
  border: 0;
}

.floating-btn img {
  width: 25px;
  height: 25px;
  display: block;
}

.floating-btn--mail {
  background: #ffffff;
}

.whatsapp-panel {
  position: fixed;
  right: 84px;
  bottom: 78px;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.whatsapp-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-panel__box {
  width: min(330px, calc(100vw - 28px));
  padding: 18px;
  border: 1px solid rgba(216, 181, 109, 0.32);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-premium);
}

.whatsapp-panel__box h2 {
  margin: 0 34px 14px 0;
  font-size: 1rem;
}

.whatsapp-panel__box a {
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--color-whatsapp);
}

.whatsapp-panel__box a + a {
  margin-top: 10px;
}

.whatsapp-panel__box span {
  font-size: 0.84rem;
  font-weight: 800;
}

.whatsapp-panel__box strong {
  font-size: 1.05rem;
}

.whatsapp-panel__close,
.lightbox__close {
  position: absolute;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.whatsapp-panel__close {
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  color: #ffffff;
  background: var(--color-primary);
  font-size: 1.2rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  background: #ffffff;
}

.lightbox__close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--color-primary);
  font-size: 1.6rem;
}

.footer__grid--wide {
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr) minmax(240px, 0.9fr);
}

.footer-tagline {
  margin-bottom: 8px !important;
  color: var(--color-secondary) !important;
  font-weight: 900;
}

.service-card h3,
.contact-card h3,
.reason-card h3 {
  margin: 18px 0 8px;
  font-size: 1.14rem;
  line-height: 1.25;
}

.service-card p,
.reason-card p {
  margin: 0;
  color: var(--color-muted);
}

.reason-card span {
  color: var(--color-secondary);
  font-weight: 900;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 240px;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  object-fit: cover;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(25, 8, 9, 0.88) 100%);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(25, 8, 9, 0.86), transparent);
  font-size: 1rem;
  font-weight: 850;
}

.gallery-item:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.06);
}

.cta-strip {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(78, 11, 17, 0.96), rgba(24, 24, 24, 0.96)),
    var(--cta-bg, url("img/product-rosto.jpeg")) center / cover no-repeat;
}

.cta-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(16px);
}

.cta-strip .section-kicker {
  color: var(--color-secondary);
}

.cta-strip h2 {
  margin: 0;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.16;
}

.cta-strip p:last-child {
  margin: 12px 0 0;
  max-width: 620px;
  color: #f0dcc0;
}

.cta-strip__actions {
  justify-content: flex-end;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
  color: var(--color-muted);
}

.contact-list strong {
  color: var(--color-text);
}

.contact-list a {
  color: var(--color-primary-dark);
  font-weight: 850;
}

.contact-actions {
  margin-top: 24px;
}

.map-wrapper {
  min-height: 390px;
  margin-top: 22px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-card);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  border: 0;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  border: 0;
  outline: 0;
  box-shadow: 0 16px 34px rgba(8, 8, 8, 0.24);
  transition: transform 0.22s ease, filter 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
  font-size: 0.9rem;
  font-weight: 900;
}

.floating-btn svg {
  width: 25px;
  height: 25px;
}

.floating-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-3px);
}

.floating-btn--whatsapp {
  background: var(--color-whatsapp);
}

.floating-btn--phone {
  color: #1677d2;
  background: #ffffff;
}

.floating-btn--top {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), #2d1718);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.88);
  pointer-events: none;
}

.floating-btn--top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-btn--top:hover {
  transform: translateY(-3px) scale(1.03);
}

.site-footer {
  padding: 38px 0 46px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(26, 20, 20, 0.98), rgba(76, 10, 16, 0.98));
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(170px, 0.7fr) minmax(220px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.footer__grid.footer__grid--wide {
  grid-template-columns: minmax(0, 1.25fr) minmax(170px, 0.72fr) minmax(170px, 0.72fr) minmax(260px, 0.95fr);
}

.footer-brand p,
.footer-column ul,
.footer-bottom p {
  margin: 0;
}

.footer-logo {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.footer-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 430px;
  color: #f0dcc0;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-column span {
  color: #f0dcc0;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.digital-signature {
  color: #f0dcc0;
  font-size: 0.94rem;
}

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

  .nav-menu {
    position: absolute;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

  .header-actions {
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link,
  .site-header.scrolled .nav-link,
  .site-header.menu-open .nav-link {
    width: 100%;
    color: #2c2423;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #ffffff;
  }

  .hero__grid,
  .two-column,
  .contact-grid,
  .cta-strip__inner {
    grid-template-columns: 1fr;
  }

  .cta-strip__actions {
    justify-content: flex-start;
  }

  .service-grid,
  .gallery-grid,
  .reason-grid,
  .product-grid,
  .gallery-masonry,
  .order-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trust-card,
  .delivery-grid,
  .campaign-inner {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid.footer__grid--wide {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .logo img {
    width: 56px;
    height: 56px;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
    background-position: center top;
  }

  .hero__grid {
    gap: 34px;
  }

  .hero__panel,
  .service-card,
  .contact-card,
  .reason-card {
    padding: 22px;
  }

  .hero__actions,
  .cta-strip__actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .gallery-grid,
  .reason-grid,
  .reason-grid--wide,
  .product-grid,
  .gallery-masonry,
  .order-panel,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid.footer__grid--wide {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    padding: 56px 0;
  }

  .cta-strip__inner {
    padding: 24px;
  }

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

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

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 330px;
  }

  .floating-actions {
    right: 12px;
    bottom: 18px;
    gap: 8px;
  }

  .whatsapp-panel {
    right: 12px;
    bottom: 72px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 0.78rem;
  }

  .gallery-tile--poster img {
    max-height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: 20px;
    padding-top: 14px;
  }
}
