/* ============================================
   LANDING PAGE — Hero & Navbar
   Branco dominante, preto só em detalhes
   ============================================ */

:root {
  --landing-bg: #ffffff;
  --landing-bg-soft: #fafafa;
  --landing-surface: #f5f5f4;
  --landing-text: #1a1a1a;
  --landing-text-muted: #6b6b6b;
  --landing-accent: #1a1a1a;
  --landing-accent-warm: #d4c4a8;
  --landing-cta-bg: #1a1a1a;
  --landing-cta-text: #fff;
  --landing-border: rgba(0, 0, 0, 0.08);
  --landing-font-serif: 'Cormorant Garamond', Georgia, serif;
  --landing-font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --landing-header-h: 72px;
  --landing-radius: 12px;
  --landing-radius-btn: 9999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--landing-header-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--landing-font-sans);
  background: var(--landing-bg);
  color: var(--landing-text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

/* ----- Header / Navbar (over hero image) ----- */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.landing-header.is-solid {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--landing-border);
  backdrop-filter: blur(12px);
}

.landing-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--landing-header-h);
  padding: 0 clamp(16px, 4vw, 32px);
  max-width: 1400px;
  margin: 0 auto;
}

.landing-header__logo {
  font-family: var(--landing-font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  color: #fff;
}

.landing-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  list-style: none;
}

.landing-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.landing-nav__link:hover {
  color: #fff;
}

.landing-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.landing-header__cta {
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--landing-radius-btn);
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.landing-header__cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
}

.landing-header__search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.landing-header__search:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.landing-header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}

.landing-header__menu-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Navbar sólido (após scroll): fundo branco, texto escuro */
.landing-header.is-solid .landing-header__logo,
.landing-header.is-solid .landing-nav__link,
.landing-header.is-solid .landing-header__search,
.landing-header.is-solid .landing-header__menu-btn {
  color: var(--landing-text);
}

.landing-header.is-solid .landing-nav__link:hover {
  color: var(--landing-accent);
}

.landing-header.is-solid .landing-header__cta {
  color: var(--landing-cta-text);
  border-color: transparent;
  background: var(--landing-cta-bg);
}

.landing-header.is-solid .landing-header__cta:hover {
  background: #2d2d2d;
  border-color: transparent;
}

.landing-header.is-solid .landing-header__search {
  color: var(--landing-text-muted);
}

.landing-header.is-solid .landing-header__search:hover {
  color: var(--landing-text);
  background: var(--landing-surface);
}

.landing-header.is-solid .landing-header__menu-btn {
  color: var(--landing-text);
}

.landing-header.is-solid .landing-header__menu-btn:hover {
  background: var(--landing-surface);
}

.landing-header__menu-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.landing-header__menu-btn[aria-expanded="true"] .landing-header__menu-icon:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.landing-header__menu-btn[aria-expanded="true"] .landing-header__menu-icon:nth-child(2) {
  opacity: 0;
}

.landing-header__menu-btn[aria-expanded="true"] .landing-header__menu-icon:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav — slide-in panel from right, over everything */
.landing-nav-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.landing-nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  width: min(300px, 85vw);
  background: #fff;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  padding: calc(var(--landing-header-h) + 20px) 0 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  visibility: hidden;
}

.landing-nav-mobile__inner {
  display: flex;
  flex-direction: column;
}

.landing-nav-mobile__title {
  font-family: var(--landing-font-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--landing-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 24px 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.landing-nav-mobile__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.landing-nav-mobile__list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.landing-nav-mobile__list li:last-child {
  border-bottom: none;
}

.landing-nav-mobile__link {
  display: block;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--landing-text);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.landing-nav-mobile__link:hover {
  color: #7d2d2d;
  background: rgba(125, 45, 45, 0.06);
}

.landing-nav-mobile__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 20px 24px 20px;
}

.landing-nav-mobile__cta {
  display: block;
  margin: 0 24px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(85deg, #7d2d2d, #6b2222, #722f2f, #6b2222, #853333);
  border: 1px solid #5a1a1a;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(125, 45, 45, 0.25);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.landing-nav-mobile__cta:hover {
  color: #fff;
  border-color: #4a1515;
  box-shadow: 0 4px 16px rgba(125, 45, 45, 0.35);
  transform: translateY(-1px);
}

body.landing-menu-open .landing-nav-mobile-backdrop {
  opacity: 1;
  visibility: visible;
}

body.landing-menu-open .landing-nav-mobile {
  transform: translateX(0);
  visibility: visible;
}

/* Header (e hamburger) acima do overlay para poder fechar */
body.landing-menu-open .landing-header {
  z-index: 200;
}

/* Hamburger escuro quando menu aberto (visível no painel branco) */
body.landing-menu-open .landing-header__menu-btn {
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

body.landing-menu-open .landing-header__menu-btn:hover {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .landing-nav {
    display: none;
  }

  .landing-header__actions {
    display: none;
  }

  .landing-header__menu-btn {
    display: flex;
  }

  .landing-nav-mobile-backdrop,
  .landing-nav-mobile {
    display: block;
  }
}

/* ----- Hero (full-bleed image, text overlay) ----- */
.landing-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.landing-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.landing-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.35) 25%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.78) 100%
  );
  pointer-events: none;
}

