/* ==============================================
   PizzaCart PetSitter — style.css
   Mobile-first, sem frameworks
   ============================================== */

/* -----------------------------------------------
   1. TOKENS / VARIÁVEIS CSS
----------------------------------------------- */
:root {
  /* Cores Primárias */
  --blue-main:    #1A73E8;
  --blue-dark:    #0D47A1;
  --blue-light:   #E8F0FE;
  --blue-mid:     #1565C0;

  /* Cores de Acento */
  --orange-main:  #FF6D00;
  --orange-light: #FFF3E0;
  --orange-hover: #E65100;
  --orange-soft:  #FFB74D;

  /* Neutras */
  --white:        #FFFFFF;
  --gray-100:     #F5F7FA;
  --gray-200:     #E2E8F0;
  --gray-400:     #9AA5B4;
  --gray-600:     #3D4451;
  --gray-900:     #1A202C;

  /* Feedback */
  --green:        #2E7D32;
  --green-light:  #E8F5E9;
  --red:          #C62828;
  --red-light:    #FFEBEE;

  /* Tipografia */
  --font-heading: 'Nunito', sans-serif;
  --font-body:    'Poppins', sans-serif;

  /* Tamanhos fluidos */
  --fs-h1:   clamp(2rem, 5vw, 3.8rem);
  --fs-h2:   clamp(1.6rem, 3.5vw, 2.6rem);
  --fs-h3:   clamp(1.2rem, 2vw, 1.6rem);
  --fs-body: 1rem;
  --fs-sm:   0.875rem;
  --fs-xs:   0.75rem;

  /* Espaçamentos (base 8px) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Border radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Sombras */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.13), 0 4px 14px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.10);
  --shadow-blue:   0 4px 24px rgba(26,115,232,0.28);
  --shadow-orange: 0 4px 24px rgba(255,109,0,0.30);

  /* Transições */
  --t-fast:   0.15s ease;
  --t-normal: 0.25s ease;
  --t-slow:   0.4s ease;
}


/* -----------------------------------------------
   2. RESET & BASE
----------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

select,
input,
textarea {
  font-family: var(--font-body);
}


/* -----------------------------------------------
   3. LAYOUT HELPERS
----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-20) 0;
}

@media (max-width: 575px) {
  .section { padding: var(--sp-16) 0; }
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-h2);
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 540px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-main);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

.text--orange { color: var(--orange-main); }
.text--blue   { color: var(--blue-main); }


/* -----------------------------------------------
   4. BUTTONS
----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 12px 26px;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-normal);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* Azul */
.btn--blue {
  background: var(--blue-main);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn--blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(26,115,232,0.35);
}

/* Laranja */
.btn--orange {
  background: var(--orange-main);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn--orange:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,109,0,0.38);
}

/* Ghost (hero) */
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* WhatsApp */
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn--whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
}


/* -----------------------------------------------
   5. NAVBAR
----------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-normal), background var(--t-normal);
}

.navbar--scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.navbar__logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.65rem;
  color: var(--blue-main);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.navbar__logo:hover { opacity: 0.85; }

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.navbar__logo-accent { color: var(--orange-main); }

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.navbar__link {
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--gray-600);
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 3px;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-main);
  border-radius: var(--r-full);
  transition: width var(--t-normal);
}

.navbar__link:hover {
  color: var(--blue-main);
}
.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

/* CTA */
.navbar__cta {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.navbar__hamburger:hover { background: var(--gray-100); }

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gray-600);
  border-radius: var(--r-full);
  transition: all var(--t-normal);
  transform-origin: center;
}

/* Hamburger active state */
.navbar__hamburger.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.navbar__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* -----------------------------------------------
   6. MOBILE MENU
----------------------------------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: var(--sp-6) var(--sp-6) var(--sp-8);
  z-index: 999;
  flex-direction: column;
  gap: var(--sp-2);
  border-top: 2px solid var(--blue-light);
  animation: slideDown 0.25s ease;
}

.mobile-menu.is-open {
  display: flex;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu__link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--gray-600);
  padding: var(--sp-3) var(--sp-2);
  border-bottom: 1px solid var(--gray-200);
  transition: color var(--t-fast);
}
.mobile-menu__link:hover { color: var(--blue-main); }

