/* ============================================
   Copa Café — Site Principal
   ============================================ */

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

:root {
  --green: #004121;
  --green-light: #79A254;
  --green-muted: rgba(0,65,33,.06);
  --green-muted2: rgba(0,65,33,.03);
  --dark: #111;
  --gray: #777;
  --gray-light: #bbb;
  --border: #eee;
  --bg: #fff;
  --bg-alt: #fafaf8;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* scroll-behavior removido — snap JS controla o scroll */

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 32px }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: .85rem;
  font-weight: 500;
  transition: color .2s;
}

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

.nav-lang {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.nav-lang button {
  padding: .35rem .7rem;
  font-size: .75rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: all .2s;
}

.nav-lang button.active {
  background: var(--green);
  color: #fff;
}

.nav-lang button:not(.active) {
  background: #fff;
  color: var(--gray);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger svg {
  width: 22px;
  height: 22px;
  stroke: var(--dark);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: #fff;
  z-index: 99;
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.open { display: flex }

.mobile-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 500;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}

/* ---- HERO CAROUSEL ---- */
.hero {
  position: relative;
  padding: 7rem 2rem 3rem;
  min-height: 450px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: none;
  opacity: 0;
  transition: opacity .6s ease;
}

.hero-content.active {
  display: block;
  opacity: 1;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,.3);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s;
  padding: 0;
}

.hero-arrow:hover {
  background: rgba(0,0,0,.55);
}

.hero-arrow svg {
  width: 22px;
  height: 22px;
}

.hero-arrow-left { left: 1.5rem }
.hero-arrow-right { right: 1.5rem }

.hero-dots {
  position: relative;
  z-index: 2;
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}

.hero-dot.active {
  background: #fff;
  border-color: #fff;
}

.hero-label {
  font-size: .75rem;
  font-weight: 600;
  color: #b5d89a;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.25;
  color: #fff;
  max-width: 750px;
  letter-spacing: -.02em;
}

.hero h1 strong {
  font-weight: 600;
  color: #b5d89a;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  line-height: 1.7;
}

.hero-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-numbers-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
}

.hero-numbers {
  display: flex;
  gap: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.hero-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}

.hero-num-label {
  font-size: .78rem;
  color: var(--gray);
  margin-top: .3rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  border: none;
  cursor: pointer;
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover { background: var(--green-light) }

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}

.hero .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

/* ---- SECTIONS ---- */
section { padding: 6rem 2rem }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.s-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.s-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -.01em;
  line-height: 1.3;
}

.s-desc {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 500px;
  margin-top: .75rem;
}

.alt { background: var(--bg-alt) }

/* ---- ABOUT ---- */
#sobre .wrap {
  text-align: center;
}

.about-intro {
  max-width: 720px;
  margin: 2rem auto 3rem;
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-section-title {
  font-size: .75rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.about-val {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all .3s;
}

.about-val:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transform: translateY(-3px);
}

.about-val-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
}

.about-val-icon svg {
  width: 22px;
  height: 22px;
}

.about-val h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}

.about-val p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.6;
}

#diferenciais .wrap { text-align: center; }
#diferenciais .about-diffs { text-align: left; }

.about-diffs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-diff {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.about-diff-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-muted);
  border-radius: 10px;
  color: var(--green);
}

.about-diff-icon svg {
  width: 20px;
  height: 20px;
}

.about-diff h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .35rem;
}

.about-diff p {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ---- PRODUCTS ---- */
/* produtos: padding padrão da section */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.p-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  transition: all .3s;
  background: var(--bg);
}

.p-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transform: translateY(-3px);
}

.p-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  margin-bottom: .75rem;
}

.p-card-icon svg {
  width: 20px;
  height: 20px;
}

.p-badge {
  font-size: .68rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-muted);
  padding: .3rem .65rem;
  border-radius: 4px;
  display: inline-block;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.p-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}

.p-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-list li {
  font-size: .82rem;
  color: var(--gray);
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}

.p-list li:last-child {
  border-bottom: none;
}

.p-sub {
  font-size: .75rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 1rem;
  margin-bottom: .25rem;
}

.p-desc {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.65;
}

.p-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--gray-light);
}

