:root {
  --bg: #f3ede6;
  --bg-soft: #faf7f3;
  --white: #ffffff;
  --text: #2f2f2f;
  --muted: #6f6a64;
  --primary: #1f4a43;
  --accent: #c48262;
  --border: rgba(31, 74, 67, 0.1);
  --shadow: 0 18px 40px rgba(42, 36, 30, 0.08);
  --shadow-soft: 0 12px 28px rgba(42, 36, 30, 0.06);
  --shadow-strong: 0 24px 60px rgba(42, 36, 30, 0.12);
  --radius: 22px;
  --container: 1240px;
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 247, 243, 0.92);
  border-bottom: 1px solid rgba(31, 74, 67, 0.08);
  box-shadow: 0 10px 30px rgba(31, 74, 67, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: auto;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
  font-weight: 700;
}

.brand-subtitle {
  margin-top: 2px;
  font-size: 0.82rem;
  line-height: 1.2;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  color: var(--primary);
  font-weight: 500;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 74, 67, 0.16);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(31, 74, 67, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  color: var(--primary);
  border: 1px solid rgba(31, 74, 67, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.82);
}

.btn-outline-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid rgba(31, 74, 67, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: #264f47;
  font-weight: 600;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.btn-outline-soft:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(31, 74, 67, 0.28);
}

.desktop-cta {
  padding: 12px 28px;
  letter-spacing: 0.02em;
}

/* TYPOGRAPHY */

.eyebrow {
  display: block;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c47a4f;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.section-copy h2,
.cta-box h2,
.specialty-head h2,
.team-card-content h2,
.content-card h2,
.team-intro h2,
.especialidades-intro h2,
.mvv-header h2,
.cta-team h2,
.cta-specialties h2,
.cta-premium h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--primary);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* HERO HOME */

.hero-home {
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
}

.hero-home::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 130, 98, 0.12) 0%, rgba(196, 130, 98, 0) 70%);
  pointer-events: none;
}

.hero-home::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 74, 67, 0.08) 0%, rgba(31, 74, 67, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(460px, 580px);
  gap: 72px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy h1 {
  max-width: 18ch;
  margin: 0 auto 18px;
  font-size: clamp(48px, 4.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.hero-copy p {
  max-width: 36ch;
  margin: 0 auto 24px;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-mini-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.hero-mini-highlights span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(31, 74, 67, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.hero-card {
  position: relative;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.97));
  border: 1px solid rgba(31, 74, 67, 0.08);
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(42, 36, 30, 0.14);
}

.hero-carousel-track {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 26px;
  background: #efe9e2;
}

.hero-carousel-track::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0) 42%);
  pointer-events: none;
}

.carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.9s ease, transform 5s ease;
}

.carousel-image.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: rgba(31, 74, 67, 0.86);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background: var(--primary);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.carousel-btn.prev {
  left: 24px;
}

.carousel-btn.next {
  right: 24px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.18);
}

/* PAGE HERO */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 38px;
  background:
    radial-gradient(circle at top left, rgba(196, 130, 98, 0.11) 0%, rgba(196, 130, 98, 0) 30%),
    radial-gradient(circle at bottom right, rgba(31, 74, 67, 0.08) 0%, rgba(31, 74, 67, 0) 30%),
    linear-gradient(180deg, rgba(250, 247, 243, 0.95), rgba(243, 237, 230, 0));
  text-align: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 74, 67, 0), rgba(31, 74, 67, 0.1), rgba(31, 74, 67, 0));
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  text-align: center;
}

.page-hero h1,
.hero-title {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto 16px;
  font-size: clamp(42px, 4.3vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-align: center;
  color: #264f47;
  text-wrap: balance;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(47, 47, 47, 0.82);
  font-size: 18px;
  line-height: 1.72;
}

/* SECTIONS */

.trust-section,
.about-preview,
.specialties-preview,
.modalidades-section,
.team-preview,
.steps-section,
.contact-preview,
.page-section,
.cta-section {
  padding: 64px 0;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  max-width: 18ch;
  margin: 0 auto 12px;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
}

.section-heading p,
.team-intro p,
.especialidades-intro p,
.mvv-header p {
  max-width: 760px;
  margin: 0 auto;
  color: #6f6a64;
  line-height: 1.78;
}

/* GRIDS */

.cards-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* CARDS */

.feature-card,
.service-card,
.mode-card,
.step-card,
.info-card,
.mini-info-card,
.content-card,
.team-mini-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(248, 244, 238, 0.985) 100%);
  border: 1px solid rgba(31, 74, 67, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(31, 74, 67, 0.08);
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.feature-card::before,
.service-card::before,
.mode-card::before,
.step-card::before,
.info-card::before,
.mini-info-card::before,
.content-card::before,
.team-mini-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16%;
  width: 68%;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 130, 98, 0), rgba(196, 130, 98, 0.48), rgba(196, 130, 98, 0));
}

