/* =========================
   VARIÁVEIS GLOBAIS
   ========================= */
:root {
  --green: #1f5a4d;
  --green-dark: #16473d;
  --green-deep: #0f3b33;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --sand: #d8c3a2;
  --gold: #d8b45f;
  --ink: #19352f;
  --muted: #6f786f;
  --radius: 28px;
  --shadow: 0 20px 60px rgba(22, 71, 61, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus {
  left: 10px;
}
/* =========================
   HEADER / NAVEGAÇÃO
   ========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 88px;
  background: rgba(31, 90, 77, 0.94);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  width: 118px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}
.main-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.main-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.92;
}
.main-nav a:hover {
  opacity: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.25s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-light,
.btn-cream {
  background: var(--cream);
  color: var(--green-dark);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}
.btn-green {
  background: var(--green);
  color: white;
}
.header-cta {
  margin-left: 6px;
}
.header-cta span {
  font-size: 0;
}
.header-cta span::after {
  content: "◉";
  font-size: 16px;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px;
}
/* =========================
   HERO
   ========================= */
.hero {
  padding: 150px 0 70px;
  background: linear-gradient(110deg, var(--green-dark), #2b7464);
  color: white;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}
h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}
.hero h1 {
  font-size: clamp(50px, 6vw, 78px);
  line-height: 0.98;
  margin: 22px 0;
}
.hero h1 em {
  font-style: normal;
  color: #fff5e6;
}
.hero-copy > p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 32px 0;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 35px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.benefits div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.benefits img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.benefits span {
  line-height: 1.3;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

.benefits b {
  color: var(--gold);
  font-size: 22px;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.hero-products {
  display: block;
  width: 100%;
  max-width: 650px;
  height: auto;
  object-fit: contain;

  /* evita que a imagem seja selecionada */
  user-select: none;
  pointer-events: none;

  /* sombra bem discreta */
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.12));
}
.section {
  padding: 82px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 34px;
}
.section-head span {
  font-size: 12px;
  letter-spacing: 0.12em;
}
.section-head h2 {
  font-size: 42px;
  margin: 8px 0;
  color: var(--green-dark);
}
.categories {
  background: #fbf7f0;
  border-radius: 28px 28px 0 0;
  margin-top: -20px;
  position: relative;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 184px);
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
}
.category-card {
  background: white;
  border: 1px solid #ece4d9;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  transition: 0.25s;
}
.category-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.category-card img {
  aspect-ratio: 1/1;
}
.category-card h3 {
  font-size: 14px;
  margin: 16px 8px 20px;
}
.meaning {
  padding-top: 20px;
  background: #fbf7f0;
}
.meaning-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: linear-gradient(120deg, #275f54, #13463d);
  border-radius: 22px;
  overflow: hidden;
  color: white;
}
.meaning-visual {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background-color: #dfc294;
}
.meaning-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}
.gift-card {
  width: 300px;
  height: 210px;
  background: #fffdf9;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  display: grid;
  place-items: center;
  transform: rotate(-6deg);
}
.gift-paper {
  font: 38px "Playfair Display";
  color: #245b50;
}
.ribbon {
  position: absolute;
  background: #1f5a4d;
}
.ribbon.h {
  height: 26px;
  width: 100%;
  left: 0;
}
.ribbon.v {
  width: 26px;
  height: 100%;
  top: 0;
}
.bow {
  position: absolute;
  top: -32px;
  font-size: 80px;
  color: #1f5a4d;
}
.meaning-copy {
  padding: 55px;
}
.meaning-copy > span {
  font-size: 11px;
  letter-spacing: 0.14em;
}
.meaning-copy h2 {
  font-size: 44px;
  line-height: 1.03;
  margin: 10px 0;
}
.meaning-copy > p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.feature-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 20px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: start;
}
.feature-grid b {
  font-size: 30px;
  color: var(--gold);
}
.feature-grid h3 {
  font-size: 14px;
  margin-bottom: 5px;
}
.feature-grid p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.showcase {
  background: #fbf7f0;
}
.how {
  background: #fff;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.05fr;
  gap: 18px;
  align-items: stretch;
}
.step,
.how-step {
  text-align: center;
  padding: 18px 10px;
}
.num,
.how-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #cad9d0;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin: 0 auto 10px;
}
.icon,
.how-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: auto;
  border: none;
  border-radius: 0;
  background: transparent;
}

