/* ============================================================
   F PINTURAS PROFISSIONAIS — CSS
   Cores: Teal #0d4a4a | Dourado #c9a227 | Creme #f8f5f0
   ============================================================ */

/* ===== RESET & VARIÁVEIS ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:       #0d4a4a;
  --primary-dark:  #082e2e;
  --primary-light: #1a7070;
  --secondary:     #c9a227;
  --secondary-lt:  #e8c14f;
  --dark:          #1a1a1a;
  --light:         #f8f5f0;
  --gray:          #6b7280;
  --gray-lt:       #e5e7eb;
  --white:         #ffffff;
  --blue-sms:      #0b84ff;

  --shadow-sm:  0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 25px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 50px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 28px rgba(201,162,39,0.35);

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --ease:      0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Poppins', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: var(--font-b); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 100px 0; }

/* ===== BARRA DE PROGRESSO ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}
.btn--primary:hover {
  background: var(--secondary-lt);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn--primary:active { transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--full { width: 100%; justify-content: center; }

/* ===== CABEÇALHO DE SEÇÃO ===== */
.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.6rem;
}
.section__label--light { color: var(--secondary-lt); }

.section__title {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.section__title--light { color: var(--white); }

/* Pincelada SVG sob títulos */
.section__divider {
  display: flex;
  justify-content: center;
  margin-top: 0.9rem;
}
.section__divider--left { justify-content: flex-start; }

.section__divider svg {
  width: 160px;
  height: 18px;
  overflow: visible;
}
.section__divider svg path {
  stroke: var(--secondary);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw-line 1.6s ease forwards 0.4s;
}
.section__divider--gold svg path { stroke: var(--secondary-lt); }

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 1);
  padding: 0.6rem 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__logo-img {
  height: 50px;
  width: auto;
  background: transparent;
  object-fit: contain;
  transition: transform var(--ease);
}
.nav__logo:hover .nav__logo-img {
  transform: rotate(-4deg) scale(1.05);
}
.nav__logo-text {
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  transition: color var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav__link:hover,
.nav__link.active { color: var(--primary); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__link--cta {
  background: var(--secondary);
  color: var(--dark) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--ease);
}
.nav__link--cta:hover {
  background: var(--secondary-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.nav__link--cta::after { display: none; }

/* Hamburguer */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1100;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease);
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(150deg, rgba(7,31,31,0.93) 0%, rgba(13,74,74,0.87) 45%, rgba(20,88,88,0.88) 75%, rgba(26,106,106,0.91) 100%),
    url('https://images.unsplash.com/photo-1717281234297-3def5ae3eee1?w=1800&q=80&auto=format&fit=crop') center / cover fixed;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Padrão de pontos + respingo dourado */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 82%, rgba(201,162,39,0.1) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(201,162,39,0.07) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.025) 0%, transparent 65%);
  pointer-events: none;
}

/* Gotas de tinta */
.hero__paint-drops { position: absolute; inset: 0; pointer-events: none; }
.drop {
  position: absolute;
  top: 0;
  border-radius: 0 0 50% 50%;
  animation: drip 4s ease-in-out infinite;
}
.drop-1 { width: 10px; height: 36px; background: rgba(201,162,39,0.35); left: 12%;   animation-delay: 0s;   }
.drop-2 { width: 7px;  height: 26px; background: rgba(201,162,39,0.22); left: 38%;   animation-delay: 1.4s; }
.drop-3 { width: 9px;  height: 32px; background: rgba(255,255,255,0.1); right: 22%;  animation-delay: 2.6s; }
.drop-4 { width: 6px;  height: 22px; background: rgba(201,162,39,0.18); right: 10%;  animation-delay: 0.8s; }

@keyframes drip {
  0%,100% { transform: scaleY(1);   opacity: 0.5; }
  50%      { transform: scaleY(1.4); opacity: 0.9; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 130px 0 90px;
  max-width: 720px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fade-up 0.7s ease forwards 0.1s;
}
.hero__label::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.3s;
}

.hero__title--highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

/* Pincelada animada sob "Ambientes" */
.brush-stroke-svg {
  position: absolute;
  bottom: -10px; left: 0;
  width: 100%; height: 18px;
  overflow: visible;
  pointer-events: none;
}
.brush-path {
  stroke: var(--secondary);
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: draw-brush 1.8s ease forwards 1s;
}
@keyframes draw-brush { to { stroke-dashoffset: 0; } }

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.55s;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.8s;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Indicador de scroll */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: pulse-line 2.2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%,100% { opacity: 0.4; transform: scaleY(0.8); }
  50%      { opacity: 1;   transform: scaleY(1.1); }
}