.feature-card:hover,
.service-card:hover,
.mode-card:hover,
.step-card:hover,
.info-card:hover,
.mini-info-card:hover,
.content-card:hover,
.team-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(31, 74, 67, 0.12);
  border-color: rgba(31, 74, 67, 0.16);
}

.feature-card,
.service-card,
.mode-card,
.step-card,
.info-card,
.mini-info-card,
.content-card {
  padding: 28px;
}

.feature-card h3,
.service-card h3,
.mode-card h3,
.step-card h3,
.info-card h3,
.mini-info-card h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.18rem;
}

.feature-card p,
.service-card p,
.mode-card p,
.step-card p,
.info-card p,
.mini-info-card p,
.content-card p {
  color: #5b5550;
  line-height: 1.82;
}

.feature-icon {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 1.4rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 28px;
}

.service-card h2,
.service-card h3 {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #264f47;
}

.service-card::after {
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(31, 74, 67, 0.08);
  color: #264f47;
  font-size: 1.35rem;
}

.service-card:nth-child(1)::after {
  content: "🧠";
}

.service-card:nth-child(2)::after {
  content: "⚕️";
}

.service-card:nth-child(3)::after {
  content: "🔎";
}

.service-card:nth-child(4)::after {
  content: "🏡";
}

.service-card:nth-child(5)::after {
  content: "🌱";
}

.service-card:nth-child(6)::after {
  content: "💻";
}

.service-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 700;
}

/* SPLIT */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.section-copy {
  max-width: 560px;
  padding-left: 0;
}

.section-copy h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  text-align: center;
}

.section-copy p {
  margin-top: 18px;
  margin-bottom: 16px;
  color: var(--muted);
  text-align: center;
}

.section-copy .btn {
  margin-inline: auto;
}

.section-copy .eyebrow,
.page-hero .eyebrow,
.split-section .eyebrow {
  margin-left: 0;
}

.split-section .section-copy .eyebrow {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.highlight-box {
  position: relative;
  width: 100%;
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16%;
  width: 68%;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 130, 98, 0), rgba(196, 130, 98, 0.48), rgba(196, 130, 98, 0));
}

.highlight-item + .highlight-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 74, 67, 0.1);
}

.highlight-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 1.08rem;
}

.highlight-item span {
  color: var(--muted);
}

/* TEAM MINI */

.team-mini-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 22px 18px;
  text-align: center;
}

.team-mini-card img {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  border: 4px solid rgba(196, 130, 98, 0.18);
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-mini-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 16px 28px rgba(42, 36, 30, 0.12);
}

.team-mini-card h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.05rem;
  line-height: 1.35;
}

.team-mini-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.section-cta.center {
  margin-top: 28px;
  text-align: center;
}

/* STEPS */

.step-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(196, 130, 98, 0.14);
  color: var(--accent);
  font-weight: 700;
}

/* CONTACT */

.contact-list p {
  margin-bottom: 10px;
}

.contact-list a {
  color: var(--primary);
  font-weight: 600;
}

/* MAP */

.map-box {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.16);
}

.map-box iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* INTERNAL LIST */

.styled-list {
  padding-left: 18px;
}

.styled-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 12px;
  color: var(--muted);
}

.styled-list li::before {
  content: "•";
  position: absolute;
  left: -8px;
  color: var(--accent);
  font-weight: 700;
}

/* TEAM PAGE — SIMPLE */

.team-list {
  max-width: 1000px;
  margin: auto;
}

.team-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  margin-bottom: 28px;
}

.team-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 100%;
  flex-shrink: 0;
}

.team-info h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.team-info .role {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
  font-weight: 500;
}

.team-info p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* TEAM PAGE — PREMIUM */

.page-equipe .page-hero p {
  max-width: 760px;
}

.team-page-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.team-intro {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.team-card-premium.team-card-horizontal {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(248, 244, 238, 0.985) 100%);
  border: 1px solid rgba(31, 74, 67, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(31, 74, 67, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.team-card-premium.team-card-horizontal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16%;
  width: 68%;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 130, 98, 0), rgba(196, 130, 98, 0.5), rgba(196, 130, 98, 0));
}