.mobile-menu__cta {
  margin-top: var(--sp-4);
  width: 100%;
}


/* -----------------------------------------------
   7. HERO
----------------------------------------------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue-main) 55%, #2196F3 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

/* Blobs decorativos */
.hero__blob {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 60%;
  pointer-events: none;
  animation: blobPulse 9s ease-in-out infinite;
}

.hero__blob--1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 109, 0, 0.12);
  bottom: -150px;
  right: -100px;
  animation-duration: 9s;
}

.hero__blob--2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.07);
  top: -80px;
  left: -80px;
  animation-duration: 12s;
  animation-direction: reverse;
}

.hero__blob--3 {
  width: 250px;
  height: 250px;
  background: rgba(255, 183, 77, 0.1);
  top: 30%;
  right: 5%;
  animation-duration: 7s;
  animation-delay: 2s;
}

@keyframes blobPulse {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 60%; transform: scale(1); }
  33%       { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; transform: scale(1.04); }
  66%       { border-radius: 70% 30% 50% 50% / 40% 60% 50% 60%; transform: scale(0.97); }
}

/* Hero inner */
.hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  padding: var(--sp-16) var(--sp-6);
  position: relative;
  z-index: 2;
}

/* Hero text */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
}
.hero__badge i { color: var(--orange-soft); }

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h1);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: var(--sp-6);
}

.hero__highlight {
  color: var(--orange-soft);
  position: relative;
  display: inline-block;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item i {
  color: var(--orange-soft);
  font-size: 1rem;
}

/* Hero Image */
.hero__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-ring {
  position: absolute;
  inset: -20px;
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  animation: ringRotate 15s linear infinite;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.hero__image {
  width: 100%;
  max-width: 460px;
  height: 440px;
  object-fit: cover;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

/* Floating cards */
.hero__floating-card {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
}

.hero__floating-card--top {
  top: 16px;
  right: -10px;
  animation-delay: 0.5s;
}

.hero__floating-card--bottom {
  bottom: 24px;
  left: -10px;
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero__floating-card strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--gray-900);
}
.hero__floating-card small {
  font-size: var(--fs-xs);
  color: var(--gray-400);
}

.floating-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-main);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.floating-card__icon--orange {
  background: var(--orange-light);
  color: var(--orange-main);
}

/* Stats bar */
.hero__stats {
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: var(--sp-5) 0;
  position: relative;
  z-index: 2;
}

.hero__stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  color: var(--white);
}

.stat__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--orange-soft);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.75);
  margin-top: var(--sp-1);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}


/* -----------------------------------------------
   8. SERVICES
----------------------------------------------- */
.services {
  background: var(--gray-100);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-main), var(--orange-main));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 66px;
  height: 66px;
  border-radius: var(--r-md);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  transition: transform var(--t-normal);
}

.service-card:hover .service-card__icon {
  transform: scale(1.08) rotate(-5deg);
}

.service-card__icon i {
  font-size: 1.8rem;
  color: var(--orange-main);
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gray-900);
  margin-bottom: var(--sp-3);
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-main);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: gap var(--t-normal), color var(--t-fast);
}

.service-card__link:hover {
  gap: 12px;
  color: var(--blue-dark);
}

.service-card__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-main), var(--orange-main));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.service-card:hover .service-card__bar {
  transform: scaleX(1);
}


/* -----------------------------------------------
   9. WHY US
----------------------------------------------- */
.why-us {
  background: var(--white);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

/* Image col */
.why-us__image-col {
  position: relative;
}

.why-us__blob {
  position: absolute;
  inset: -30px;
  background: var(--blue-light);
  border-radius: 60% 40% 50% 50% / 50% 50% 60% 40%;
  z-index: 0;
  animation: blobPulse 12s ease-in-out infinite;
}

.why-us__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

.why-us__badge {
  position: absolute;
  bottom: 30px;
  right: -16px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-6);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 5s ease-in-out infinite;
}

.why-us__badge-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-main);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-us__badge strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--gray-900);
  display: block;
}
.why-us__badge small {
  font-size: var(--fs-xs);
  color: var(--gray-400);
}