/* ===== STATS ===== */
.stats {
  background: var(--primary);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}
.stats::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

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

.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 55%; width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-item__inner { text-align: center; }

.stat-number, .stat-suffix {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.stat-suffix { font-size: 2.2rem; }

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.45rem;
  font-weight: 400;
}

/* ===== SERVIÇOS ===== */
.services { background: var(--light); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,74,74,0.04) 0%, transparent 70%);
  transition: var(--ease);
}
.service-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { transform: scale(1.5); }

.service-card__icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: var(--ease);
}
.service-card__icon i { font-size: 1.55rem; color: var(--white); }
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-lt));
}
.service-card:hover .service-card__icon i { color: var(--dark); }

.service-card h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--secondary);
  font-size: 0.83rem;
  font-weight: 600;
  transition: gap var(--ease);
}
.service-card__link:hover { gap: 0.8rem; }

/* ===== CANVAS HERO ===== */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
/* Garante z-index correto para conteúdo sobre o canvas */
.hero__content,
.hero__paint-drops,
.hero__bg-pattern,
.hero__scroll-indicator { position: relative; z-index: 2; }

/* ===== CURSOR PINCEL ===== */
/* Cursor padrão do sistema mantido — o pincel é sobreposto como efeito visual */
.cursor-brush {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: transform;
}
.cursor-brush.cursor--hover svg {
  transform: scale(1.35) rotate(-5deg);
  filter: drop-shadow(0 0 10px rgba(201,162,39,0.9));
}
.cursor-brush svg { transition: transform 0.25s ease, filter 0.25s ease; }

/* ===== SEPARADORES DE GOTA ===== */
.section-drip {
  position: relative;
  margin-top: -2px;
  line-height: 0;
  overflow: hidden;
}
.section-drip svg { display: block; width: 100%; height: 90px; }
.section-drip--into-dark { background: var(--primary); }

/* ===== SOBRE ===== */
.about { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__visual { position: relative; }

.about__image-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about__image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #082e2e, #1a7070);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.38);
}
.about__image-placeholder i  { font-size: 3.5rem; }
.about__image-placeholder span { font-size: 0.85rem; font-style: italic; }

/* Imagem real do pintor */
.about__real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.about__image-frame:hover .about__real-img { transform: scale(1.03); }