.team-card-premium.team-card-horizontal:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(31, 74, 67, 0.12);
  border-color: rgba(31, 74, 67, 0.16);
}

.team-photo-wrap.small-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px 24px 24px;
  background: transparent;
  min-height: 100%;
}

.team-photo-wrap.small-photo img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 4px solid rgba(196, 130, 98, 0.16);
  box-shadow: 0 14px 28px rgba(42, 36, 30, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card-premium.team-card-horizontal:hover .team-photo-wrap.small-photo img {
  transform: scale(1.04);
  box-shadow: 0 18px 34px rgba(42, 36, 30, 0.14);
}

.team-card-body {
  padding: 28px 28px 26px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.team-card-body h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #264f47;
}

.team-meta {
  margin-bottom: 14px;
  color: #264f47;
  font-size: 1rem;
  font-weight: 600;
}

.team-badge-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(196, 130, 98, 0.13);
  color: #b16f4f;
  font-size: 0.92rem;
  font-weight: 700;
}

.team-card-body p:last-of-type {
  color: #59534e;
  line-height: 1.82;
}

.team-card-body .btn {
  align-self: flex-start;
  margin-top: 18px;
}

/* TEAM HOME — HORIZONTAL */

.team-home-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.team-home-card-horizontal {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 0;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 244, 238, 0.98) 100%);
  border: 1px solid rgba(31, 74, 67, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(31, 74, 67, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.team-home-card-horizontal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 130, 98, 0), rgba(196, 130, 98, 0.48), rgba(196, 130, 98, 0));
}

.team-home-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(31, 74, 67, 0.12);
  border-color: rgba(31, 74, 67, 0.16);
}

.team-home-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
}

.team-home-photo img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 4px solid rgba(196, 130, 98, 0.16);
  box-shadow: 0 12px 24px rgba(42, 36, 30, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-home-card-horizontal:hover .team-home-photo img {
  transform: scale(1.04);
  box-shadow: 0 16px 30px rgba(42, 36, 30, 0.14);
}

.team-home-info {
  text-align: left;
}

.team-home-info h3 {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1.15;
  font-family: "Cormorant Garamond", serif;
}

.team-home-meta {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.96rem;
  font-weight: 600;
}

.team-home-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(196, 130, 98, 0.13);
  color: #b16f4f;
  font-size: 0.86rem;
  font-weight: 700;
}

.team-home-info p:last-child {
  margin: 0;
  color: #5b5550;
  line-height: 1.72;
}

/* CTA */

.cta-box,
.cta-team,
.cta-specialties,
.cta-premium {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 243, 0.98));
  border: 1px solid rgba(31, 74, 67, 0.08);
  border-radius: 28px;
  box-shadow: 0 22px 52px rgba(31, 74, 67, 0.08);
  text-align: center;
}

.cta-box > div,
.cta-team > div,
.cta-specialties > div,
.cta-premium > div {
  max-width: 900px;
  margin: 0 auto;
}

.cta-box h2,
.cta-team h2,
.cta-specialties h2,
.cta-premium h2 {
  max-width: 17ch;
  margin: 0 auto 12px;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #264f47;
}

.cta-box p,
.cta-team p,
.cta-specialties p,
.cta-premium p {
  max-width: 700px;
  margin: 0 auto 1.6rem;
  color: #6f6a64;
  line-height: 1.8;
}

.cta-box .btn {
  justify-self: end;
}

.cta-team-actions,
.cta-specialties-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* FOOTER */

.site-footer {
  margin-top: 32px;
  padding: 56px 0 18px;
  background: var(--primary);
  color: #f6f1ea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 14px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer li + li {
  margin-top: 8px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

/* FLOATING */

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  padding: 14px 18px;
  background: #1f8f5a;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.22);
}

/* ANIMATION */

.fade-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* PAGES */

.page-sobre .page-hero {
  padding: 56px 0 28px;
}

.page-sobre .page-hero .container,
.page-contato .page-hero .container {
  max-width: 1200px;
}

.page-sobre .page-hero .eyebrow,
.page-contato .page-hero .eyebrow {
  margin-bottom: 14px;
}

.page-sobre .page-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.04rem;
}

.page-contato .page-hero {
  padding: 52px 0 18px;
}