/* ---- PRICES ---- */
.prices-info {
  margin: 1.5rem 0 2rem;
  padding: 1.25rem;
  background: var(--green-muted2);
  border-radius: 8px;
  border-left: 3px solid var(--green-light);
}

.prices-info p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.6;
}

.prices-table-wrap { overflow-x: auto; max-width: 700px }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

thead {
  background: var(--green);
  color: #fff;
}

th {
  padding: .6rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

td {
  padding: .55rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}

tr:hover td { background: var(--green-muted2) }

.prices-loading {
  text-align: center;
  padding: 3rem;
  color: var(--gray);
  font-size: .9rem;
}

.prices-error {
  text-align: center;
  padding: 2rem;
  color: #b44;
  font-size: .9rem;
}

#sheet-config {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px dashed var(--green-light);
  border-radius: 8px;
  background: var(--green-muted2);
}

.prices-date {
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.price-val {
  font-weight: 600;
  color: var(--green);
}

.prices-footer-notes {
  margin-top: 1rem;
  padding: .75rem 1rem;
  background: var(--green-muted2);
  border-radius: 8px;
  border-left: 3px solid var(--green-light);
  font-size: .8rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 700px;
}

.prices-footer-notes p {
  margin-bottom: .5rem;
}

.prices-footer-notes p:last-child {
  margin-bottom: 0;
}

/* ---- WhatsApp buttons ---- */
.whatsapp-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  max-width: 700px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  background: #25D366;
  color: #fff;
  transition: background .2s;
}

.btn-whatsapp:hover {
  background: #1eba59;
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-whatsapp-alt {
  background: var(--green);
}

.btn-whatsapp-alt:hover {
  background: var(--green-light);
}

/* ---- Cotações em tempo real ---- */
.quotes-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  max-width: 700px;
}

.quote-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  background: var(--green-muted);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.quote-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.quote-value {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
}

.quote-change {
  font-size: .82rem;
  font-weight: 600;
  padding: .15rem .5rem;
  border-radius: 4px;
}

.quote-up {
  color: #1a7a3a;
  background: rgba(26, 122, 58, .1);
}

.quote-down {
  color: #b44;
  background: rgba(187, 68, 68, .1);
}

#sheet-config label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
  display: block;
  margin-bottom: .5rem;
}

#sheet-config input {
  width: 100%;
  padding: .6rem .8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font);
  font-size: .85rem;
}

#sheet-config small {
  font-size: .75rem;
  color: var(--gray);
  display: block;
  margin-top: .4rem;
}

/* ---- TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1rem;
}

.team-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--green-muted);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: .85rem;
  font-weight: 600;
}

.team-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
}

.team-role {
  font-size: .78rem;
  color: var(--gray);
  margin-top: .2rem;
}

/* ---- WAREHOUSE ---- */
.wh-hero-img {
  margin-top: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.wh-hero-img img {
  width: 100%;
  display: block;
}

.wh-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  text-align: center;
}

.wh-stat {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.wh-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}

.wh-stat-label {
  font-size: .85rem;
  color: var(--gray);
  margin-top: .3rem;
}

.wh-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.wh-photos img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.units-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.unit-card {
  background: var(--green-muted);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.unit-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--green);
}

.contact-general {
  display: flex;
  gap: 2rem;
  margin-top: .5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-item { display: flex; gap: 1rem }

.c-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--green-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
}

.c-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
}

.c-text {
  font-size: .85rem;
  color: var(--gray);
  margin-top: .15rem;
}

.c-text a {
  color: var(--green);
  text-decoration: none;
}

.c-text a:hover { text-decoration: underline }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: .3rem;
  display: block;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: .7rem .85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font);
  font-size: .88rem;
  transition: border-color .2s;
  background: var(--bg);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green);
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.btn-submit { width: 100% }

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.5);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: .6;
}

.footer-links { display: flex; gap: 1.5rem }

.footer-links a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  font-size: .8rem;
  transition: color .2s;
}

.footer-links a:hover { color: rgba(255,255,255,.8) }

.footer-copy {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .75rem;
  text-align: center;
}