.icon img,
.how-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.step h3,
.how-step h3 {
  font-size: 14px;
}
.step p,
.how-step p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}
.whatsapp-card {
  background: #fbf7f0;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
}
.wa-icon {
  font-size: 46px;
  color: var(--green);
}
.whatsapp-card h3 {
  font-family: "Playfair Display";
  font-size: 26px;
  margin: 4px;
}
.whatsapp-card p {
  font-size: 13px;
  line-height: 1.5;
}
.testimonials {
  background: #fbf7f0;
  padding-top: 40px;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  background: #fff;
  border: 1px solid #eee5da;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  gap: 16px;
}
.avatar {
  flex: 0 0 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8ad8b, #6c8d82);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 22px;
}
.stars {
  color: #e1b13f;
  letter-spacing: 2px;
  font-size: 12px;
}
.testimonial p {
  font-size: 13px;
  line-height: 1.55;
  color: #55635e;
}
.cta-band {
  background: #fbf7f0;
  padding: 0 0 0;
}
.cta-grid {
  min-height: 170px;
  background: linear-gradient(120deg, #194b41, #2d7566);
  border-radius: 22px 22px 0 0;
  color: white;
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 1.3fr auto 180px;
  align-items: center;
  gap: 30px;
}
.cta-grid h2 {
  font-size: 35px;
  line-height: 1.05;
  margin: 0;
}
.cta-grid p {
  opacity: 0.8;
}
.cta-gift {
  font-size: 100px;
  text-align: right;
}
.footer {
  background: #103f36;
  color: white;
  padding: 38px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand img {
  width: 180px;
}
.footer h3 {
  font-size: 14px;
}
.footer a,
.footer p {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.9;
  margin: 0;
}
.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.payments span {
  background: #fff;
  color: #1f5a4d;
  border-radius: 6px;
  padding: 8px 11px;
  font-size: 11px;
  font-weight: 700;
}
.footer-bottom {
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 90;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}

/* =========================
   MODAIS DE PRODUTOS
   ========================= */
.category-clickable {
  cursor: pointer;
}

.category-clickable:hover {
  transform: translateY(-7px) scale(1.01);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px;

  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
}

.product-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(10, 35, 30, 0.72);
  backdrop-filter: blur(6px);
}

.product-modal-content {
  position: relative;
  z-index: 2;

  width: min(1050px, 100%);
  max-height: 90vh;
  overflow-y: auto;

  padding: 42px;

  background: #fffdf8;

  border-radius: 28px;

  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);

  transform: translateY(30px) scale(0.97);
  transition: transform 0.25s ease;
}

.product-modal.active .product-modal-content {
  transform: translateY(0) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;

  width: 44px;
  height: 44px;

  border: 0;
  border-radius: 50%;

  background: #f0ebe2;
  color: #1f5a4d;

  font-size: 30px;
  line-height: 1;

  cursor: pointer;
}

.product-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.product-modal-header span {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #6f786f;
}

.product-modal-header h2 {
  margin: 8px 0;

  font-family: "Playfair Display", Georgia, serif;

  font-size: 42px;
  color: #16473d;
}

.product-modal-header p {
  margin: 0;
  color: #6f786f;
}

.product-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-option {
  display: flex;
  flex-direction: column;
  overflow: hidden;

  padding-bottom: 20px;

  background: #f7f3eb;
  border: 1px solid #e6ddcf;
  border-radius: 20px;

  text-align: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(22, 71, 61, 0.12);
}

.product-option-image {
  padding: 18px;
  overflow: hidden;
  background: #fffdf9;
}

.product-option-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;

  border-radius: 14px;
}

.product-option-info {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 22px;
}

.product-option h3 {
  margin: 18px 15px 7px;

  color: #16473d;
}

.product-description {
  margin: 0 0 18px;

  font-size: 14px;
  color: #727970;
}

.product-price {
  display: flex;
  flex-direction: column;

  margin-bottom: 20px;
}

.product-price span {
  margin-bottom: 2px;

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;

  color: #8b8f88;
}

.product-price strong {
  font-family: "Playfair Display", Georgia, serif;

  font-size: 26px;
  font-weight: 700;

  color: #1f5a4d;
}

.product-option .btn {
  width: 100%;
  margin-top: auto;
}

.product-option p {
  min-height: 40px;

  margin: 0 18px 18px;

  font-size: 13px;
  color: #6f786f;
}