.about__badge {
  position: absolute;
  bottom: -22px; right: -22px;
  width: 105px; height: 105px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  animation: spin-badge 12s linear infinite;
}
@keyframes spin-badge {
  from { box-shadow: 0 0 0 0 rgba(201,162,39,0.3); }
  50%  { box-shadow: 0 0 0 12px rgba(201,162,39,0); }
  to   { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
}
.about__badge-number {
  font-family: var(--font-h);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge-text {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

/* Respingos decorativos */
.about__paint-splash {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.about__paint-splash--1 {
  width: 220px; height: 220px;
  top: -35px; left: -35px;
  background: radial-gradient(circle, rgba(201,162,39,0.13) 0%, transparent 70%);
}
.about__paint-splash--2 {
  width: 150px; height: 150px;
  bottom: 30px; left: -20px;
  background: radial-gradient(circle, rgba(13,74,74,0.1) 0%, transparent 70%);
}

.about__content .section__title { margin-top: 0.4rem; }

.about__content p {
  color: var(--gray);
  font-size: 0.93rem;
  margin-bottom: 1rem;
}

.about__features {
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.about__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}
.about__features li i { color: var(--secondary); font-size: 1rem; }

/* ===== PORTFÓLIO ===== */
.portfolio { background: var(--light); }

.portfolio__filters {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.filter-btn {
  padding: 0.45rem 1.2rem;
  border: 1.5px solid var(--gray-lt);
  background: var(--white);
  color: var(--gray);
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.2rem;
  grid-auto-flow: dense;
}
.portfolio-item--wide { grid-column: span 2; }

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.portfolio-item__img {
  width: 100%; height: 100%;
  transition: transform 0.55s ease;
}
.portfolio-item:hover .portfolio-item__img { transform: scale(1.06); }

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,46,46,0.92) 0%, rgba(8,46,46,0.25) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.38s ease;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }

.portfolio-item__tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.4rem;
  width: fit-content;
}
.portfolio-item__overlay h4 {
  color: var(--white);
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
}
.portfolio-item__overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

/* Itens escondidos (filtro) */
.portfolio-item.hidden {
  display: none;
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.portfolio-item.visible {
  animation: pop-in 0.38s ease forwards;
}

.portfolio__cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.portfolio__cta p {
  font-family: var(--font-h);
  font-size: 1.4rem;
  color: var(--primary);
}

/* ===== DEPOIMENTOS ===== */
.testimonials {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.testimonials__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 5% 95%, rgba(201,162,39,0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 95% 5%, rgba(201,162,39,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.testimonials__wrapper {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.testimonials__slider {
  min-height: 250px;
  position: relative;
}

.testimonial-card {
  display: none;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  animation: slide-card 0.45s ease;
}
.testimonial-card.active { display: block; }

@keyframes slide-card {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.testimonial-card__quote {
  color: var(--secondary);
  font-size: 2.2rem;
  opacity: 0.65;
  margin-bottom: 0.9rem;
  display: block;
}
.testimonial-card > p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.testimonial-card__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-card__info strong {
  display: block;
  color: var(--white);
  font-size: 0.93rem;
}
.testimonial-card__info span {
  color: var(--secondary-lt);
  font-size: 0.78rem;
}
.testimonial-card__stars {
  margin-left: auto;
  color: var(--secondary);
  font-size: 0.88rem;
  display: flex;
  gap: 2px;
}

/* Botões prev/next */
.testimonials__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
}
.testimonials__btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
}
.testimonials__btn--prev { left: -60px; }
.testimonials__btn--next { right: -60px; }

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: var(--ease);
}
.dot.active {
  background: var(--secondary);
  width: 28px;
  border-radius: 5px;
}

/* ===== CONTATO ===== */
.contact { background: var(--light); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 600px;
}
.contact__info .section__title { margin-top: 0.4rem; }
.contact__info > p {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__icon {
  width: 46px; height: 46px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--ease);
}
.contact__icon--sms { background: rgba(11,132,255,0.12); color: #0b84ff; }
.contact__list li:hover .contact__icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}
.contact__list strong {
  display: block;
  font-size: 0.82rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}
.contact__list a,
.contact__list span {
  font-size: 0.88rem;
  color: var(--gray);
}
.contact__list a:hover { color: var(--primary); }

/* Formulário */
.contact__form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group--full { grid-column: span 2; }

.form-group label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-b);
  font-size: 0.88rem;
  color: var(--dark);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  resize: vertical;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b8c1; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,74,74,0.1);
}

/* Select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  padding: 1.4rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.footer__logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.footer__logo span {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.footer__copy {
  text-align: center;
  flex: 1;
}
.footer__copy p {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  line-height: 1.65;
}
.footer__social {
  display: flex;
  gap: 0.6rem;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--ease);
}
.footer__social a:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: var(--blue-sms);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.65rem;
  box-shadow: 0 5px 22px rgba(11,132,255,0.45);
  z-index: 998;
  transition: var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 35px rgba(11,132,255,0.55);
}
.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: var(--white);
  padding: 0.38rem 0.8rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
  border-right: 0;
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* Animação simples — leve balanço */
@keyframes sms-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.whatsapp-float {
  animation: sms-bounce 3s ease-in-out infinite;
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
.back-to-top {
  position: fixed;
  bottom: 6rem; right: 2rem;
  width: 42px; height: 42px;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--ease);
  z-index: 997;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ===== OVERLAY DO MENU MOBILE ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  backdrop-filter: blur(3px);
}
.nav-overlay.show { display: block; }

/* ===== TOAST MENSAGEM ===== */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.75rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast i { color: #10b981; font-size: 1.1rem; }

/* ===== RESPONSIVO ===== */
@media (max-width: 1100px) {
  .testimonials__btn--prev { left: -48px; }
  .testimonials__btn--next { right: -48px; }
}

@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid .stat-item:nth-child(2)::after { display: none; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about__visual { max-width: 420px; margin: 0 auto; }
  .about__features { grid-template-columns: 1fr 1fr; }

  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }

  .testimonials__btn { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section__header { margin-bottom: 36px; }

  /* Nav: logo text menor no tablet */
  .nav__logo-text { font-size: 1.05rem; }

  /* Hero: fix background-attachment no iOS/mobile */
  .hero { background-attachment: scroll; }
  .hero__content { padding: 100px 0 60px; }
  .hero__subtitle { font-size: 0.95rem; }

  /* Menu mobile */
  .nav__list {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    padding: 2.5rem;
    transition: right 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -6px 0 35px rgba(0,0,0,0.35);
    z-index: 1060;
  }
  .nav__list.open { right: 0; }
  .nav__link { font-size: 1.05rem; color: var(--white); }
  .nav__link--cta { width: fit-content; }
  .nav__toggle { display: flex; z-index: 1070; }

  /* Services: 2 colunas no tablet */
  .services__grid { grid-template-columns: 1fr 1fr; }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .portfolio-item--wide { grid-column: span 1; }

  /* Filtros: scroll horizontal em vez de quebra de linha */
  .portfolio__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: 0.25rem;
  }
  .portfolio__filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }

  .contact__form { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__logo { justify-content: center; }
}

@media (max-width: 520px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }

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

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

  .portfolio__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

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

  /* About badge: não ultrapassa a borda da imagem */
  .about__badge { bottom: -10px; right: -10px; width: 82px; height: 82px; }
  .about__badge-number { font-size: 1.4rem; }

  .testimonial-card { padding: 1.75rem; }
  .testimonial-card__footer { flex-direction: column; align-items: flex-start; }
  .testimonial-card__stars { margin-left: 0; }

  .contact__form-wrapper { padding: 1.75rem; }
}

/* ===== PORTFÓLIO — CARDS DINÂMICOS ===== */
.portfolio__grid--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  grid-auto-rows: auto;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ===== SLIDER ANTES / DEPOIS ===== */
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  background: var(--gray-lt);
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.ba-img--after {
  clip-path: inset(0 50% 0 0);
}

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--white);
  z-index: 5;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  color: var(--primary);
  font-size: 0.65rem;
}