/* Content col */
.why-us__content h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-h2);
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
  margin-top: var(--sp-4);
}

.why-us__lead {
  color: var(--gray-400);
  font-size: 1rem;
  margin-bottom: var(--sp-8);
  line-height: 1.75;
}

/* Features list */
.features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}

.features__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.features__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-main);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--t-normal), background var(--t-normal);
}

.features__item:hover .features__icon {
  transform: scale(1.1);
  background: var(--blue-main);
  color: var(--white);
}

.features__text h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 3px;
}

.features__text p {
  font-size: var(--fs-sm);
  color: var(--gray-400);
  line-height: 1.6;
}


/* -----------------------------------------------
   10. TESTIMONIALS
----------------------------------------------- */
.testimonials {
  background: linear-gradient(135deg, var(--blue-light) 0%, #d4e4fc 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--blue-light);
  line-height: 1;
  pointer-events: none;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-4);
}
.stars i { color: var(--orange-main); font-size: 0.9rem; }

.testimonial-card__text {
  font-size: 0.93rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-avatar--blue   { background: var(--blue-main); }
.author-avatar--orange { background: var(--orange-main); }
.author-avatar--purple { background: #7C3AED; }

.testimonial-card__author strong {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gray-900);
}
.testimonial-card__author small {
  font-size: var(--fs-xs);
  color: var(--gray-400);
}


/* -----------------------------------------------
   11. CONTACT
----------------------------------------------- */
.contact {
  background: var(--gray-100);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-12);
  align-items: start;
}

/* Contact info */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--white);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-normal), transform var(--t-normal);
}

.contact-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-item__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-main);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gray-900);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.83rem;
  color: var(--gray-400);
}

.contact__whatsapp {
  width: 100%;
  margin-bottom: var(--sp-5);
}

.contact__map {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--white);
  padding: var(--sp-5);
  border-radius: var(--r-md);
  border: 2px dashed var(--gray-200);
  color: var(--gray-400);
  font-size: var(--fs-sm);
  font-weight: 500;
}

.contact__map i {
  font-size: 1.5rem;
  color: var(--blue-main);
}

/* Contact Form */
.contact__form-wrap {
  /* container para o formulário */
}

.contact-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
}

.contact-form__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--gray-900);
  margin-bottom: var(--sp-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sp-4);
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gray-600);
  margin-bottom: 6px;
}

.required {
  color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--gray-900);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 12px 16px;
  transition: border-color var(--t-normal), box-shadow var(--t-normal), background var(--t-normal);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-main);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.12);
}

.form-group input.is-error,
.form-group select.is-error,
.form-group textarea.is-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(198,40,40,0.1);
}

.form-group input.is-valid,
.form-group select.is-valid,
.form-group textarea.is-valid {
  border-color: var(--green);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239AA5B4'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}

.form-group__error {
  font-size: var(--fs-xs);
  color: var(--red);
  margin-top: 4px;
  min-height: 16px;
}

.contact-form__submit {
  width: 100%;
  margin-top: var(--sp-2);
}

.form-success {
  display: none;
  margin-top: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--green-light);
  border-radius: var(--r-md);
  color: var(--green);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-align: center;
  border: 1px solid rgba(46,125,50,0.2);
  animation: fadeIn 0.3s ease;
}

.form-success.is-visible {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* -----------------------------------------------
   12. FOOTER
----------------------------------------------- */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.7);
  padding-top: var(--sp-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
}

/* Brand col */
.footer__logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-4);
}

.footer__logo i { color: var(--orange-soft); }
.footer__logo span { color: var(--orange-main); }

.footer__desc {
  font-size: var(--fs-sm);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: var(--sp-6);
}

.social-links {
  display: flex;
  gap: var(--sp-2);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all var(--t-normal);
}
.social-link:hover {
  background: var(--orange-main);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

/* Footer columns */
.footer__col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.footer__col ul li {
  margin-bottom: var(--sp-2);
}

.footer__col ul li a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer__col ul li a:hover {
  color: var(--orange-main);
  padding-left: 4px;
}
.footer__col ul li a i {
  font-size: 0.7rem;
  flex-shrink: 0;
}

.footer__contact-list li a i {
  font-size: 0.85rem;
  color: var(--blue-main);
  width: 16px;
}

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-5) 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer__bottom-inner a {
  color: var(--orange-main);
}


