/* ==========================================================================
   Respira & Desenvolve — Folha de estilos principal
   Paleta da marca: #BE9C63 #F2EBE7 #B3CB99 #545454
   ========================================================================== */

:root {
  /* Cores da marca */
  --cream: #F2EBE7;
  --cream-soft: #FAF6F2;
  --cream-deep: #EDE3DB;
  --sage: #7A9B6E;
  --sage-light: #B3CB99;
  --sage-deep: #5C7A56;
  --sage-shadow: rgba(122, 155, 110, 0.15);
  --gold: #BE9C63;
  --gold-light: #D4B889;
  --gold-soft: #E8D6B8;
  --charcoal: #545454;
  --ink: #2F2F2F;
  --white: #FFFFFF;

  /* Tipografia */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Aboreto', 'Cormorant Garamond', cursive;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamento */
  --container: 1200px;
  --container-narrow: 880px;
  --radius: 4px;
  --radius-lg: 16px;

  /* Sombras */
  --shadow-soft: 0 4px 24px rgba(84, 84, 84, 0.06);
  --shadow-medium: 0 12px 40px rgba(84, 84, 84, 0.08);
  --shadow-large: 0 24px 60px rgba(84, 84, 84, 0.12);

  /* Transições */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Reset e base
   ========================================================================== */

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--sage-deep);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover {
  color: var(--gold);
}

::selection {
  background: var(--sage-light);
  color: var(--white);
}

/* ==========================================================================
   Tipografia
   ========================================================================== */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sage-deep);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 500;
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}

.script {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
}

p {
  margin-bottom: 1rem;
}

p.lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--charcoal);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
}

/* ==========================================================================
   Navegação
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(250, 246, 242, 0.96);
  border-bottom-color: rgba(122, 155, 110, 0.12);
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--sage-deep);
  flex-shrink: 0;
}

.nav-logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-logo span:last-child {
  display: none;
}

@media (min-width: 480px) {
  .nav-logo span:last-child { display: inline; }
}

.nav-logo .amp {
  color: var(--gold);
  font-family: var(--font-script);
  margin: 0 0.15em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.4rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--sage-deep);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.65rem 1.25rem !important;
  border-radius: 100px;
  font-size: 0.88rem !important;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--sage-deep);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu a { font-size: 1.1rem; }
}

/* Espaço para o nav fixo */
main {
  padding-top: 80px;
}

/* ==========================================================================
   Botões
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 6px 20px var(--sage-shadow);
}

.btn-primary:hover {
  background: var(--sage-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--sage-shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--sage-deep);
  border: 1.5px solid var(--sage);
}

.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: #a8854f;
  color: var(--white);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 5rem 0 6rem;
  background:
    radial-gradient(ellipse at top right, var(--gold-soft) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(179, 203, 153, 0.35) 0%, transparent 60%),
    var(--cream-soft);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.55 0 0 0 0 0.45 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text h1 .script {
  display: block;
  font-size: 0.65em;
  margin-bottom: -0.1em;
}

.hero-text .lead {
  margin-bottom: 2.2rem;
  max-width: 520px;
}

@media (max-width: 900px) {
  .hero-text .lead { margin-left: auto; margin-right: auto; }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-actions { justify-content: center; }
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.hero-image {
  position: absolute;
  inset: 0;
  border-radius: 200px 200px 24px 24px;
  background:
    linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(190, 156, 99, 0.3) 0%, transparent 50%);
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-script);
  font-size: 1.8rem;
  text-align: center;
  padding: 2rem;
  z-index: 1;
}

/* ==========================================================================
   Imagens reais (substituem os placeholders)
   ========================================================================== */

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  position: relative;
  z-index: 2;
}

/* Quando há imagem real, esconder o gradiente decorativo do hero */
.hero-image:has(.hero-img)::after {
  display: none;
}

.hero-image:has(.hero-img) {
  background: var(--cream-deep);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 24px;
}

.about-preview-image:has(.about-img)::after {
  display: none;
}

.about-preview-image:has(.about-img) {
  background: transparent;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  border-radius: 24px;
}


.hero-butterfly {
  position: absolute;
  width: 90px;
  height: 90px;
  top: -25px;
  right: -25px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 100px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--sage);
  border-radius: 50%;
  position: relative;
}

.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.4;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-3deg); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ==========================================================================
   Stats strip
   ========================================================================== */

.stats {
  background: var(--sage-deep);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(190,156,99,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
}

.stat {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat:last-child { border-right: none; }

@media (max-width: 720px) {
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 2rem; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
}

/* ==========================================================================
   Secção: Sobre preview
   ========================================================================== */

.about-preview {
  background: var(--cream-soft);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-preview-image {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 440px;
  width: 100%;
  background: var(--cream-deep);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.about-preview-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(122, 155, 110, 0.15) 0%, rgba(190, 156, 99, 0.2) 100%);
}

.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.about-image-placeholder svg {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
}

.credential-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
}

.credential-icon svg {
  width: 20px;
  height: 20px;
}

.credential-text strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.credential-text span {
  font-size: 0.88rem;
  color: var(--charcoal);
}

/* ==========================================================================
   Secção: Especialidades
   ========================================================================== */

.specialties {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.specialties::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--sage-shadow) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header.left {
  text-align: left;
  margin: 0 0 4rem;
}

.specialties-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
  position: relative;
}

.specialties-intro h2 .script {
  font-size: 1em;
  display: inline;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.specialty-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: default;
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-large);
  border-color: rgba(122, 155, 110, 0.15);
}

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

.specialty-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--sage-deep);
  transition: all 0.3s var(--ease);
}