.ba-label {
  position: absolute;
  bottom: 10px;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 4;
  pointer-events: none;
}
.ba-label--before { left: 10px; }
.ba-label--after  { right: 10px; }

/* Info do card */
.portfolio-card__info {
  padding: 1.2rem;
}

.portfolio-card__tag {
  display: inline-block;
  background: rgba(13,74,74,0.1);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.portfolio-card__title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.portfolio-card__desc {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0.55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-card__date {
  font-size: 0.76rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Loading e empty state */
.portfolio__loading,
.portfolio__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--gray);
}
.portfolio__loading i {
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}
.portfolio__empty i {
  font-size: 3rem;
  color: var(--gray-lt);
  display: block;
  margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
  .portfolio__grid--cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .portfolio__grid--cards { grid-template-columns: 1fr; }
}

/* ===== UTILITÁRIOS ===== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===== RESPINGO DE TINTA NAS SERVICE CARDS ===== */
.service-card { overflow: hidden; }

.paint-splash-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.6);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: splash-expand 0.7s ease-out forwards;
}
@keyframes splash-expand {
  0%   { transform: translate(-50%,-50%) scale(0);   opacity: 0.8; }
  60%  { transform: translate(-50%,-50%) scale(14);  opacity: 0.3; }
  100% { transform: translate(-50%,-50%) scale(22);  opacity: 0; }
}

/* ===== ANIMAÇÃO DE REVELAÇÃO DE TEXTO (brush wipe) ===== */
.brush-reveal {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.brush-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--light);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}
.brush-reveal.revealed::after {
  transform: scaleX(0);
}

/* ===== MELHORIAS DE PARALLAX ===== */
@media (prefers-reduced-motion: no-preference) {
  .hero__content {
    will-change: transform;
  }
}

/* ===== HERO: efeito vidro no indicador de scroll ===== */
.hero__scroll-indicator {
  animation: fade-up 0.8s ease forwards 1.4s;
  opacity: 0;
}

/* ===== PORTFÓLIO: borda dourada no hover ===== */
.portfolio-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color 0.35s ease;
  z-index: 2;
  pointer-events: none;
}
.portfolio-item:hover::before {
  border-color: var(--secondary);
}