/* -----------------------------------------------
   13. BACK TO TOP
----------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: var(--r-full);
  background: var(--blue-main);
  color: var(--white);
  font-size: 1rem;
  box-shadow: var(--shadow-blue);
  transition: all var(--t-normal);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}


/* -----------------------------------------------
   14. SCROLL REVEAL ANIMATIONS
----------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* Escalonamento nos grids */
.services__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.testimonials__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials__grid .reveal:nth-child(3) { transition-delay: 0.2s; }


/* -----------------------------------------------
   15. PAGE HERO (páginas internas)
----------------------------------------------- */
.page-hero {
  background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue-main) 60%, #2196F3 100%);
  padding: calc(70px + var(--sp-16)) 0 var(--sp-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero__blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 109, 0, 0.1);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 60%;
  bottom: -150px;
  right: -80px;
  pointer-events: none;
  animation: blobPulse 10s ease-in-out infinite;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__content h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--fs-h1);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-4);
  margin-top: var(--sp-3);
}

.page-hero__content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto var(--sp-6);
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
}
.breadcrumb a {
  color: rgba(255,255,255,0.75);
  transition: color var(--t-fast);
}
.breadcrumb a:hover { color: var(--orange-soft); }
.breadcrumb i { font-size: 0.65rem; }
.breadcrumb span { color: var(--orange-soft); font-weight: 600; }


/* -----------------------------------------------
   16. CTA STRIP
----------------------------------------------- */
.cta-strip {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
  padding: var(--sp-12) 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.cta-strip__text h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.cta-strip__text p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
}

.cta-strip__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}


/* -----------------------------------------------
   17. SERVICE DETAIL (página serviços)
----------------------------------------------- */
.services__grid--full {
  display: flex;
  flex-direction: column;
  gap: var(--sp-20);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  position: relative;
}

.service-detail--reverse {
  direction: rtl;
}
.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__icon {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange-main);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.service-detail--reverse .service-detail__icon {
  left: auto;
  right: -18px;
}

.service-detail__icon--blue {
  background: var(--blue-light);
  color: var(--blue-main);
}

.service-detail__content {
  padding: var(--sp-8);
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}

.service-detail__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gray-900);
  margin-bottom: var(--sp-4);
}

.service-detail__desc {
  color: var(--gray-400);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}

.service-detail__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.service-detail__features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--gray-600);
  font-weight: 500;
}

.service-detail__features li i {
  color: var(--orange-main);
  font-size: 1rem;
  flex-shrink: 0;
}

.service-detail__image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.service-detail:hover .service-detail__image img {
  transform: scale(1.04);
}


/* -----------------------------------------------
   18. VALUES GRID (página sobre)
----------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-main);
  font-size: 1.6rem;
  margin: 0 auto var(--sp-5);
}

.value-card__icon--blue {
  background: var(--blue-light);
  color: var(--blue-main);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gray-900);
  margin-bottom: var(--sp-3);
}

.value-card p {
  font-size: var(--fs-sm);
  color: var(--gray-400);
  line-height: 1.7;
}


/* -----------------------------------------------
   19. ABOUT STATS (página sobre)
----------------------------------------------- */
.about-stats {
  background: linear-gradient(140deg, var(--blue-dark), var(--blue-main));
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  text-align: center;
}

.about-stat {
  padding: var(--sp-8) var(--sp-4);
}

.about-stat__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  color: var(--orange-soft);
  line-height: 1;
}

