/* ==========================================================================
   PECCIN PET CARE & ADESTRAMENTO — Design System v2
   Mobile-first · Bold · Full-bleed · Clean
   ========================================================================== */

:root {
  /* Paleta oficial da marca */
  --color-blue: #538fdf;
  --color-blue-dark: #3a6fb8;
  --color-green: #aad268;
  --color-green-dark: #6f9a3a;
  --color-black: #332e36;
  --color-gray: #919191;
  --color-white: #fbfffd;

  /* Tons de apoio derivados */
  --color-blue-tint: rgba(83, 143, 223, 0.08);
  --color-blue-tint-strong: rgba(83, 143, 223, 0.14);
  --color-green-tint: rgba(170, 210, 104, 0.1);
  --color-gray-tint: rgba(145, 145, 145, 0.08);
  --color-border: rgba(51, 46, 54, 0.08);
  --color-border-strong: rgba(51, 46, 54, 0.14);
  --whatsapp: #25d366;

  /* Tipografia */
  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --container-max: 1240px;
  --header-h: 72px;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
}

/* Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-black);
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

/* Container
   ========================================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 48px;
  }
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
}

.btn-primary:hover {
  background: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
}

.btn-white {
  background: #fff;
  color: var(--color-black);
  border-color: #fff;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--color-black);
}

.btn-outline {
  background: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
  padding: 12px 24px;
}

.btn-outline:hover {
  background: var(--color-blue);
  color: #fff;
}

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

.btn-whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
}

.btn-on-dark {
  background: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
}

.btn-on-dark:hover {
  background: #fff;
  color: var(--color-black);
  border-color: #fff;
}

.link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-blue);
  transition: opacity 0.2s ease;
}

.link:hover {
  opacity: 0.7;
}

/* Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  overflow: hidden;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}

/* Scrolled state (toggled by JS) */
.site-header.header-scrolled {
  background: rgba(251, 255, 253, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

/* On pages without transparent header */
.site-header.header-solid {
  background: var(--color-white);
  box-shadow: 0 1px 0 var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.brand img {
  height: 36px;
  width: auto;
}

.brand span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}

/* Transparent header text colors */
.header-transparent .brand span,
.header-transparent .nav-desktop a,
.header-transparent .menu-toggle span {
  color: #fff;
}

.header-transparent.header-scrolled .brand span,
.header-transparent.header-scrolled .nav-desktop a,
.header-transparent.header-scrolled .menu-toggle span {
  color: var(--color-black);
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-black);
  opacity: 0.65;
  transition:
    opacity 0.2s ease,
    color 0.4s ease;
}

.nav-desktop a:hover {
  opacity: 1;
}

.nav-desktop a.active {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  z-index: 2;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-black);
  border-radius: 1px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.4s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#header-cta {
  display: none;
}

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  #header-cta {
    display: inline-flex;
    padding: 10px 22px;
    font-size: 11px;
  }

  /* On transparent header, CTA is outline white */
  .header-transparent #header-cta {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
  }

  .header-transparent #header-cta:hover {
    background: #fff;
    color: var(--color-black);
    border-color: #fff;
  }

  .header-transparent.header-scrolled #header-cta {
    background: var(--color-blue);
    color: #fff;
    border-color: var(--color-blue);
  }

  .header-transparent.header-scrolled #header-cta:hover {
    background: var(--color-blue-dark);
    border-color: var(--color-blue-dark);
  }
}

/* Mobile menu (fullscreen overlay) */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--color-black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-mobile.is-open {
  transform: translateY(0);
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  padding: 14px 0;
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-mobile a:hover {
  opacity: 1;
}

.nav-mobile .btn {
  margin-top: 32px;
  font-size: 12px;
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.nav-mobile .btn:hover {
  background: #fff;
  color: var(--color-black);
}

@media (min-width: 960px) {
  .nav-mobile {
    display: none !important;
  }
}

/* Eyebrow label */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin: 0 0 16px;
}

/* Section titles */
.section-title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-title--lg {
  font-size: 36px;
}

.section-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-black);
  opacity: 0.65;
  max-width: 560px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 38px;
  }

  .section-title--lg {
    font-size: 48px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

/* Sections — generic
   ========================================================================== */
.section {
  padding: 64px 0;
}

.section--lg {
  padding: 80px 0;
}

.section--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section--dark .section-title,
.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section--dark .section-subtitle {
  color: rgba(251, 255, 253, 0.6);
}

.section--dark .eyebrow {
  color: var(--color-green);
}

.section--gray {
  background: #f5f5f3;
}

.section--blue {
  background: var(--color-blue);
  color: #fff;
}

.section--blue .section-title,
.section--blue h2 {
  color: #fff;
}

.section--green {
  background: var(--color-green-tint);
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }

  .section--lg {
    padding: 140px 0;
  }
}