/* ---- PREÇOS PAGE ---- */
.precos-page {
  padding: 5.5rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.precos-page .s-desc {
  max-width: none;
}

.active-link {
  color: var(--green) !important;
  font-weight: 600;
}

/* ---- ANIMATIONS ---- */
.fi {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease;
}

.fi.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 768px) {
  .nav-links, .nav-lang-desktop { display: none }
  .hamburger { display: block }

  .hero { padding: 5rem 1.25rem 2rem }
  .hero h1 { font-size: 1.8rem }
  .hero-sub { font-size: .88rem }
  .hero-numbers-wrap { padding: 1rem 1.25rem 0 }
  .hero-numbers { flex-wrap: wrap; gap: 1.25rem }
  .hero-num { font-size: 1.4rem }
  .hero-row { flex-direction: column; gap: .75rem }
  .hero-row .btn { width: 100%; text-align: center }

  section { padding: 3rem 1.25rem }

  .wrap { padding: 0 1.25rem }
  .s-title { font-size: 1.3rem }
  .s-desc { font-size: .85rem }

  /* Sobre */
  .about-intro { font-size: .88rem; margin: 1rem auto 1.5rem; line-height: 1.6 }
  .about-values { grid-template-columns: 1fr 1fr; gap: .75rem }
  .about-val { padding: 1rem .75rem }
  .about-val-icon { width: 36px; height: 36px; margin-bottom: .5rem }
  .about-val-icon svg { width: 18px; height: 18px }
  .about-val h4 { font-size: .82rem }
  .about-val p { font-size: .75rem }
  .about-section-title { margin-top: 1.5rem; margin-bottom: .75rem }

  /* Diferenciais */
  .about-diffs { grid-template-columns: 1fr; gap: .6rem; margin-top: 1rem }
  .about-diff { padding: 1rem; gap: .75rem }
  .about-diff-icon { width: 32px; height: 32px; min-width: 32px }
  .about-diff-icon svg { width: 16px; height: 16px }
  .about-diff h4 { font-size: .82rem }
  .about-diff p { font-size: .75rem }

  /* Produtos mobile — 2 colunas: café+peneiras | pimenta */
  #produtos { padding: 2rem 1rem }
  #produtos .s-desc { display: none }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: .5rem;
    margin-top: .75rem;
  }
  /* Café ocupa coluna 1, linha 1 */
  .products-grid .p-card:nth-child(1) { grid-column: 1; grid-row: 1; }
  /* Peneiras ocupa coluna 1, linha 2 */
  .products-grid .p-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  /* Pimenta ocupa coluna 2, linhas 1+2, alinha pelo conteúdo */
  .products-grid .p-card:nth-child(3) { grid-column: 2; grid-row: 1 / 3; align-self: start; }
  .p-card { padding: .6rem .5rem }
  .p-card-icon { display: none }
  .p-name { font-size: .78rem; margin-bottom: .3rem }
  .p-list li { font-size: .68rem; padding: .12rem 0 }
  .p-sub { font-size: .62rem; margin-top: .3rem; margin-bottom: .1rem }

  /* Contato */
  #contato { padding: 2.5rem 1.25rem }
  #contato .s-desc { font-size: .8rem }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.5rem }
  .wh-grid { grid-template-columns: 1fr }
  .wh-stats { grid-template-columns: 1fr }
  .wh-photos { grid-template-columns: 1fr }
  .wh-stat-num { font-size: 1.5rem }
  .units-grid { grid-template-columns: 1fr 1fr; gap: .5rem }
  .unit-card { padding: .75rem; gap: .5rem }
  .unit-card h4 { font-size: .8rem }
  .unit-card .c-text { font-size: .72rem }
  .unit-card .c-icon { width: 28px; height: 28px; min-width: 28px }
  .unit-card .c-icon svg { width: 14px; height: 14px }
  .contact-general { flex-direction: column; gap: 1rem }

  .team-grid { grid-template-columns: 1fr 1fr }
  .form-row { grid-template-columns: 1fr }

  .precos-page { padding: 5rem 1.25rem 3rem }
  .quotes-bar { flex-direction: column; gap: .75rem }
  .quote-item { flex-wrap: wrap }
  .prices-table-wrap, .prices-footer-notes, .whatsapp-buttons { max-width: none }
  .whatsapp-buttons { flex-direction: column }
  .btn-whatsapp { justify-content: center }

  table { font-size: .82rem }
  th, td { padding: .6rem .75rem }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-links { flex-wrap: wrap; justify-content: center }
}