body.modal-open {
  overflow: hidden;
}

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

  .meaning-visual {
    min-height: 360px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 600px) {
  .product-modal {
    padding: 8px;
  }

  .product-modal-content {
    padding: 26px 14px;
    border-radius: 18px;
  }

  .product-modal-header h2 {
    font-size: 30px;
  }

  .product-options-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-option {
    display: grid;
    grid-template-columns: 145px 1fr;
    align-items: stretch;

    padding: 0;
    min-height: 175px;

    border-radius: 18px;
    overflow: hidden;
  }

  .product-option-image {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5px;
    background: #fffdf9;
  }

  .product-option-image img {
    width: 100%;
    height: 145px;

    object-fit: contain;
    aspect-ratio: auto;
  }

  .product-option-info {
    padding: 14px 16px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    text-align: left;
  }

  .product-option-info h3 {
    margin: 12px 0 3px;

    font-size: 18px;
    line-height: 1.15;
  }

  .product-description {
    margin: 0 0 16px;

    font-size: 12px;
  }

  .product-price {
    margin-top: auto;
    margin-bottom: 12px;
  }

  .product-price span {
    font-size: 9px;
  }

  .product-price strong {
    font-size: 23px;
    line-height: 1;
    white-space: nowrap;
  }

  .product-option .btn {
    width: auto;
    align-self: flex-start;

    padding: 10px 14px;

    font-size: 11px;
    border-radius: 11px;
  }
}

/* TABLET */
@media (min-width: 601px) and (max-width: 900px) {
  .product-modal-content {
    width: min(760px, 95%);
    padding: 34px 28px;
  }

  .product-options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .product-option {
    display: flex;
    flex-direction: column;
  }

  .product-option-image {
    padding: 16px;
  }

  .product-option-image img {
    width: 100%;
    height: 190px;
    object-fit: contain;
  }

  .product-option-info {
    padding: 20px;
    text-align: center;
  }

  .product-option-info h3 {
    font-size: 20px;
  }

  .product-description {
    font-size: 13px;
    min-height: 20px;
  }

  .product-price {
    margin: 12px 0 18px;
  }

  .product-price strong {
    font-size: 26px;
    white-space: nowrap;
  }

  .product-option .btn {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }
  .main-nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: #174c41;
    padding: 25px 20px;
    display: none;
    flex-direction: column;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid,
  .meaning-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 470px;
  }
  .hero-products {
    width: 100%;
    max-width: 500px;
  }
  .benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .whatsapp-card {
    grid-column: 1/-1;
  }
  .cta-grid {
    grid-template-columns: 1fr auto;
  }
  .cta-gift {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, 1180px);
  }
  .site-header {
    height: 96px;
  }
  .main-nav {
    top: 96px;
  }
  .brand img {
    width: 96px;
    height: 60px;
  }
  .hero {
    padding-top: 115px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-art {
    min-height: auto;
    margin-top: 30px;
  }
  .benefits {
    grid-template-columns: 1fr 1fr;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .meaning-copy {
    padding: 35px 24px;
  }
  .meaning-copy h2 {
    font-size: 36px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .testimonial {
    min-width: 84%;
    scroll-snap-align: start;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
  .cta-grid .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   GALERIA / CARROSSEL
   ========================= */

.showcase {
  background: #fbf7f0;
  overflow: hidden;
}

.showcase-carousel {
  position: relative;
}

.showcase-track {
  display: flex;
  gap: 16px;

  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;

  padding: 10px 2px 22px;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-slide {
  flex: 0 0 calc((100% - 64px) / 5);

  aspect-ratio: 1 / 1;
  overflow: hidden;

  border-radius: 18px;
  background: #f2ede4;

  scroll-snap-align: start;

  box-shadow: 0 10px 30px rgba(22, 71, 61, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.showcase-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(22, 71, 61, 0.14);
}

.showcase-slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.4s ease,
    opacity 0.3s ease;
}

.showcase-slide:hover img {
  transform: scale(1.04);
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 253, 248, 0.96);
  color: var(--green);

  font-size: 32px;
  line-height: 1;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.showcase-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: #fff;
}

.showcase-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.showcase-arrow-prev {
  left: -23px;
}

.showcase-arrow-next {
  right: -23px;
}

.showcase-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;

  margin-top: 5px;
}

.showcase-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: #c8cec8;

  cursor: pointer;

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.showcase-dot.active {
  width: 22px;
  border-radius: 10px;
  background: var(--green);
}

/* TABLET - carrossel */
@media (min-width: 601px) and (max-width: 900px) {
  .showcase-slide {
    flex: 0 0 calc((100% - 32px) / 3);
  }

  .showcase-arrow-prev {
    left: -10px;
  }

  .showcase-arrow-next {
    right: -10px;
  }
}

/* CELULAR - carrossel */
@media (max-width: 600px) {
  .showcase-track {
    gap: 12px;
    padding-inline: 4px;
    scroll-padding-left: 4px;
  }

  .showcase-slide {
    flex: 0 0 76%;
  }

  .showcase-arrow {
    display: none;
  }

  .showcase-dots {
    margin-top: 2px;
  }
}

/* =========================
   LIGHTBOX / ZOOM DE IMAGENS
   ========================= */
.zoomable-image {
  cursor: zoom-in;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.zoomable-image:hover {
  transform: scale(1.04);
  opacity: 0.92;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox-overlay {
  position: absolute;
  inset: 0;

  background: rgba(8, 20, 17, 0.92);
  backdrop-filter: blur(5px);
}

.image-lightbox-content {
  position: relative;
  z-index: 2;

  max-width: 95vw;
  max-height: 90vh;

  width: auto;
  height: auto;

  object-fit: contain;

  border-radius: 14px;

  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);

  transform: scale(0.94);
  transition: transform 0.25s ease;
}

.image-lightbox.active .image-lightbox-content {
  transform: scale(1);
}

.image-lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 3;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);
  color: white;

  font-size: 32px;
  line-height: 1;

  cursor: pointer;
}

.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
  .image-lightbox {
    padding: 15px;
  }

  .image-lightbox-content {
    max-width: 96vw;
    max-height: 85vh;
  }

  .image-lightbox-close {
    top: 14px;
    right: 14px;

    width: 42px;
    height: 42px;
  }
}

.product-option-image {
  position: relative;
}

.image-zoom-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;

  display: grid;
  place-items: center;

  width: 30px;
  height: 30px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1f6556;

  font-size: 15px;

  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);

  pointer-events: none;
}

