/*
  Projeto: Site Ludmylla Rodrima Fotografia
  Arquivo: style.css
  Função: Estilos visuais, responsividade, layout e acabamento.
  Observação:
  - Este arquivo é uma versão limpa, sem blocos duplicados de teste.
  - A navegação fixa e a responsividade foram planejadas para desktop e mobile.
*/

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --header-height: 78px;
  --color-bg: #f8f4ec;
  --color-bg-soft: #fffdf8;
  --color-sand: #e7d7b8;
  --color-sage: #a8ad8a;
  --color-sage-dark: #737a5f;
  --color-text: #1f1f1c;
  --color-muted: #6f6a60;
  --color-border: rgba(31, 31, 28, 0.12);
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --container: 1180px;
  --shadow-soft: 0 24px 70px rgba(31, 31, 28, 0.1);
  --transition: 240ms ease;
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: var(--header-height);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 99999;
  transform: translateY(-140%);
  background: var(--color-text);
  color: var(--color-bg-soft);
  padding: 10px 16px;
  border-radius: 999px;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-container,
.header-container,
.hero-container,
.about-container,
.intro-container,
.final-cta-container,
.footer-container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-label {
  margin-bottom: 12px;
  color: var(--color-sage-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-heading,
.portfolio-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-heading h2,
.portfolio-heading h2,
.about-content h2,
.location h2,
.final-cta h2 {
  font-family: var(--font-title);
  font-size: clamp(2.35rem, 3.6vw, 4rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.section-heading p,
.portfolio-heading p,
.about-content p,
.location p,
.final-cta p {
  color: var(--color-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn-primary {
  background: var(--color-text);
  color: var(--color-bg-soft);
  box-shadow: 0 18px 40px rgba(31, 31, 28, 0.16);
}

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

.btn-secondary {
  border: 1px solid var(--color-border);
  background: rgba(255, 253, 248, 0.55);
  color: var(--color-text);
}

.btn-secondary:hover {
  border-color: var(--color-text);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(31, 31, 28, 0.08);
  background: rgba(248, 244, 236, 0.94);
  backdrop-filter: blur(18px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 22px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-title);
  font-size: 1.48rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(31, 31, 28, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  transition: color var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width var(--transition);
}

.main-nav a:hover {
  color: var(--color-text);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid var(--color-text);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.4);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.header-cta:hover {
  background: var(--color-text);
  color: var(--color-bg-soft);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.hero {
  padding: 46px 0 72px;
  background: radial-gradient(circle at 12% 18%, rgba(231, 215, 184, 0.36), transparent 30%), linear-gradient(135deg, #fbf7ef 0%, #f6efe4 100%);
  border-bottom: 1px solid rgba(31, 31, 28, 0.08);
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: clamp(42px, 5vw, 76px);
}

.hero-content h1 {
  max-width: 640px;
  font-family: var(--font-title);
  font-size: clamp(3.15rem, 5vw, 5.75rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.hero-text {
  max-width: 530px;
  margin-top: 24px;
  color: rgba(31, 31, 28, 0.68);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-image-wrapper {
  position: relative;
  isolation: isolate;
  max-width: 540px;
  justify-self: end;
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border-radius: 28px;
  background: linear-gradient(135deg, #e7d7b8, #d9c79f);
}

.hero-image {
  width: 100%;
  max-height: 635px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.intro {
  padding: 76px 0;
  background: linear-gradient(135deg, rgba(231, 215, 184, 0.92), rgba(248, 244, 236, 0.96));
}

.intro p {
  max-width: 940px;
  margin-inline: auto;
  font-family: var(--font-title);
  color: var(--color-text);
  font-size: clamp(2rem, 3.35vw, 3.65rem);
  line-height: 1.08;
  text-align: center;
  letter-spacing: -0.035em;
}

.portfolio {
  padding: 78px 0 96px;
}

.portfolio-list {
  display: grid;
  gap: 56px;
}

.portfolio-category {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(31, 31, 28, 0.08);
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 22px 70px rgba(31, 31, 28, 0.06);
}

.portfolio-category--reverse {
  grid-template-columns: minmax(340px, 1fr) minmax(260px, 0.74fr);
}

.portfolio-category--reverse .portfolio-text {
  order: 2;
}

.portfolio-category--reverse .event-slider {
  order: 1;
}

.portfolio-text {
  max-width: 470px;
}

.portfolio-text h3 {
  font-family: var(--font-title);
  font-size: clamp(2.25rem, 3.6vw, 3.75rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.portfolio-text p:not(.section-label) {
  margin-top: 18px;
  color: var(--color-muted);
  line-height: 1.82;
}

.portfolio-text .btn {
  margin-top: 26px;
}

.event-slider {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
}

.event-slider__viewport {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 420px;
}

.event-slider__slide {
  display: none;
  width: 100%;
  margin: 0;
  text-align: center;
}

.event-slider__slide.is-active {
  display: block;
}

.event-slider__slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(31, 31, 28, 0.16);
}

.event-slider__button {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: 999px;
  background: rgba(31, 31, 28, 0.72);
  color: #fffdf8;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform var(--transition), background var(--transition);
}

.event-slider__button:hover {
  background: rgba(31, 31, 28, 0.94);
  transform: translateY(-50%) scale(1.06);
}

.event-slider__button--prev {
  left: -18px;
}

.event-slider__button--next {
  right: -18px;
}

.event-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.event-slider__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 31, 28, 0.22);
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
}

.event-slider__dot.is-active {
  width: 24px;
  background: #1f1f1c;
}

.about {
  padding: 86px 0 96px;
  background: var(--color-bg-soft);
}

.about-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.about-image-wrapper img {
  width: 100%;
  max-height: 610px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.about-content {
  max-width: 620px;
}

.about-content p {
  margin-top: 18px;
  line-height: 1.85;
}

.about-content .btn {
  margin-top: 28px;
}

.services {
  padding: 86px 0 96px;
}

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

.service-card {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.66);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}

.service-card p {
  margin-top: 16px;
  color: var(--color-muted);
}

.process {
  padding: 86px 0 92px;
  background: linear-gradient(135deg, #e7d7b8 0%, #eadfc9 100%);
}

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

.process-step {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.64);
}

.process-step span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--color-sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.process-step h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
}

.process-step p {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.location {
  padding: 84px 0;
  background: linear-gradient(135deg, #1f1f1c 0%, #292822 100%);
  color: var(--color-bg-soft);
  text-align: center;
}

.location-container {
  max-width: 860px;
}

.location .section-label {
  color: var(--color-sand);
}

.location p {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255, 253, 248, 0.78);
}

.faq {
  padding: 86px 0 96px;
  background: var(--color-bg-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-list details {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-bg);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--color-sage-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 24px 24px;
  color: var(--color-muted);
}

.final-cta {
  padding: 86px 0 96px;
  background: linear-gradient(135deg, #a8ad8a 0%, #b9be99 100%);
  text-align: center;
}

.final-cta-container {
  max-width: 820px;
}

.final-cta p {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(31, 31, 28, 0.74);
}

.final-cta .btn {
  margin-top: 30px;
}

.site-footer {
  padding: 42px 0;
  background: var(--color-text);
  color: var(--color-bg-soft);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-title);
  font-size: 1.45rem;
}

.site-footer p,
.site-footer address {
  color: rgba(255, 253, 248, 0.68);
  font-style: normal;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: #1f1f1c;
  color: var(--color-bg-soft);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(31, 31, 28, 0.26);
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.floating-whatsapp::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--color-sage);
}

@keyframes whatsappPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  55% { transform: translateY(-2px) scale(1.015); }
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .hero-container,
  .about-container {
    grid-template-columns: 1fr;
  }

  .hero-image-wrapper {
    justify-self: center;
    max-width: 560px;
  }

  .portfolio-category,
  .portfolio-category--reverse {
    grid-template-columns: 1fr;
  }

  .portfolio-category--reverse .portfolio-text,
  .portfolio-category--reverse .event-slider {
    order: initial;
  }

  .portfolio-text {
    max-width: 720px;
  }

  .event-slider {
    max-width: 620px;
  }

  .event-slider__slide img {
    max-height: 560px;
  }

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

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 15px;
  }

  .section-container,
  .header-container,
  .hero-container,
  .about-container,
  .intro-container,
  .final-cta-container,
  .footer-container {
    width: calc(100% - 28px);
  }

  .header-container {
    min-height: var(--header-height);
  }

  .brand-name {
    font-size: 1.16rem;
    white-space: nowrap;
  }

  .brand-subtitle {
    font-size: 0.52rem;
    letter-spacing: 0.28em;
  }

  .menu-toggle {
    display: block;
    flex-shrink: 0;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: var(--color-bg-soft);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-header.is-open .main-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 10px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding: 34px 0 58px;
  }

  .hero-container {
    gap: 28px;
  }

  .hero-content h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.25rem);
    line-height: 1;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
  }

  .hero-text {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .hero-actions .btn,
  .portfolio-text .btn {
    width: 100%;
  }

  .hero-image-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .hero-image-wrapper::before {
    inset: 12px -8px -12px 8px;
    border-radius: 22px;
  }

  .hero-image {
    max-height: 440px;
    border-radius: 22px;
  }

  .intro {
    padding: 56px 0;
  }

  .intro p {
    text-align: left;
    font-size: clamp(1.85rem, 8vw, 2.7rem);
  }

  .section-heading h2,
  .portfolio-heading h2,
  .portfolio-text h3,
  .about-content h2,
  .location h2,
  .final-cta h2 {
    font-size: clamp(2.05rem, 9.5vw, 2.85rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .portfolio,
  .about,
  .services,
  .process,
  .faq,
  .final-cta {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .portfolio-category {
    padding: 18px;
    border-radius: 24px;
  }

  .event-slider {
    max-width: 100%;
  }

  .event-slider__viewport {
    min-height: 320px;
  }

  .event-slider__slide img {
    max-height: 340px;
    border-radius: 18px;
  }

  .event-slider__button {
    width: 38px;
    height: 38px;
  }

  .event-slider__button--prev {
    left: 8px;
  }

  .event-slider__button--next {
    right: 8px;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 46px;
    padding: 0 15px;
    font-size: 0.78rem;
  }
}

/* =========================================================
   AJUSTES FINAIS DE CONVERSÃO, FAVICON E EXPERIÊNCIA
   Arquivo: style.css
   Função:
   - Manter cards do portfólio estáveis.
   - Estilizar CTAs intermediários.
   - Adicionar ícone nos links de WhatsApp.
   - Ajustar primeira dobra para ocupar a tela.
   - Adicionar animações suaves.
========================================================= */

/* Card total do portfólio com altura estável no desktop */
@media (min-width: 981px) {
  .portfolio-category {
    min-height: 680px;
    align-items: center;
  }

  .portfolio-text,
  .event-slider {
    align-self: center;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .portfolio-category {
    min-height: 760px;
  }
}

@media (max-width: 720px) {
  .portfolio-category {
    min-height: auto;
  }
}

/* Ícone de WhatsApp nos botões */
.whatsapp-link {
  gap: 10px;
}

.whatsapp-link::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.02 2C6.49 2 2 6.18 2 11.32c0 1.9.62 3.66 1.68 5.13L2.7 21.6l5.43-1.35c1.22.5 2.54.77 3.89.77 5.53 0 10.02-4.18 10.02-9.32S17.55 2 12.02 2Zm0 17.12c-1.18 0-2.32-.25-3.36-.74l-.37-.17-3.18.79.57-3-.24-.34a7.3 7.3 0 0 1-1.43-4.34c0-4.09 3.6-7.42 8.01-7.42s8.01 3.33 8.01 7.42-3.6 7.8-8.01 7.8Zm4.46-5.53c-.24-.12-1.43-.69-1.65-.77-.22-.08-.38-.12-.54.12-.16.23-.62.76-.76.91-.14.16-.28.18-.52.06-.24-.12-1.02-.36-1.94-1.16-.72-.62-1.2-1.38-1.34-1.61-.14-.24-.02-.37.11-.49.12-.11.24-.28.36-.42.12-.14.16-.23.24-.39.08-.16.04-.3-.02-.42-.06-.12-.54-1.27-.74-1.74-.2-.46-.4-.4-.54-.41h-.46c-.16 0-.42.06-.64.3-.22.24-.84.8-.84 1.95s.86 2.26.98 2.42c.12.16 1.69 2.54 4.1 3.56.57.25 1.02.4 1.37.51.57.18 1.09.16 1.5.1.46-.07 1.43-.57 1.63-1.12.2-.55.2-1.02.14-1.12-.06-.1-.22-.16-.46-.28Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.02 2C6.49 2 2 6.18 2 11.32c0 1.9.62 3.66 1.68 5.13L2.7 21.6l5.43-1.35c1.22.5 2.54.77 3.89.77 5.53 0 10.02-4.18 10.02-9.32S17.55 2 12.02 2Zm0 17.12c-1.18 0-2.32-.25-3.36-.74l-.37-.17-3.18.79.57-3-.24-.34a7.3 7.3 0 0 1-1.43-4.34c0-4.09 3.6-7.42 8.01-7.42s8.01 3.33 8.01 7.42-3.6 7.8-8.01 7.8Zm4.46-5.53c-.24-.12-1.43-.69-1.65-.77-.22-.08-.38-.12-.54.12-.16.23-.62.76-.76.91-.14.16-.28.18-.52.06-.24-.12-1.02-.36-1.94-1.16-.72-.62-1.2-1.38-1.34-1.61-.14-.24-.02-.37.11-.49.12-.11.24-.28.36-.42.12-.14.16-.23.24-.39.08-.16.04-.3-.02-.42-.06-.12-.54-1.27-.74-1.74-.2-.46-.4-.4-.54-.41h-.46c-.16 0-.42.06-.64.3-.22.24-.84.8-.84 1.95s.86 2.26.98 2.42c.12.16 1.69 2.54 4.1 3.56.57.25 1.02.4 1.37.51.57.18 1.09.16 1.5.1.46-.07 1.43-.57 1.63-1.12.2-.55.2-1.02.14-1.12-.06-.1-.22-.16-.46-.28Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* CTAs intermediários */
.section-cta {
  padding: 54px 0;
  background: var(--color-bg-soft);
}

.section-cta--soft {
  background: linear-gradient(135deg, rgba(231, 215, 184, 0.5), rgba(248, 244, 236, 0.95));
}

.section-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(31, 31, 28, 0.1);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 54px rgba(31, 31, 28, 0.07);
}

.section-cta__inner h2 {
  max-width: 700px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

@media (max-width: 720px) {
  .section-cta {
    padding: 38px 0;
  }

  .section-cta__inner {
    display: grid;
    gap: 22px;
    padding: 24px;
    border-radius: 22px;
  }

  .section-cta__inner .btn {
    width: 100%;
  }
}

/* Primeira dobra ocupando a tela */
:root {
  --header-height-desktop: 92px;
  --header-height-mobile: 78px;
}

.hero {
  min-height: calc(100svh - var(--header-height-desktop));
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-container {
  min-height: calc(100svh - var(--header-height-desktop) - 80px);
  display: grid;
  align-items: center;
}

.hero-content,
.hero-image-wrapper {
  align-self: center;
}

@media (min-width: 1200px) {
  .hero {
    min-height: calc(100svh - var(--header-height-desktop));
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-container {
    min-height: calc(100svh - var(--header-height-desktop) - 96px);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: calc(100svh - var(--header-height-desktop));
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-container {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: calc(100svh - var(--header-height-mobile));
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* Animações suaves */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal-image {
  opacity: 0;
  transform: scale(0.975);
  transition: opacity 840ms ease, transform 840ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-image.is-visible {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-image {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .floating-whatsapp {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