/* Hero — Full viewport
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--header-h) 20px 40px;
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 75%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(51, 46, 54, 0.45) 0%,
      rgba(51, 46, 54, 0.75) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 32px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .hero__bg img {
    object-position: center 60%;
  }

  .hero__title {
    font-size: 64px;
  }

  .hero__text {
    font-size: 17px;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

@media (min-width: 1200px) {
  .hero__title {
    font-size: 80px;
  }
}

/* Page header (inner pages)
   ========================================================================== */
.page-header {
  background: var(--color-black);
  color: #fff;
  padding: calc(var(--header-h) + 48px) 0 48px;
  text-align: center;
}

.page-header h1 {
  font-size: 32px;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.page-header .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-header {
    padding: calc(var(--header-h) + 80px) 0 80px;
  }

  .page-header h1 {
    font-size: 48px;
  }
}

/* Two-column grid layout
   ========================================================================== */
.grid-2 {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 860px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .grid-2--text-first {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .grid-2--img-first> :first-child {
    order: 0;
  }
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge-blue {
  background: var(--color-blue-tint-strong);
  color: var(--color-blue-dark);
}

.badge-green {
  background: var(--color-green-tint);
  color: var(--color-green-dark);
}

.badge-gray {
  background: var(--color-gray-tint);
  color: #5a5a5a;
}

/* Media block */
.media-block {
  border-radius: 12px;
  background: var(--color-gray-tint);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

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

/* Service cards
   ========================================================================== */
.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.service-card {
  background: #f5f5f3;
  padding: 32px 28px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--color-black);
  opacity: 0.65;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card .link {
  font-size: 12px;
}

@media (min-width: 860px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card {
    padding: 40px 32px;
  }
}

/* Person row / about block */
.about-block {
  display: grid;
  gap: 24px;
  align-items: center;
}

.about-block__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.about-block__name {
  font-size: 20px;
  margin-bottom: 4px;
}

.about-block__role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}

.about-block__text {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 20px;
  max-width: 520px;
}

@media (min-width: 860px) {
  .about-block {
    grid-template-columns: 200px 1fr;
    gap: 48px;
  }
}

/* Area grid */
.area-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.map-container,
.map-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  background: var(--color-gray-tint);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.map-container iframe,
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 860px) {
  .area-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* CTA final section
   ========================================================================== */
.cta-final {
  color: var(--color-black);
  padding: 80px 0;
  text-align: center;
}

.cta-final h2 {
  color: var(--color-black);
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.cta-final__sub {
  color: var(--color-black);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 36px;
}

@media (min-width: 768px) {
  .cta-final {
    padding: 120px 0;
  }

  .cta-final h2 {
    font-size: 40px;
  }

  .cta-final__sub {
    font-size: 16px;
  }
}

/* Casos teaser section */
.casos-teaser {
  padding: 80px 0;
  text-align: center;
}

.casos-teaser .section-title {
  color: #fff;
  max-width: 600px;
  margin: 0 auto 16px;
}

.eyebrow--light {
  color: var(--color-green);
}

/* Philosophy / Quote section */
.quote-section {
  padding: 80px 0;
  text-align: center;
}

.quote-section .section-title {
  max-width: 700px;
  margin: 0 auto 20px;
}

.quote-section .section-subtitle {
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .quote-section {
    padding: 120px 0;
  }
}

/* Check list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  opacity: 0.8;
}

.check-item svg {
  flex-shrink: 0;
  color: var(--color-blue);
  margin-top: 3px;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: var(--color-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.step p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

@media (min-width: 860px) {
  .steps {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

  .step {
    flex-direction: column;
    text-align: center;
    max-width: 200px;
  }
}

/* Credentials (sobre page) */
.credentials {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  padding: 16px 20px;
  background: #f5f5f3;
}

.credential-item svg {
  color: var(--color-blue);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .credentials {
    grid-template-columns: 1fr 1fr;
  }
}

/* Casos de transformação */
.case-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.case-card {
  background: #f5f5f3;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-3px);
}

.case-media {
  aspect-ratio: 4/3;
  background: var(--color-gray-tint);
}

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

.case-body {
  padding: 20px;
}

.case-body h3 {
  font-size: 15px;
  margin-bottom: 12px;
}

.case-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 3px;
}

.case-text {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 12px;
  line-height: 1.5;
}

.case-text:last-child {
  margin-bottom: 0;
}

@media (min-width: 520px) {
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 760px) {
  .case-body {
    padding: 24px;
  }

  .case-body h3 {
    font-size: 16px;
  }
}

/* Produtos */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.product-card {
  background: #f5f5f3;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-media {
  aspect-ratio: 1/1;
  background: var(--color-gray-tint);
}

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

.product-body {
  padding: 16px;
}

.product-body h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.product-body .desc {
  font-size: 12px;
  opacity: 0.55;
  margin-bottom: 14px;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Contato */
.contact-cta-block {
  text-align: center;
  padding: 48px 0;
}

.contact-cta-block .btn {
  margin-bottom: 20px;
}

.contact-cta-block .hours {
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 4px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-grid div {
  aspect-ratio: 1/1;
  background: var(--color-gray-tint);
  border-radius: 4px;
}

@media (min-width: 640px) {
  .instagram-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Sobre page — bio sections */
.bio-section {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.75;
  max-width: 680px;
}

.bio-section p+p {
  margin-top: 20px;
}

.bio-img {
  width: 100%;
  max-width: 480px;
  border-radius: 4px;
  object-fit: cover;
  margin: 0 auto;
}

/* Adestramento — service detail blocks */
.service-detail {
  padding: 48px 0;
}

.service-detail+.service-detail {
  border-top: 1px solid var(--color-border);
}

.service-detail h2 {
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-detail p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.7;
  max-width: 640px;
}

@media (min-width: 768px) {
  .service-detail {
    padding: 64px 0;
  }

  .service-detail h2 {
    font-size: 28px;
  }
}

/* Hospedagem — service cards (larger) */
.service-feature {
  padding: 32px 24px;
  background: #f5f5f3;
  margin-bottom: 16px;
}

.service-feature:last-child {
  margin-bottom: 0;
}

.service-feature--green {
  background: var(--color-green-tint);
}

.service-feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-feature p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.65;
  max-width: 640px;
}

@media (min-width: 768px) {
  .service-feature {
    padding: 48px 40px;
  }
}

/* Footer
   ========================================================================== */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.footer-col h4 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.4;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 13px;
  opacity: 0.65;
  margin-bottom: 10px;
  line-height: 1.7;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 255, 253, 0.08);
  padding-top: 24px;
  font-size: 11px;
  opacity: 0.35;
  display: flex;
  flex-direction: column;
  gap: 8px;
  letter-spacing: 0.02em;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* WhatsApp floating button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  z-index: 90;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.24);
}

/* Floating Cart & Drawer Widget
   ========================================================================== */
.cart-float {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 90;
  cursor: pointer;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.cart-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
  background: var(--color-blue);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-green);
  color: var(--color-black);
  font-weight: 700;
  font-size: 11px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.cart-badge.bump {
  transform: scale(1.3);
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

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

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.cart-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  z-index: 1001;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--color-black);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.cart-close:hover {
  background: var(--color-gray-tint);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  text-align: center;
  color: var(--color-gray);
  padding: 40px 0;
  font-size: 14px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--color-gray-tint);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid var(--color-border-strong);
  background: #fff;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cart-qty-btn:hover {
  background: var(--color-gray-tint);
}

.cart-qty-num {
  font-size: 13px;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #d9534f;
  cursor: pointer;
  padding: 4px;
  font-size: 16px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.cart-item-remove:hover {
  opacity: 1;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  background: #fafafa;
}

.cart-checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  background: var(--whatsapp);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  text-decoration: none;
}

.cart-checkout-btn:hover {
  background: #1fb855;
  transform: translateY(-1px);
}

.cart-checkout-btn.is-disabled {
  background: var(--color-gray);
  pointer-events: none;
  opacity: 0.5;
}

/* Scroll animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* Accessibility
   ========================================================================== */
:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}