/* =========================
   MOBILE - SEÇÃO SIGNIFICADO
   Versão compacta
   ========================= */
@media (max-width: 600px) {
  .meaning {
    padding: 12px;
    background: #fbf7f0;
  }

  .meaning-grid {
    grid-template-columns: 1fr;
    border-radius: 22px;
    overflow: hidden;
  }

  .meaning-visual {
    min-height: 220px;
  }

  .meaning-copy {
    padding: 26px 22px 28px;
  }

  .meaning-copy > span {
    display: block;
    margin-bottom: 6px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .meaning-copy h2 {
    max-width: 100%;
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.02;
  }

  .meaning-copy > p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.5;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-grid > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;

    padding: 13px 14px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
  }

  .feature-icon {
    grid-column: 1;
    grid-row: 1 / span 2;

    width: 34px;
    height: 34px;
    margin: 0;

    object-fit: contain;
  }

  .feature-grid h3 {
    grid-column: 2;
    grid-row: 1;

    margin: 0 0 3px;
    font-size: 14px;
    line-height: 1.2;
  }

  .feature-grid p {
    grid-column: 2;
    grid-row: 2;

    margin: 0;
    font-size: 12px;
    line-height: 1.35;
  }
}

/* =========================
   MOBILE - SEÇÃO COMO FUNCIONA
   Layout compacto com classes exclusivas
   ========================= */