.landing-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 48px);
}

.landing-hero__content {
  max-width: 560px;
}

.landing-hero__title {
  font-family: var(--landing-font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: clamp(14px, 2vw, 20px);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.landing-hero__title-line {
  display: block;
}

.landing-hero__text {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: clamp(24px, 3vw, 36px);
  max-width: 440px;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.landing-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--landing-font-sans);
  background: var(--landing-cta-bg);
  color: var(--landing-cta-text);
  border: none;
  border-radius: var(--landing-radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s ease, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.landing-hero__btn:hover {
  background: #2d2d2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

/* Botão custom "Agendar agora" (vermelho escuro + ícones animados, sempre ativo) */
.landing-hero__btn--custom {
  position: relative;
  padding: 15px 45px;
  color: #fff;
  border: 1px solid #5a1a1a;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
  text-decoration: none;
  background: linear-gradient(
    85deg,
    #7d2d2d,
    #6b2222,
    #722f2f,
    #6b2222,
    #853333
  );
  background-size: 200% 200%;
  animation: landing-hero-wind 2.5s ease-in-out infinite;
}

.landing-hero__btn--custom:hover {
  color: #fff;
  border-color: #4a1515;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes landing-hero-wind {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.landing-hero__btn-text {
  position: relative;
  z-index: 1;
}

.landing-hero__btn-icon {
  position: absolute;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  color: #181818;
}

.landing-hero__btn--custom .landing-hero__btn-icon {
  color: #fff;
}

.landing-hero__btn-icon svg {
  width: 100%;
  height: auto;
  display: block;
}

.landing-hero__btn-icon--1 {
  top: 0;
  right: 0;
  width: 25px;
  transform-origin: 0 0;
  transform: rotate(10deg);
  transition: transform 0.5s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

.landing-hero__btn--custom .landing-hero__btn-icon--1 {
  animation: landing-hero-slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
}

@keyframes landing-hero-slay-1 {
  0% { transform: rotate(10deg); }
  50% { transform: rotate(-5deg); }
  100% { transform: rotate(10deg); }
}

.landing-hero__btn-icon--2 {
  top: 0;
  left: 25px;
  width: 12px;
  transform-origin: 50% 0;
  transform: rotate(10deg);
  transition: transform 1s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.landing-hero__btn--custom .landing-hero__btn-icon--2 {
  animation: landing-hero-slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
}

@keyframes landing-hero-slay-2 {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
  100% { transform: rotate(0deg); }
}

.landing-hero__btn-icon--3 {
  top: 0;
  left: 0;
  width: 18px;
  transform-origin: 50% 0;
  transform: rotate(-5deg);
  transition: transform 1s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.landing-hero__btn--custom .landing-hero__btn-icon--3 {
  animation: landing-hero-slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
}

@keyframes landing-hero-slay-3 {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

@media (max-width: 900px) {
  .landing-hero {
    align-items: flex-end;
  }

  .landing-hero__inner {
    padding-bottom: clamp(56px, 12vw, 80px);
  }

  .landing-hero__content {
    max-width: none;
    text-align: center;
  }

  .landing-hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-hero__btn {
    width: 100%;
    max-width: 320px;
  }

  .landing-hero__btn--custom {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .landing-hero__btn {
    max-width: none;
  }

  .landing-hero__btn--custom {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ----- Sections ----- */
.landing-section {
  padding: clamp(48px, 8vw, 80px) clamp(24px, 5vw, 48px);
  background: var(--landing-bg);
}

.landing-section--dark {
  background: var(--landing-surface);
}

.landing-section__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.landing-section__title {
  font-family: var(--landing-font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.landing-section__lead {
  font-size: 1rem;
  color: var(--landing-text-muted);
  margin-bottom: 24px;
}

.landing-section__link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--landing-accent);
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--landing-border);
}

.landing-section__link:hover {
  color: var(--landing-text-muted);
}

.landing-section__link--btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(85deg, #7d2d2d, #6b2222, #722f2f, #6b2222, #853333);
  color: #fff;
  border: 1px solid #5a1a1a;
  border-radius: var(--landing-radius-btn);
  text-decoration: none;
  margin-top: 8px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.landing-section__link--btn:hover {
  color: #fff;
  border-color: #4a1515;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

/* ----- Secção Serviços: carrossel rolando (todos os itens, sem setas) ----- */
.landing-servicos {
  padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 32px);
  background: #f5f0e8;
  overflow: hidden;
}

.landing-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.landing-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
  animation: landing-carousel-scroll 28s linear infinite;
}

.landing-carousel__slide {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  background: #faf8f5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(61, 52, 41, 0.06);
  border: 1px solid rgba(61, 52, 41, 0.08);
}

.landing-carousel__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.landing-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.landing-carousel__title {
  font-family: var(--landing-font-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 10px 2px;
  padding-top: 10px;
}

.landing-carousel__desc {
  font-family: var(--landing-font-serif);
  font-size: 0.6875rem;
  color: #4a443c;
  line-height: 1.35;
  margin: 0 10px 12px;
}

@keyframes landing-carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-848px); }
}

@media (max-width: 600px) {
  .landing-servicos {
    padding: 20px 12px 24px;
  }

  .landing-carousel {
    max-width: 100%;
  }

  .landing-carousel__track {
    gap: 10px;
    animation: landing-carousel-scroll-mobile 24s linear infinite;
  }

  .landing-carousel__slide {
    flex: 0 0 140px;
  }

  .landing-carousel__title {
    font-size: 0.8125rem;
    margin: 0 8px 2px;
    padding-top: 8px;
  }

  .landing-carousel__desc {
    font-size: 0.625rem;
    margin: 0 8px 10px;
  }
}

@keyframes landing-carousel-scroll-mobile {
  0% { transform: translateX(0); }
  100% { transform: translateX(-740px); }
}

/* ----- Secção Avaliações (entre Sobre e Contato) ----- */
.landing-avaliacoes {
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 48px);
  background: linear-gradient(180deg, #faf8f5 0%, #f5f0e8 100%);
  border-top: 1px solid rgba(61, 52, 41, 0.06);
  border-bottom: 1px solid rgba(61, 52, 41, 0.06);
}

.landing-avaliacoes__inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.landing-avaliacoes__title {
  font-family: var(--landing-font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--landing-text);
  margin: 0 0 8px;
}

.landing-avaliacoes__lead {
  font-size: 0.9375rem;
  color: var(--landing-text-muted);
  margin: 0 0 24px;
}

.landing-avaliacoes__form-wrap {
  margin-bottom: 16px;
}

.landing-avaliacoes__form-label {
  font-size: 0.875rem;
  color: var(--landing-text);
  margin: 0 0 12px;
  font-weight: 500;
}

.landing-avaliacoes__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Rating stars (radio + SVG) */
.landing-avaliacoes .radio {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 14px;
  padding: 20px 0 24px;
}

.landing-avaliacoes .radio > input {
  position: absolute;
  appearance: none;
}

.landing-avaliacoes .radio > input:focus-visible + label {
  outline: 2px solid #ff9e0b;
  outline-offset: 2px;
  border-radius: 4px;
}

.landing-avaliacoes .radio > label {
  cursor: pointer;
  font-size: 30px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
  padding: 8px;
  margin: -8px;
}

.landing-avaliacoes .radio > label > svg {
  fill: #666;
  transition: fill 0.3s ease;
}

.landing-avaliacoes .radio > label::before,
.landing-avaliacoes .radio > label::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #ff9e0b;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
  animation: landing-rating-particle 1s ease-out;
}

.landing-avaliacoes .radio > label::before {
  top: -8px;
  left: 50%;
  transform: translateX(-50%) scale(0);
}

.landing-avaliacoes .radio > label::after {
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scale(0);
}

.landing-avaliacoes .radio > label:hover::before,
.landing-avaliacoes .radio > label:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1.2);
}

.landing-avaliacoes .radio > label:hover {
  transform: scale(1.1);
  animation: landing-rating-pulse 0.6s infinite alternate;
}

.landing-avaliacoes .radio > label:hover > svg {
  fill: #ff9e0b;
  filter: drop-shadow(0 0 15px rgba(255, 158, 11, 0.9));
  animation: landing-rating-shimmer 1s ease infinite alternate;
}

.landing-avaliacoes .radio > input:checked + label > svg {
  fill: #ff9e0b;
  filter: drop-shadow(0 0 15px rgba(255, 158, 11, 0.9));
  animation: landing-rating-pulse 0.8s infinite alternate;
}

.landing-avaliacoes .radio > input:checked + label ~ label > svg,
.landing-avaliacoes .radio > input:checked + label > svg {
  fill: #ff9e0b;
}

.landing-avaliacoes .radio > input:checked + label:hover ~ label > svg,
.landing-avaliacoes .radio > input:checked + label:hover > svg,
.landing-avaliacoes .radio > input:checked + label ~ label:hover > svg {
  fill: #e58e09;
}

.landing-avaliacoes .radio > label:hover ~ label > svg,
.landing-avaliacoes .radio > label:hover > svg {
  fill: #ff9e0b;
}

.landing-avaliacoes .radio input:checked ~ label > svg {
  fill: #ffa723;
}

@keyframes landing-rating-pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes landing-rating-particle {
  0% { opacity: 0; transform: translateX(-50%) scale(0.5); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
  100% { opacity: 0; transform: translateX(-50%) scale(0.5); }
}

@keyframes landing-rating-shimmer {
  0% { filter: drop-shadow(0 0 10px rgba(255, 158, 11, 0.5)); }
  100% { filter: drop-shadow(0 0 20px rgba(255, 158, 11, 1)); }
}

.landing-avaliacoes__submit {
  padding: 12px 24px;
  font-family: var(--landing-font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(85deg, #7d2d2d, #6b2222, #722f2f, #6b2222, #853333);
  border: 1px solid #5a1a1a;
  border-radius: var(--landing-radius);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.landing-avaliacoes__submit:hover:not(:disabled) {
  color: #fff;
  border-color: #4a1515;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.landing-avaliacoes__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.landing-avaliacoes__cooldown {
  margin-top: 8px;
}

.landing-avaliacoes__cooldown-text {
  font-size: 0.875rem;
  color: var(--landing-text-muted);
  margin: 0;
}

.landing-avaliacoes__toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--landing-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 200;
  max-width: calc(100vw - 32px);
}

.landing-avaliacoes__toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.landing-avaliacoes__toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.875rem;
}

@media (max-width: 600px) {
  .landing-avaliacoes {
    padding: 32px 20px 40px;
  }

  .landing-avaliacoes .radio > label {
    font-size: 26px;
  }

  .landing-avaliacoes__toast {
    bottom: 16px;
    padding: 12px 16px;
    font-size: 0.875rem;
  }
}

/* ----- Secção Contato ----- */
.landing-section--contact {
  background: linear-gradient(180deg, #faf8f5 0%, #f5f0e8 100%);
  padding: clamp(56px, 9vw, 88px) clamp(24px, 5vw, 48px);
}

.landing-contact__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.landing-contact__title {
  font-family: var(--landing-font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--landing-text);
  margin: 0 0 12px;
}

.landing-contact__lead {
  font-size: 1rem;
  color: var(--landing-text-muted);
  margin: 0 0 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.landing-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 32px);
}

.landing-contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(24px, 4vw, 32px) clamp(20px, 3vw, 28px);
  background: #fff;
  border-radius: var(--landing-radius);
  border: 1px solid rgba(61, 52, 41, 0.08);
  box-shadow: 0 4px 20px rgba(61, 52, 41, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.landing-contact__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(61, 52, 41, 0.1);
  border-color: rgba(61, 52, 41, 0.12);
}

.landing-contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.landing-contact__icon svg {
  width: 28px;
  height: 28px;
}

.landing-contact__card--whatsapp .landing-contact__icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.landing-contact__card--agendar .landing-contact__icon {
  background: rgba(26, 26, 26, 0.08);
  color: var(--landing-text);
}

.landing-contact__card--cliente .landing-contact__icon {
  background: rgba(212, 196, 168, 0.4);
  color: #8b7355;
}

.landing-contact__card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.landing-contact__card-title {
  font-family: var(--landing-font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--landing-text);
  margin: 0;
}

.landing-contact__card-desc {
  font-size: 0.875rem;
  color: var(--landing-text-muted);
  line-height: 1.35;
  margin: 0;
}

/* ----- Contato: mobile — compacto, estilo Apple ----- */
@media (max-width: 768px) {
  .landing-section--contact {
    padding: 36px 20px 48px;
  }

  .landing-contact__inner {
    max-width: 100%;
  }

  .landing-contact__title {
    font-size: 1.375rem;
    margin-bottom: 6px;
  }

  .landing-contact__lead {
    font-size: 0.9375rem;
    margin: 0 auto 24px;
    max-width: 280px;
  }

  .landing-contact__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }

  .landing-contact__card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 14px 16px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: none;
    min-height: 0;
    position: relative;
    padding-right: 40px;
    -webkit-tap-highlight-color: transparent;
  }

  .landing-contact__card:last-child {
    border-bottom: none;
  }

  .landing-contact__card:hover {
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.02);
  }

  .landing-contact__card:active {
    background: rgba(0, 0, 0, 0.04);
  }

  .landing-contact__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    margin: 0 12px 0 0;
  }

  .landing-contact__icon svg {
    width: 20px;
    height: 20px;
  }

  .landing-contact__card--whatsapp .landing-contact__icon {
    background: rgba(37, 211, 102, 0.1);
  }

  .landing-contact__card--agendar .landing-contact__icon,
  .landing-contact__card--cliente .landing-contact__icon {
    background: rgba(0, 0, 0, 0.05);
  }

  .landing-contact__card-text {
    flex: 1;
    min-width: 0;
    align-items: flex-start;
    gap: 1px;
  }

  .landing-contact__card-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .landing-contact__card-desc {
    font-size: 13px;
    color: var(--landing-text-muted);
    font-weight: 400;
  }

  /* Chevron estilo iOS */
  .landing-contact__card::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(0, 0, 0, 0.2);
    border-top: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 1px;
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .landing-section--contact {
    padding: 28px 16px 40px;
  }

  .landing-contact__title {
    font-size: 1.25rem;
  }

  .landing-contact__lead {
    font-size: 0.875rem;
    margin-bottom: 20px;
    max-width: 260px;
  }

  .landing-contact__card {
    padding: 12px 28px 12px 14px;
  }

  .landing-contact__card::after {
    right: 14px;
    width: 6px;
    height: 6px;
  }

  .landing-contact__icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin-right: 10px;
  }

  .landing-contact__icon svg {
    width: 18px;
    height: 18px;
  }

  .landing-contact__card-title {
    font-size: 14px;
  }

  .landing-contact__card-desc {
    font-size: 12px;
  }
}

/* ----- Footer ----- */
.landing-footer {
  border-top: 1px solid #5a1a1a;
  background: linear-gradient(180deg, #7d2d2d 0%, #6b2222 50%, #722f2f 100%);
  color: #fff;
}

.landing-footer__top {
  padding: clamp(48px, 8vw, 72px) clamp(24px, 5vw, 48px) clamp(40px, 6vw, 56px);
}

.landing-footer__top .landing-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.landing-footer__brand {
  max-width: 280px;
}

.landing-footer__logo {
  display: inline-block;
  font-family: var(--landing-font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.landing-footer__logo:hover {
  color: rgba(255, 255, 255, 0.85);
}

.landing-footer__tagline {
  font-family: var(--landing-font-serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}

.landing-footer__heading {
  font-family: var(--landing-font-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

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

.landing-footer__list li {
  margin-bottom: 10px;
}

.landing-footer__list li:last-child {
  margin-bottom: 0;
}

.landing-footer__link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.landing-footer__link:hover {
  color: #fff;
}

.landing-footer__bottom {
  padding: clamp(20px, 3vw, 28px) clamp(24px, 5vw, 48px);
  border-top: 1px solid rgba(90, 26, 26, 0.6);
  background: rgba(0, 0, 0, 0.15);
}

.landing-footer__bottom .landing-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-footer__copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.landing-footer__link--muted {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.landing-footer__link--muted:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .landing-footer__top .landing-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .landing-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .landing-footer__top {
    padding: 40px 20px 36px;
  }

  .landing-footer__top .landing-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .landing-footer__brand {
    text-align: center;
  }

  .landing-footer__nav,
  .landing-footer__contact {
    text-align: center;
  }

  .landing-footer__heading {
    margin-bottom: 12px;
  }

  .landing-footer__bottom .landing-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