.page-contato .page-hero h1 {
  max-width: 950px;
  margin-bottom: 12px;
  font-size: clamp(42px, 4.5vw, 56px);
  line-height: 1.15;
  white-space: normal;
}

.page-contato .page-hero p {
  max-width: 720px;
}

.page-contato .contato-main-section {
  padding: 28px 0 36px;
}

.page-contato .contato-grid {
  align-items: start;
}

.page-contato .contato-grid .content-card {
  height: 100%;
}

.page-contato .contato-cta-section {
  padding: 20px 0 56px;
}

.page-contato .contato-cta-section .cta-box {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 28px;
}

.page-contato .contato-cta-section .cta-box h2 {
  max-width: 16ch;
}

.page-contato .contato-cta-section .cta-box p {
  max-width: 48ch;
}

.page-local .split-section,
.page-local .page-section .split-section {
  align-items: center;
}

.page-local .section-copy {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.page-local .section-copy .eyebrow {
  display: block;
  margin: 0 auto 18px;
  text-align: center;
}

.page-local .section-copy h2 {
  max-width: 12ch;
  margin: 0 auto 18px;
  line-height: 1.12;
  text-align: center;
}

.page-local .section-copy p {
  max-width: 34ch;
  margin: 0 auto 22px;
  text-align: center;
}

.page-local .hero-actions {
  justify-content: center;
  margin-top: 8px;
}

.page-local .map-box {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(42, 36, 30, 0.14);
}

.page-local .map-box iframe {
  min-height: 400px;
}

/* ABOUT PREVIEW HOME */

.about-preview .section-copy {
  max-width: 620px;
  margin: 0;
  text-align: left;
}

.about-preview .section-copy .eyebrow,
.about-preview .section-copy h2,
.about-preview .section-copy p {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.about-preview .section-copy h2 {
  max-width: 14ch;
}

.about-preview .section-copy p {
  max-width: 30ch;
}

.about-preview .section-copy .btn {
  margin-left: 0;
  margin-right: 0;
}

.about-preview .split-section {
  align-items: center;
}

.hero-home .hero-actions {
  margin-top: 24px;
}

/* ===== SOBRE — BLOCO EDITORIAL PREMIUM ===== */

.sobre-container {
  max-width: 1120px;
  margin: 0 auto;
}

.sobre-editorial {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 48px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f3 100%);
  border: 1px solid rgba(31, 74, 67, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(31, 74, 67, 0.06);
  text-align: left;
  overflow: hidden;
}

.sobre-editorial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 130, 98, 0.5),
    transparent
  );
}

.sobre-editorial h2 {
  text-align: center;
  margin-bottom: 2.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #264f47;
}

.sobre-editorial p {
  margin: 0 0 1.6rem;
  font-size: 17px;
  line-height: 1.95;
  color: #4f4944;
  text-align: justify;
}

.sobre-editorial p:first-of-type {
  font-size: 18px;
  color: #3f3a36;
}

.frase-destaque {
  margin-top: 2.2rem;
  margin-bottom: 2rem;
  font-size: 18px;
  font-weight: 600;
  color: #264f47;
  text-align: center;
  letter-spacing: 0.02em;
}

.sobre-divisor {
  width: 90px;
  height: 1px;
  margin: 1.8rem auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 130, 98, 0.55),
    transparent
  );
  opacity: 0.9;
}

.sobre-editorial p:last-of-type {
  font-size: 14px;
  color: #8a837c;
  text-align: center;
  margin-top: 2rem;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .hero-grid,
  .split-section,
  .footer-grid,
  .team-card,
  .cta-box,
  .cta-team,
  .cta-specialties,
  .cta-premium {
    grid-template-columns: 1fr;
  }

  .cards-4,
  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    max-width: 720px;
    margin-inline: auto;
  }

  .cta-box .btn {
    justify-self: center;
  }

  .team-card img {
    height: 340px;
  }
}