@media screen and (max-width: 620px) {
  .how.section {
    padding: 48px 0 42px;
  }

  .how .section-head {
    margin-bottom: 22px;
  }

  .how .section-head h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.05;
  }

  .how .how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .how .how-step {
    position: relative;
    display: grid;
    grid-template-columns: 38px 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;

    width: 100%;
    min-height: 88px;
    margin: 0;
    padding: 10px 2px 14px;

    text-align: left;
  }

  .how .how-step:not(:nth-of-type(4))::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 48px;
    bottom: -4px;
    width: 1px;
    background: #d8e2dc;
  }

  .how .how-num {
    grid-column: 1;
    grid-row: 1 / span 2;

    width: 29px;
    height: 29px;
    margin: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;
    background: #cad9d0;

    font-size: 12px;
    font-weight: 700;

    position: relative;
    z-index: 2;
  }

  .how .how-icon {
    grid-column: 2;
    grid-row: 1 / span 2;

    width: 52px;
    height: 52px;
    margin: 0;

    display: grid;
    place-items: center;

    border: 0;
    background: transparent;
  }

  .how .how-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }

  .how .how-step h3 {
    grid-column: 3;
    grid-row: 1;

    margin: 0 0 2px;
    font-size: 14px;
    line-height: 1.25;
    text-align: left;
  }

  .how .how-step p {
    grid-column: 3;
    grid-row: 2;

    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
    color: var(--muted);
  }

  .how .whatsapp-card {
    grid-column: 1;
    margin-top: 14px;
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .how .wa-icon {
    font-size: 32px;
    line-height: 1;
  }

  .how .whatsapp-card h3 {
    margin: 6px 0 7px;
    font-size: 25px;
  }

  .how .whatsapp-card p {
    max-width: 290px;
    margin: 0 auto 14px;
    font-size: 12px;
    line-height: 1.45;
  }

  .how .whatsapp-card .btn {
    min-height: 44px;
    padding: 12px 18px;
  }
}

/* =========================
   DEPOIMENTOS - NOVO LAYOUT
   ========================= */
.testimonials {
  background: #fbf7f0;
  padding: 58px 0 72px;
}
.testimonials-head {
  max-width: 850px;
  margin: 0 auto 36px;
}
.testimonials-head > span {
  color: #8a7558;
  font-weight: 700;
}
.testimonials-head > p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.testimonials .testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  overflow: visible;
}
.testimonial-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonials .testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px 26px 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid #e9dfd2;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(22,71,61,.045);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonials .testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(22,71,61,.09);
}
.testimonial-featured { background: #fffdf9; }
.testimonial-quote {
  height: 34px;
  margin-bottom: 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 54px;
  line-height: .9;
  color: #c8ad8b;
}
.testimonials .testimonial > p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.68;
  color: #465a54;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #eee7dd;
}
.testimonials .avatar {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg,#c8ad8b,#78958b);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.testimonial-author b {
  display: block;
  font-size: 13px;
}
.testimonial-author span {
  display: block;
  margin-top: 2px;
  color: #8a918c;
  font-size: 10px;
}
.testimonials-mobile-hint { display: none; }

@media (min-width: 621px) and (max-width: 900px) {
  .testimonials .testimonials-track { grid-template-columns: repeat(2,1fr); }
  .testimonial-column:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 620px) {
  .testimonials {
    padding: 48px 0 54px;
    overflow: hidden;
  }
  .testimonials-head {
    margin-bottom: 24px;
    padding-inline: 5px;
  }
  .testimonials-head h2 {
    font-size: 34px;
    line-height: 1.08;
  }
  .testimonials-head > p {
    font-size: 12px;
    line-height: 1.55;
  }
  .testimonials .testimonials-track {
    display: flex;
    gap: 12px;
    width: calc(100% + 13px);
    overflow-x: auto;
    padding: 4px 13px 14px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .testimonials .testimonials-track::-webkit-scrollbar { display: none; }
  .testimonial-column { display: contents; }
  .testimonials .testimonial {
    flex: 0 0 88%;
    min-width: 88%;
    padding: 22px 20px 20px;
    scroll-snap-align: start;
  }
  .testimonials .testimonial:hover { transform: none; }
  .testimonial-quote {
    height: 28px;
    font-size: 46px;
  }
  .testimonials .testimonial > p {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.62;
  }
  .testimonials-mobile-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    color: #87908a;
    font-size: 10px;
  }
  .testimonials-mobile-hint span {
    width: 26px;
    height: 1px;
    background: #b8c6bf;
  }
}

/* =========================
   MINIATURAS REAIS - FEEDBACKS
   ========================= */
.testimonial-product {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: block;

  object-fit: cover;
  object-position: center;

  border-radius: 12px;
  border: 1px solid #e5ddd2;
  background: #f4efe7;

  box-shadow: 0 5px 14px rgba(22, 71, 61, 0.10);
}

.testimonial-author {
  min-height: 59px;
}

/* A foto vira o principal elemento de identificação;
   avatares antigos continuam suportados caso sejam usados futuramente. */