.about-stat__label {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
  margin-top: var(--sp-2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* -----------------------------------------------
   20. RATING SUMMARY (página depoimentos)
----------------------------------------------- */
.rating-summary {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}

.rating-summary__score {
  text-align: center;
  flex-shrink: 0;
}

.rating-summary__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4rem;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stars--lg i {
  font-size: 1.5rem;
}

.rating-summary__count {
  display: block;
  font-size: var(--fs-sm);
  color: var(--gray-400);
  margin-top: var(--sp-2);
}

.rating-summary__divider {
  width: 1px;
  height: 80px;
  background: var(--gray-200);
  flex-shrink: 0;
}

.rating-summary__info p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.testimonials__grid--full {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card__service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--blue-main);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.testimonial-card__service i {
  color: var(--orange-main);
}


/* -----------------------------------------------
   21. FAQ (página contato)
----------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: box-shadow var(--t-normal);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast), background var(--t-fast);
  gap: var(--sp-3);
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question:hover {
  color: var(--blue-main);
  background: var(--gray-100);
}

.faq-item[open] .faq-item__question {
  color: var(--blue-main);
  border-bottom: 1px solid var(--gray-200);
}

.faq-item__question i {
  font-size: 0.8rem;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform var(--t-normal);
}

.faq-item[open] .faq-item__question i {
  transform: rotate(180deg);
  color: var(--blue-main);
}

.faq-item__answer {
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--gray-400);
  line-height: 1.75;
}


/* -----------------------------------------------
   22. CONTACT extra (página contato)
----------------------------------------------- */
.contact__info-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--gray-900);
  margin-bottom: var(--sp-2);
}

.contact__info-sub {
  color: var(--gray-400);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-6);
}

.contact__social {
  margin-top: var(--sp-6);
}

.contact__social h4 {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gray-600);
  margin-bottom: var(--sp-3);
}

.contact__social .social-link {
  background: var(--blue-light);
  color: var(--blue-main);
}
.contact__social .social-link:hover {
  background: var(--orange-main);
  color: var(--white);
}


/* -----------------------------------------------
   23. RESPONSIVE — TABLET (≤991px)
----------------------------------------------- */
@media (max-width: 991px) {
  /* Navbar */
  .navbar__nav,
  .navbar__cta {
    display: none;
  }
  .navbar__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--sp-12) var(--sp-6);
    gap: var(--sp-10);
  }
  .hero__badge,
  .hero__buttons,
  .hero__trust {
    justify-content: center;
  }
  .hero__subtitle { margin: 0 auto var(--sp-8); }
  .hero__image-wrap { max-width: 380px; margin: 0 auto; }
  .hero__image { height: 340px; }
  .hero__floating-card--top  { right: 0; }
  .hero__floating-card--bottom { left: 0; }

  /* Services */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why Us */
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .why-us__image-col {
    max-width: 480px;
    margin: 0 auto;
  }
  .why-us__content { text-align: center; }
  .features__item { text-align: left; }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}


/* -----------------------------------------------
   24. RESPONSIVE — MOBILE (≤575px)
----------------------------------------------- */
@media (max-width: 575px) {
  .container { padding: 0 var(--sp-4); }

  /* Hero */
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; }
  .hero__image { height: 260px; }
  .hero__floating-card { display: none; } /* simplifica em mobile muito pequeno */

  /* Stats */
  .hero__stats-inner {
    gap: var(--sp-4);
  }
  .stat__divider { display: none; }
  .stat { min-width: 80px; }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Why us badge */
  .why-us__badge {
    right: 8px;
    bottom: 12px;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: var(--sp-6);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Back to top */
  .back-to-top {
    bottom: 16px;
    right: 16px;
  }
}


/* -----------------------------------------------
   25. RESPONSIVE — Novos componentes (tablet)
----------------------------------------------- */
@media (max-width: 991px) {
  /* Service detail */
  .service-detail {
    grid-template-columns: 1fr;
  }
  .service-detail--reverse {
    direction: ltr;
  }
  .service-detail__icon {
    left: var(--sp-6);
    top: -18px;
  }
  .service-detail--reverse .service-detail__icon {
    right: auto;
    left: var(--sp-6);
  }
  .service-detail__image {
    max-height: 300px;
  }

  /* Values grid */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About stats */
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Rating summary */
  .rating-summary {
    flex-direction: column;
    text-align: center;
  }
  .rating-summary__divider {
    width: 80px;
    height: 1px;
  }

  /* Testimonials full */
  .testimonials__grid--full {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA strip */
  .cta-strip__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-strip__actions {
    justify-content: center;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials full */
  .testimonials__grid--full {
    grid-template-columns: 1fr;
  }

  /* Service detail */
  .service-detail__content {
    padding: var(--sp-6) var(--sp-5);
  }
}