.specialty-card:hover .specialty-icon {
  background: var(--sage);
  color: var(--white);
}

.specialty-icon svg {
  width: 28px;
  height: 28px;
}

.specialty-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.specialty-card p {
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   Secção: Outros serviços
   ========================================================================== */

.other-services {
  background: var(--white);
}

.other-services-inner {
  background: var(--cream);
  border-radius: 32px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 720px) {
  .other-services-inner { padding: 3rem 1.5rem; border-radius: 20px; }
}

.other-services-inner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  opacity: 0.6;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.other-service {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.6);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}

.other-service:hover {
  background: var(--white);
  transform: translateX(4px);
}

.other-service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.other-service-icon svg { width: 22px; height: 22px; }

.other-service-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

/* ==========================================================================
   Secção: Testemunhos
   ========================================================================== */

.testimonials {
  background: var(--cream-soft);
  position: relative;
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-soft);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold-soft);
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.04em;
}

.testimonial-author span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonials-grid .testimonial-card {
  padding: 2.2rem 1.8rem;
  text-align: left;
  margin: 0;
}

.testimonials-grid .testimonial-text {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   CTA final
   ========================================================================== */

.cta-final {
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--sage) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(190,156,99,0.25) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 40%);
  pointer-events: none;
}

.cta-final h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
}

.cta-final p {
  color: rgba(255,255,255,0.9);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  position: relative;
}

.cta-final .btn-primary {
  background: var(--gold);
  position: relative;
}

.cta-final .btn-primary:hover {
  background: var(--gold-light);
}

.cta-final .btn-secondary {
  border-color: var(--white);
  color: var(--white);
  position: relative;
}

.cta-final .btn-secondary:hover {
  background: var(--white);
  color: var(--sage-deep);
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

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

.footer-brand .nav-logo {
  color: var(--cream);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* ==========================================================================
   WhatsApp flutuante
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.3s var(--ease);
  animation: subtle-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

@keyframes subtle-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.7); }
}

/* ==========================================================================
   Page hero (para páginas internas)
   ========================================================================== */

.page-hero {
  background:
    radial-gradient(ellipse at top, rgba(179, 203, 153, 0.3) 0%, transparent 60%),
    var(--cream-soft);
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--charcoal);
  font-size: 1.1rem;
}

/* ==========================================================================
   Animações de entrada
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   Página: Sobre
   ========================================================================== */

.about-section {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.about-portrait {
  position: sticky;
  top: 100px;
  aspect-ratio: 3/4;
  background: var(--cream-deep);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

@media (max-width: 900px) {
  .about-portrait { position: relative; top: 0; max-width: 420px; margin: 0 auto; }
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content h3 {
  margin: 2.5rem 0 1rem;
  color: var(--sage-deep);
  font-size: 1.4rem;
}

.about-content p {
  margin-bottom: 1.2rem;
  color: var(--charcoal);
  line-height: 1.8;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--sage-deep);
  line-height: 1.5;
}

.formation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.formation-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-deep);
}

.formation-list li:last-child { border-bottom: none; }

.formation-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 10px;
}

.formation-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.formation-list span {
  font-size: 0.92rem;
  color: var(--charcoal);
}

/* ==========================================================================
   Página: Serviços
   ========================================================================== */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--cream-deep);
}

.service-detail:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

@media (max-width: 900px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.service-detail.reverse .service-detail-text { order: 2; }
.service-detail.reverse .service-detail-visual { order: 1; }

@media (max-width: 900px) {
  .service-detail.reverse .service-detail-text { order: 1; }
  .service-detail.reverse .service-detail-visual { order: 2; }
}

.service-detail-visual {
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.service-detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(122,155,110,0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(190,156,99,0.18) 0%, transparent 50%);
}

.service-detail-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  opacity: 0.4;
}

.service-detail-icon svg {
  width: 100px;
  height: 100px;
}

.service-detail-text .eyebrow {
  display: block;
  margin-bottom: 0.6rem;
}

.service-detail-text h3 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.service-detail-text p {
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.96rem;
  color: var(--ink);
}

.service-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--sage);
}

/* ==========================================================================
   Página: Contactos
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 14px;
  border-left: 3px solid var(--sage);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
}

.contact-card-icon svg { width: 22px; height: 22px; }

.contact-card h4 {
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}

.contact-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 500;
}

.contact-card p span {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-top: 0.15rem;
}

.contact-card a {
  color: var(--ink);
}

.contact-card a:hover {
  color: var(--sage-deep);
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--charcoal);
}

.hours-list li span:first-child {
  color: var(--ink);
  font-weight: 500;
}

.contact-cta {
  background: var(--cream);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 540px) {
  .contact-cta { padding: 2.5rem 1.5rem; }
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--sage-shadow) 0%, transparent 70%);
}

.contact-cta-content {
  position: relative;
  z-index: 1;
}

.contact-cta h2 {
  margin-bottom: 1rem;
}

.contact-cta p {
  margin-bottom: 2rem;
  color: var(--charcoal);
}

/* ==========================================================================
   Política de privacidade (página de texto)
   ========================================================================== */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p, .legal-content ul {
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 1.4rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong { color: var(--ink); }

.legal-meta {
  font-size: 0.9rem;
  color: var(--charcoal);
  font-style: italic;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border-radius: 10px;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Filosofia / valores (página sobre)
   ========================================================================== */

.values {
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.value {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--sage-deep);
  box-shadow: var(--shadow-soft);
}

.value-icon svg { width: 28px; height: 28px; }

.value h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.value p {
  font-size: 0.95rem;
  color: var(--charcoal);
}