@media (max-width: 620px) {
  .testimonial-product {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    border-radius: 11px;
  }

  .testimonial-author {
    min-height: 53px;
  }
}

/* =========================
   FINAL DA PÁGINA - MODERNIZAÇÃO
   ========================= */

/* CTA final */
.cta-band {
  padding: 28px 0 0;
}

.cta-grid {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 24px 24px 0 0;
  background:
    radial-gradient(circle at 88% 24%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(120deg, #17483f, #2b7464);
  box-shadow: 0 -10px 36px rgba(22, 71, 61, 0.06);
}

.cta-grid::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -110px;
  bottom: -145px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}

.cta-grid > * {
  position: relative;
  z-index: 1;
}

.cta-grid h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.1vw, 42px);
  letter-spacing: -0.02em;
}

.cta-grid p {
  margin: 10px 0 0;
  font-size: 14px;
}

.cta-final-btn {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 15px;
  white-space: nowrap;
}

.cta-gift img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: .92;
  margin-left: auto;
}

/* Footer */
.footer {
  padding: 42px 0 20px;
}

.footer-grid {
  grid-template-columns: 1.05fr .9fr 1.15fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.footer h3 {
  margin: 0 0 15px;
  font-size: 13px;
  letter-spacing: .02em;
}

.footer a,
.footer p {
  font-size: 12px;
  line-height: 1.75;
}

.footer a {
  width: fit-content;
  transition: opacity .2s ease, transform .2s ease;
}

.footer a:hover {
  opacity: 1;
  transform: translateX(2px);
}

.footer-brand img {
  width: 190px;
  margin-bottom: 6px;
}

.footer-brand p {
  max-width: 220px;
}

.footer-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-steps li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
  align-items: start;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  line-height: 1.45;
}

.footer-steps li span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.footer-note {
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.58) !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
}

/* leve refinamento geral: títulos de seção um pouco mais equilibrados */
.section-head h2 {
  letter-spacing: -0.02em;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 36px;
  }
}

@media (max-width: 620px) {
  .cta-band {
    padding-top: 20px;
  }

  .cta-grid {
    padding: 28px 22px 26px;
    border-radius: 22px 22px 0 0;
    text-align: left;
  }

  .cta-grid h2 {
    font-size: 32px;
    line-height: 1.05;
  }

  .cta-grid p {
    font-size: 13px;
  }

  .cta-final-btn {
    width: 100%;
    margin-top: 6px;
  }

  .footer {
    padding: 34px 0 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid > div {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }

  .footer-grid > div:first-child {
    padding-top: 0;
  }

  .footer-grid > div:last-child {
    border-bottom: 0;
    padding-bottom: 4px;
  }

  .footer-brand img {
    width: 170px;
  }

  .footer h3 {
    margin-bottom: 12px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 16px;
    text-align: center;
  }
}


/* =========================================================
   AJUSTES FINAIS - HOME IQUEPÔ
   24/08/2026
   ========================================================= */

/* CARROSSEL: paginação compacta */
.showcase-dots {
  min-height: 28px;
  margin-top: 4px;
}

.showcase-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  min-width: 58px;
  height: 28px;
  padding: 0 11px;

  border: 1px solid rgba(22, 71, 61, 0.12);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.72);
  color: #87908a;

  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.showcase-counter strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

/* Os antigos dots não são mais utilizados */
.showcase-dot {
  display: none !important;
}

@media (max-width: 620px) {
  /* Título do carrossel mais compacto no celular */
  .showcase .section-head {
    margin-bottom: 22px;
  }

  .showcase .section-head h2 {
    max-width: 330px;
    margin-inline: auto;
    font-size: 31px;
    line-height: 1.04;
    text-wrap: balance;
  }

  /* Mostra um pouco mais do próximo trabalho, reforçando o gesto de arrastar */
  .showcase-slide {
    flex-basis: 72%;
  }

  .showcase-dots {
    margin-top: 0;
  }

  /* Depoimentos: próximo card fica visível e o hint ganha mais destaque */
  .testimonials .testimonial {
    flex: 0 0 82%;
    min-width: 82%;
  }

  .testimonials .testimonials-track {
    gap: 10px;
    padding-right: 18px;
  }

  .testimonials-mobile-hint {
    gap: 7px;
    margin-top: 7px;
    font-size: 11px;
    font-weight: 600;
  }

  .testimonials-mobile-hint::after {
    content: "→";
    color: var(--green);
    font-size: 13px;
  }

  /* No mobile a navegação inferior já cumpre o papel de contato.
     Evita dois botões de WhatsApp ocupando a mesma região. */
  .floating-wa {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .showcase .section-head h2 {
    max-width: 300px;
    font-size: 29px;
  }

  .testimonials .testimonial {
    flex-basis: 84%;
    min-width: 84%;
  }
}

/* =========================================================
   PARA EMPRESAS / PERSONALIZADOS EM QUANTIDADE
   ========================================================= */

.corporate {
  padding: 72px 0 76px;
  background: #fbf7f0;
}

.corporate-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: stretch;
}