@media (max-width: 900px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-copy,
  .page-local .section-copy {
    max-width: 100%;
  }

  .page-local .section-copy h2,
  .page-local .section-copy p,
  .page-local .section-copy .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .page-local .map-box,
  .page-local .map-box iframe {
    max-width: 100%;
  }

  .cards-3,
  .cards-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .desktop-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 16px 22px;
    background: var(--bg-soft);
    border-bottom: 1px solid rgba(31, 74, 67, 0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .cards-2,
  .cards-3,
  .cards-4,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-home::before,
  .hero-home::after {
    display: none;
  }

  .feature-card:hover,
  .service-card:hover,
  .mode-card:hover,
  .step-card:hover,
  .info-card:hover,
  .mini-info-card:hover,
  .content-card:hover,
  .team-mini-card:hover,
  .hero-card:hover,
  .map-box:hover {
    transform: none;
  }

  .header-wrap {
    position: relative;
  }

  .page-hero {
    padding: 55px 0 30px;
  }

  .page-hero h1,
  .hero-title {
    font-size: 34px;
    line-height: 1.25;
  }

  .page-sobre .page-hero {
    padding: 44px 0 22px;
  }

  .page-sobre .page-hero h1 {
    max-width: 92%;
    font-size: 2.3rem;
    line-height: 1.16;
  }

  .page-sobre .page-hero p,
  .page-contato .page-hero p {
    max-width: 92%;
  }

  .page-contato .page-hero {
    padding: 42px 0 12px;
  }

  .page-contato .page-hero h1 {
    max-width: 92%;
    font-size: 34px;
    line-height: 1.2;
  }

  .page-contato .contato-main-section {
    padding: 22px 0 30px;
  }

  .page-contato .contato-cta-section {
    padding: 16px 0 44px;
  }

  .about-preview .section-copy,
  .about-preview .section-copy .eyebrow,
  .about-preview .section-copy h2,
  .about-preview .section-copy p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .about-preview .section-copy .btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-title {
    max-width: 95%;
    font-size: 34px;
    line-height: 1.16;
  }

  .page-hero p {
    max-width: 92%;
    font-size: 16px;
  }

  .content-card,
  .service-card,
  .team-mini-card,
  .feature-card,
  .mode-card,
  .step-card,
  .info-card,
  .mini-info-card,
  .cta-box,
  .cta-team,
  .cta-specialties,
  .cta-premium {
    border-radius: 22px;
  }

  .sobre-editorial {
    padding: 34px 24px;
    border-radius: 22px;
  }

  .sobre-editorial h2 {
    margin-bottom: 1.8rem;
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .sobre-editorial p {
    font-size: 16px;
    line-height: 1.86;
    margin-bottom: 1.4rem;
  }

  .frase-destaque {
    font-size: 17px;
    margin-top: 1.8rem;
    margin-bottom: 1.8rem;
  }

  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-photo img {
    width: 110px;
    height: 110px;
    margin-bottom: 12px;
  }

  .team-card-premium.team-card-horizontal {
    grid-template-columns: 1fr;
  }

  .team-photo-wrap.small-photo {
    padding: 24px 20px 8px;
  }

  .team-photo-wrap.small-photo img {
    width: 104px;
    height: 104px;
  }

  .team-card-body {
    padding: 16px 20px 22px;
    text-align: center;
  }

  .team-card-body h2 {
    font-size: 2rem;
  }

  .team-badge-premium,
  .team-card-body .btn {
    align-self: center;
  }

  .team-home-card-horizontal {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    text-align: center;
  }

  .team-home-photo {
    padding-right: 0;
    margin-bottom: 10px;
  }

  .team-home-photo img {
    width: 92px;
    height: 92px;
  }

  .team-home-info {
    text-align: center;
  }

  .team-home-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-team-actions,
  .cta-specialties-actions {
    flex-direction: column;
  }

  .cta-team-actions .btn,
  .cta-team-actions .btn-outline-soft,
  .cta-specialties-actions .btn,
  .cta-specialties-actions .btn-outline-soft {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding: 40px 0 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 12ch;
    margin: 0 auto 16px;
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .hero-copy p {
    max-width: 31ch;
    margin: 0 auto 18px;
    font-size: 0.98rem;
  }

  .hero-mini-highlights {
    justify-content: center;
    gap: 8px;
  }

  .hero-mini-highlights span {
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  .hero-card.hero-carousel {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 14px !important;
    border-radius: 22px !important;
  }

  .hero-carousel-track {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: #efe9e2 !important;
  }

  .carousel-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .carousel-btn {
    top: 50% !important;
    z-index: 5 !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.45rem !important;
    transform: translateY(-50%) !important;
  }

  .carousel-btn.prev {
    left: 14px !important;
  }

  .carousel-btn.next {
    right: 14px !important;
  }

  .carousel-dots {
    left: 50% !important;
    bottom: 14px !important;
    z-index: 5 !important;
    transform: translateX(-50%) !important;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  .map-box iframe {
    height: 320px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand-icon {
    height: 34px;
  }

  .brand-title {
    font-size: 1.55rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .page-local .section-copy h2 {
    max-width: 14ch;
  }

  .page-local .section-copy p {
    max-width: 30ch;
  }

  .page-local .map-box iframe {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .trust-section,
  .about-preview,
  .specialties-preview,
  .modalidades-section,
  .team-preview,
  .steps-section,
  .contact-preview,
  .page-section,
  .cta-section {
    padding: 52px 0;
  }

  .page-hero {
    padding: 56px 0 22px;
  }

  .btn {
    width: 100%;
  }

  .team-card-content .btn {
    align-self: stretch;
  }
}

/* ===== EQUIPE — AJUSTE DESKTOP MAIS ELEGANTE E COMPACTO ===== */

.page-equipe .team-page-wrap {
  max-width: 1040px;
}

.page-equipe .team-intro {
  max-width: 760px;
  margin: 0 auto 24px;
}

.page-equipe .team-list {
  max-width: 1000px;
  margin: 0 auto;
  gap: 18px;
}

.page-equipe .team-card-premium.team-card-horizontal,
.page-equipe .team-card-luxury {
  grid-template-columns: 132px 1fr;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(31, 74, 67, 0.07);
}

.page-equipe .team-card-premium.team-card-horizontal:hover,
.page-equipe .team-card-luxury:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(31, 74, 67, 0.10);
}

.page-equipe .team-photo-wrap.small-photo,
.page-equipe .team-card-luxury .team-photo-wrap.small-photo {
  padding: 26px 10px 26px 26px;
}

.page-equipe .team-photo-wrap.small-photo img,
.page-equipe .team-card-luxury .team-photo-wrap.small-photo img {
  width: 98px;
  height: 98px;
  border-width: 4px;
  box-shadow: 0 12px 24px rgba(42, 36, 30, 0.10);
}

.page-equipe .team-card-body,
.page-equipe .team-card-luxury .team-card-body {
  padding: 26px 28px 24px 8px;
}

.page-equipe .team-card-top {
  margin-bottom: 14px;
}

.page-equipe .team-card-body h2,
.page-equipe .team-card-luxury .team-card-body h2 {
  margin-bottom: 8px;
  font-size: clamp(1.95rem, 2vw, 2.45rem);
  line-height: 1.02;
}

.page-equipe .team-meta,
.page-equipe .team-card-luxury .team-meta {
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.page-equipe .team-badge-premium,
.page-equipe .team-card-luxury .team-badge-premium {
  margin-bottom: 14px;
  padding: 8px 13px;
  font-size: 0.84rem;
  border-radius: 999px;
}

.page-equipe .team-card-body p:last-of-type,
.page-equipe .team-card-luxury .team-card-body p:last-of-type {
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.72;
}

.page-equipe .team-card-actions {
  margin-top: 18px;
}

.page-equipe .team-card-actions .btn,
.page-equipe .team-card-body .btn {
  min-width: 190px;
  padding: 12px 18px;
  font-size: 0.95rem;
}

.page-equipe .cta-team {
  max-width: 900px;
}

@media (min-width: 1200px) {
  .page-equipe .page-hero .container {
    max-width: 1100px;
  }

  .page-equipe .hero-title {
    max-width: 980px;
    font-size: clamp(40px, 4vw, 58px);
  }
}

@media (max-width: 768px) {
  .page-equipe .team-page-wrap,
  .page-equipe .team-list {
    max-width: 100%;
  }

  .page-equipe .team-card-premium.team-card-horizontal,
  .page-equipe .team-card-luxury {
    grid-template-columns: 1fr;
  }

  .page-equipe .team-photo-wrap.small-photo,
  .page-equipe .team-card-luxury .team-photo-wrap.small-photo {
    padding: 24px 20px 8px;
  }

  .page-equipe .team-photo-wrap.small-photo img,
  .page-equipe .team-card-luxury .team-photo-wrap.small-photo img {
    width: 104px;
    height: 104px;
  }

  .page-equipe .team-card-body,
  .page-equipe .team-card-luxury .team-card-body {
    padding: 16px 22px 24px;
  }

  .page-equipe .team-card-body p:last-of-type,
  .page-equipe .team-card-luxury .team-card-body p:last-of-type {
    max-width: 100%;
  }

  .page-equipe .team-card-actions .btn,
  .page-equipe .team-card-body .btn {
    width: 100%;
    min-width: unset;
  }
}