/* ===== SEÇÃO DRIP: animação de gotejamento ===== */
.section-drip ellipse {
  transform-origin: center top;
  animation: drip-down 3s ease-in-out infinite;
}
.section-drip ellipse:nth-child(2) { animation-delay: 0s;    animation-duration: 2.8s; }
.section-drip ellipse:nth-child(3) { animation-delay: 0.6s;  animation-duration: 3.2s; }
.section-drip ellipse:nth-child(4) { animation-delay: 1.1s;  animation-duration: 2.6s; }
.section-drip ellipse:nth-child(5) { animation-delay: 1.7s;  animation-duration: 3.5s; }
.section-drip ellipse:nth-child(6) { animation-delay: 0.4s;  animation-duration: 2.9s; }
.section-drip ellipse:nth-child(7) { animation-delay: 2.1s;  animation-duration: 3.1s; }

@keyframes drip-down {
  0%, 100% { transform: scaleY(1);   opacity: 1;   }
  50%       { transform: scaleY(1.2); opacity: 0.85; }
}

/* ===== HERO: shimmer sobre a foto de fundo ===== */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(201,162,39,0.04) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  animation: shimmer-hero 8s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes shimmer-hero {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== ABOUT: transição suave da moldura ===== */
.about__image-frame {
  transition: box-shadow 0.4s ease;
}
.about__image-frame:hover {
  box-shadow: 0 20px 60px rgba(13,74,74,0.25), 0 0 0 4px rgba(201,162,39,0.3);
}

/* ===== FLOATING LABEL NOS INPUTS ===== */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  color: var(--primary);
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.gr-section {
  background: #f8f5f0;
  position: relative;
  overflow: hidden;
}

.gr-section .testimonials__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(13,74,74,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(201,162,39,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.gr-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gr-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  flex-wrap: wrap;
  justify-content: center;
}

.gr-google-logo {
  width: 96px;
  height: auto;
  flex-shrink: 0;
}

.gr-header__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.gr-header__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f6368;
  font-family: var(--font-body);
}

.gr-header__rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.gr-rating-number {
  font-size: 2rem;
  font-weight: 700;
  color: #202124;
  font-family: var(--font-body);
  line-height: 1;
}

.gr-stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
  font-size: 1.25rem;
}

.gr-rating-count {
  font-size: 0.8rem;
  color: #5f6368;
  font-family: var(--font-body);
}

.gr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.gr-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.gr-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}

.gr-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gr-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.gr-card__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gr-card__meta strong {
  font-size: 0.95rem;
  color: #202124;
  font-weight: 600;
  font-family: var(--font-body);
}

.gr-card__date {
  font-size: 0.78rem;
  color: #5f6368;
  font-family: var(--font-body);
}

.gr-card__logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-left: auto;
}

.gr-card__stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
  font-size: 0.95rem;
}

.gr-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #3c4043;
  font-family: var(--font-body);
  font-style: italic;
  margin: 0;
}

.gr-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.gr-btn:hover {
  transform: translateY(-2px);
}

.gr-btn--write {
  background: #fff;
  color: #3c4043;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.08);
}

.gr-btn--write:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.gr-btn--view {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(13,74,74,0.3);
}

.gr-btn--view:hover {
  background: #0a3d3d;
  box-shadow: 0 4px 18px rgba(13,74,74,0.4);
}

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

@media (max-width: 600px) {
  .gr-grid { grid-template-columns: 1fr; }
  .gr-header__brand { gap: 1rem; padding: 1rem 1.25rem; }
  .gr-google-logo { width: 72px; }
  .gr-rating-number { font-size: 1.6rem; }
}

/* ===== RESPONSIVE: ajustes para celulares pequenos ===== */
@media (max-width: 480px) {
  .section { padding: 52px 0; }

  /* Nav: esconde texto da logo, mantém só a imagem */
  .nav__logo-text { display: none; }
  .nav__logo-img { height: 40px; }

  /* Hero: padding reduzido */
  .hero__content { padding: 84px 0 48px; }
  .hero__title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero__subtitle { font-size: 0.88rem; }

  /* Stats: números menores */
  .stat-number { font-size: 2.4rem; }
  .stat-suffix { font-size: 1.8rem; }

  /* Google Reviews: botões em coluna */
  .gr-actions { flex-direction: column; }
  .gr-btn { justify-content: center; }

  /* Canvas e cursor: desabilitados para performance */
  .hero__canvas { display: none; }
  .cursor-brush { display: none; }
}