.corporate-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 36px;
  background: #fffdf8;
  border: 1px solid #ebe1d5;
  border-radius: 24px;
}

.corporate-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: #8a7558;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.corporate-copy h2 {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.corporate-copy > p {
  max-width: 540px;
  margin: 0;
  color: #586861;
  font-size: 15px;
  line-height: 1.7;
}

.corporate-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.corporate-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.corporate-link:hover {
  gap: 11px;
  opacity: 0.78;
}

.corporate-featured {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  background: #e9e2d8;
  box-shadow: 0 18px 50px rgba(22, 71, 61, 0.10);
}

.corporate-featured > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.corporate-featured::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 32, 28, 0),
    rgba(10, 32, 28, 0.78)
  );
  pointer-events: none;
}

.corporate-featured-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 30px;
  color: #fff;
}

.corporate-featured-overlay > span {
  display: block;
  margin-bottom: 6px;
  color: #e8d4a2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.corporate-featured-overlay strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.1;
}

.corporate-featured-overlay p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.5;
}

.corporate-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.corporate-case {
  min-width: 0;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid #ebe1d5;
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.corporate-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(22, 71, 61, 0.08);
}

.corporate-case-image {
  height: 220px;
  overflow: hidden;
  background: #eee8df;
}

.corporate-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.corporate-case:hover .corporate-case-image img {
  transform: scale(1.025);
}

.corporate-case-copy {
  padding: 20px 22px 22px;
}

.corporate-case-copy > span {
  display: block;
  margin-bottom: 7px;
  color: #9a805c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.corporate-case-copy h3 {
  margin: 0 0 7px;
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1.25;
}

.corporate-case-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.corporate-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  overflow: hidden;
  background: var(--green-dark);
  border-radius: 20px;
}

.corporate-proof > div {
  padding: 21px 24px;
}

.corporate-proof > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.corporate-proof strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
}

.corporate-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.45;
}

@media (min-width: 621px) and (max-width: 980px) {
  .corporate {
    padding: 62px 0 66px;
  }

  .corporate-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .corporate-copy {
    padding: 34px;
  }

  .corporate-featured,
  .corporate-featured > img {
    min-height: 390px;
  }

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

  .corporate-case:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .corporate-case:last-child .corporate-case-image {
    height: 100%;
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .corporate {
    padding: 46px 0 50px;
    overflow: hidden;
  }

  .corporate-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .corporate-copy {
    padding: 25px 21px 23px;
    border-radius: 20px;
  }

  .corporate-eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .corporate-copy h2 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.02;
  }

  .corporate-copy > p {
    font-size: 13px;
    line-height: 1.55;
  }

  .corporate-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 20px;
  }

  .corporate-actions .btn {
    width: 100%;
  }

  .corporate-link {
    justify-content: center;
    min-height: 38px;
  }

  .corporate-featured {
    min-height: 300px;
    border-radius: 20px;
  }

  .corporate-featured > img {
    height: 300px;
    min-height: 300px;
  }

  .corporate-featured-overlay {
    padding: 22px 20px;
  }

  .corporate-featured-overlay strong {
    font-size: 23px;
  }

  .corporate-cases {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .corporate-case {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    min-height: 138px;
    border-radius: 17px;
  }

  .corporate-case-image {
    height: 100%;
    min-height: 138px;
  }

  .corporate-case-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 15px;
  }

  .corporate-case-copy h3 {
    font-size: 15px;
  }

  .corporate-case-copy p {
    font-size: 11px;
  }

  .corporate-proof {
    grid-template-columns: 1fr;
    margin-top: 14px;
    border-radius: 17px;
  }

  .corporate-proof > div {
    padding: 15px 18px;
  }

  .corporate-proof > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }
}
