:root {
  --bg: #fffaf8;
  --surface: #ffffff;
  --surface-soft: #fff0d5;
  --mint: #92d7d0;
  --mint-deep: #269fa0;
  --pink: #f56f9d;
  --pink-soft: #f8cfd3;
  --peach: #eecdad;
  --text: #545454;
  --text-strong: #545454;
  --line: #e9c1c5;
  --shadow: 0 20px 50px rgba(118, 84, 94, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1120px;
  --anchor-offset: 230px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(248, 208, 171, 0.35), transparent 32%),
    radial-gradient(circle at top right, rgba(146, 215, 208, 0.25), transparent 28%),
    var(--bg);
  color: var(--text);
}

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

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

.container {
  width: calc(100% - 2rem);
  max-width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
  scroll-margin-top: var(--anchor-offset);
}

.anchor-target {
  display: block;
  height: 0;
  scroll-margin-top: var(--anchor-offset);
  visibility: hidden;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--mint-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
}

h1,
h2,
h3,
summary {
  color: var(--text-strong);
  font-family: "Baloo 2", cursive;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
}

h3,
summary {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p,
li {
  line-height: 1.75;
  font-size: 1rem;
}

.skip-link,
.sr-only {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--text-strong);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 20;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: block;
  width: 74px;
  height: 74px;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  box-shadow: none;
}

.whatsapp-float img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-home-float {
  display: none;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.15rem 1rem 0.85rem;
  background: var(--mint);
  color: #fff;
  font-size: 0.92rem;
  text-align: center;
  flex-wrap: wrap;
}

.topbar-quote {
  margin: 0;
  color: #fff;
  font-family: "Borel", cursive;
  font-size: clamp(0.85rem, 1.9vw, 1.18rem);
  line-height: 1.45;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 248, 0.84);
  border-bottom: 1px solid rgba(233, 193, 197, 0.45);
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  color: var(--mint-deep);
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 0.08rem;
  color: var(--mint-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  white-space: nowrap;
}

.brand img,
.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.desktop-home-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: auto;
  margin-right: 0.7rem;
}

.desktop-home-icon img {
  width: auto;
  height: 25px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links a {
  flex: 0 0 auto;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-links > a:not(.button) + a:not(.button)::before {
  content: "|";
  margin-right: 0.5rem;
  color: rgba(42, 42, 42, 0.34);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.35rem;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--mint-deep);
  border-radius: 99px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: none;
}

.button-secondary {
  background: transparent;
  color: var(--mint-deep);
  border: 2px solid var(--mint-deep);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: none;
}

.button-agenda {
  background: var(--mint-deep);
  color: #fff;
  box-shadow: none;
  white-space: nowrap;
}

.button-agenda:hover,
.button-agenda:focus-visible {
  box-shadow: none;
}

.button-peach {
  background: #eecdad;
  color: #fff;
}

.button-contact-soft {
  padding: 0.58rem 1rem;
  background: var(--mint);
  color: #fff;
  font-size: 0.9rem;
}

.button-dark-icon {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  background: var(--mint-deep);
}

.button-dark-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button-dark-icon .dot {
  fill: currentColor;
  stroke: none;
}

.button-small {
  padding: 0.58rem 0.78rem;
}

.button-icon {
  min-width: 2.85rem;
  padding-inline: 0.72rem;
  gap: 0.45rem;
}

.button-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button-icon .dot {
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 5rem 0 4rem;
  scroll-margin-top: var(--anchor-offset);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(4px);
}

.hero-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.contact-grid {
  align-items: stretch;
}

.hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100%;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-actions {
  width: 100%;
}

.hero-copy h1 {
  font-size: clamp(1.85rem, 3.45vw, 3rem);
  line-height: 1.02;
}

.home-hero-title,
.home-hero-lead {
  color: #545454;
}

.home-services-title {
  color: #545454;
}

.lead {
  font-size: 0.98rem;
  max-width: none;
  text-align: left;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0;
}

.hero-actions {
  align-items: stretch;
}

.hero-actions .button {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  text-align: center;
  padding-inline: 1rem;
}

.hero-actions .button:first-child {
  background: #f871a1;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-points li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(233, 193, 197, 0.5);
  font-weight: 700;
}

.bubble-card,
.service-card,
.value-card,
.team-card,
.instagram-card,
.contact-card,
.about-panel,
.quote-panel,
.faq-list details {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(233, 193, 197, 0.42);
}

.bubble-card {
  position: relative;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.bubble-card img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  border-radius: 0;
  margin: 0 auto;
}

.bubble-card-logo img {
  width: min(100%, 560px);
}

.hero-photo-card img {
  aspect-ratio: 1 / 1;
  max-height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 70ch;
  margin-bottom: 2rem;
}

.section-heading-wide {
  max-width: none;
}

.section-heading-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faq-heading {
  font-size: clamp(1.25rem, 2.35vw, 2.25rem);
}

.service-grid,
.value-grid,
.team-grid,
.instagram-grid {
  display: grid;
  gap: 1.4rem;
}

.service-card,
.value-card,
.team-card,
.instagram-card,
.about-panel,
.contact-card {
  padding: 1.7rem;
}

.contact-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 100%;
}

.service-card::after {
  content: none;
}

.service-link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-link:hover,
.service-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(118, 84, 94, 0.16);
}

.area-pink {
  --area-color: var(--pink);
}

.area-mint {
  --area-color: var(--mint-deep);
}

.area-peach {
  --area-color: #eecdad;
}

.area-apricot {
  --area-color: #f8c27f;
}

.area-turquoise {
  --area-color: #45c5c8;
}

.area-berry {
  --area-color: #c74477;
}

.team-card,
.instagram-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(146, 215, 208, 0.12));
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: rgba(146, 215, 208, 0.16);
  justify-self: center;
}

.service-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  font-family: "Baloo 2", cursive;
  font-size: 1.15rem;
  color: #fff;
  background: var(--area-color, var(--pink));
}

.service-card h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.36rem);
  line-height: 1.15;
  overflow-wrap: normal;
  hyphens: none;
  color: var(--area-color, var(--text-strong));
}

.value-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.85rem;
  --sello-rgb: 245, 111, 157;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--sello-rgb), 0.08));
  border: 3px solid rgba(var(--sello-rgb), 0.95);
}

.value-card h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  color: rgb(var(--sello-rgb));
}

.value-card p {
  margin-bottom: 0;
}

.value-icon {
  position: relative;
  width: 4.35rem;
  height: 4.35rem;
  border-radius: 50%;
  background: rgba(var(--sello-rgb), 0.2);
}

.value-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.6rem;
  height: 3.6rem;
  display: block;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.value-card-persona {
  --sello-rgb: 20, 160, 150;
}

.value-card-bienestar {
  --sello-rgb: 250, 130, 170;
}

.value-card-colaboracion {
  --sello-rgb: 238, 205, 173;
}

.value-card-protegido {
  --sello-rgb: 150, 220, 210;
}

.about-panel {
  background: linear-gradient(145deg, rgba(248, 208, 171, 0.18), rgba(255, 255, 255, 0.95));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(233, 193, 197, 0.42);
  padding: 1.7rem;
}

.team-card strong {
  color: var(--mint-deep);
}

.values-list {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.35rem;
  padding: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 207, 211, 0.22));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(233, 193, 197, 0.42);
}

.values-list p {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--text-strong);
}

.team-grid {
  align-items: start;
}

.team-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.team-portrait {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 0.9rem;
  background: linear-gradient(180deg, rgba(146, 215, 208, 0.3), rgba(248, 208, 171, 0.28));
}

.team-card-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.team-card-compact h3 {
  font-size: 1.24rem;
}

.team-card-compact p {
  margin: 0.15rem 0;
}

.team-link {
  margin-top: 0.45rem;
}

.faq {
  background: linear-gradient(180deg, rgba(248, 207, 211, 0.18), rgba(255, 255, 255, 0));
}

.instagram-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.instagram-preview-card {
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(233, 193, 197, 0.42);
  background: var(--surface);
}

.instagram-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.3rem 1.4rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: "Baloo 2", cursive;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--mint-deep);
}

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

.faq-list p {
  margin: 0.9rem 0 0;
}

.faq-list ul {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.support-page {
  padding-bottom: 2.4rem;
}

.page-hero .lead {
  max-width: 68ch;
}

.split-panel {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split-panel img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.split-panel img.about-photo-clean {
  border-radius: 0;
  box-shadow: none;
}

.content-panel,
.closing-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(233, 193, 197, 0.42);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.8rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.action-row-centered {
  justify-content: center;
  align-items: center;
}

.support-actions {
  margin-top: 1.1rem;
  margin-bottom: 0;
}

.professionals-grid,
.support-grid {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
}

.professional-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid rgba(233, 193, 197, 0.42);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.professional-card:hover,
.professional-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(118, 84, 94, 0.16);
}

.professional-card img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: contain;
  object-position: center top;
  padding: 0.9rem 0.9rem 0;
  background: linear-gradient(180deg, rgba(146, 215, 208, 0.3), rgba(248, 208, 171, 0.28));
}

.professional-card img.portrait-bottom {
  object-position: center bottom;
  padding-top: 0.9rem;
  padding-bottom: 0;
}

.professional-copy {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: 100%;
  padding: 0 1.4rem 1.5rem;
}

.professional-copy h3,
.support-card h3 {
  font-size: clamp(1.28rem, 2vw, 1.55rem);
}

.professional-copy h3 {
  margin-bottom: -0.2rem;
}

.professional-copy p,
.support-card p {
  margin: 0;
}

.professional-copy p {
  font-size: 0.95rem;
  line-height: 1.32;
}

.role-pill {
  justify-self: start;
  color: var(--mint-deep);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.15;
}

.professional-copy .button {
  margin-top: auto;
}

.support-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  background: var(--surface);
  border: 1px solid rgba(233, 193, 197, 0.42);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.7rem;
  scroll-margin-top: var(--anchor-offset);
}

.support-row-anchor {
  grid-column: 1 / -1;
  height: 0;
  margin: 0 0 -1.4rem;
  scroll-margin-top: 0;
}

.support-card:nth-child(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(146, 215, 208, 0.14));
}

.support-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: rgba(146, 215, 208, 0.16);
}

.support-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.support-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  font-family: "Baloo 2", cursive;
  font-size: 1.15rem;
  color: #fff;
  background: var(--area-color, var(--pink));
}

.support-card h3 {
  color: var(--area-color, var(--text-strong));
  line-height: 1.15;
}

.closing-panel {
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  background: #eecdad;
  border-color: rgba(238, 205, 173, 0.8);
}

.professionals-grid + .closing-panel {
  margin-top: 2.2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--text-strong);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(201, 164, 169, 0.5);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.92);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(146, 215, 208, 0.32);
  border-color: var(--mint-deep);
}

.form-note {
  margin: 0;
  font-size: 0.95rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.form-status-error {
  color: var(--pink);
}

.form-status-success {
  color: var(--mint-deep);
}

.form-status-info {
  color: var(--text-strong);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.reservation-call {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
}

.reservation-call p {
  margin: 0;
  font-weight: 800;
  color: var(--text-strong);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  line-height: 1.35;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.heading-peach {
  color: #eecdad;
}

.heading-mint {
  display: block;
  color: #92dbd3;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.contact-card li + li {
  margin-top: 0.8rem;
}

.text-link {
  color: var(--mint-deep);
  font-weight: 800;
}

.map-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(233, 193, 197, 0.42);
  background: var(--surface);
}

.map-card iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map {
  height: clamp(300px, 31vw, 405px);
  min-height: 0;
  margin-top: 0.5rem;
}

.contact-map iframe {
  height: 100%;
  min-height: 0;
}

.profile-page {
  min-height: 100vh;
}

.profile-layout {
  display: grid;
  gap: 1.5rem;
}

.profile-photo {
  width: min(100%, 360px);
  border-radius: 28px;
}

.profile-copy {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(233, 193, 197, 0.42);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.7rem;
}

.site-footer {
  min-height: 280px;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(233, 193, 197, 0.5);
  background: linear-gradient(180deg, #f2e6dc 0%, #edf0e9 100%);
  display: flex;
  align-items: center;
}

.footer-grid {
  align-items: center;
  grid-template-columns: 240px minmax(180px, 0.85fr) minmax(320px, 1fr);
  gap: 1.4rem;
}

.footer-logo-column {
  display: flex;
  align-items: stretch;
}

.footer-logo-full {
  width: 240px;
  height: auto;
  object-fit: contain;
}

.footer-copy {
  display: flex;
  align-items: center;
  max-width: 520px;
}

.footer-copy p {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(0.74rem, 1.1vw, 0.95rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.footer-nav-block {
  display: grid;
  gap: 0.55rem;
  align-content: center;
  color: var(--mint-deep);
  font-weight: 800;
}

.footer-nav {
  display: grid;
  gap: 0.45rem;
}

.footer-contact {
  display: grid;
  gap: 0.45rem;
  align-content: center;
}

.footer-contact p {
  margin: 0;
}

.footer-contact a,
.footer-nav-block a {
  transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-nav-block a:hover {
  color: var(--pink);
}

@media (min-width: 760px) {
  .contact-grid,
  .split-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .value-grid,
  .instagram-grid,
  .professionals-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: start;
  }

  .map-card iframe {
    min-height: 520px;
  }

  .contact-map iframe {
    min-height: 0;
  }
}

@media (min-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .professionals-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 1120px) {
  .brand img {
    width: 66px;
    height: 66px;
  }

  .brand-text {
    font-size: 0.79rem;
    letter-spacing: 0.12em;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .desktop-home-icon {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    right: auto;
    width: max-content;
    min-width: min(100% - 2rem, 20rem);
    max-width: calc(100% - 2rem);
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 250, 248, 0.98);
    border: 1px solid rgba(233, 193, 197, 0.68);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a:not(.button) + a:not(.button)::before {
    content: none;
    margin-right: 0;
  }

  .whatsapp-float {
    right: 0.6rem;
    padding: 0.85rem 0.6rem;
  }

  .nav-links .instagram-link {
    width: 100%;
    align-self: center;
  }

  .nav-links .button {
    width: 100%;
  }
}

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

  .footer-logo-full {
    width: min(240px, 100%);
    height: auto;
  }

  .footer-copy {
    max-width: none;
  }

  h1 {
    font-size: 1.875rem;
  }

  .hero-grid,
  .team-grid,
  .team-grid-four {
    grid-template-columns: 1fr;
  }

  .instagram-preview-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.6rem 0;
  }

  .hero {
    padding-top: 3.8rem;
  }

  .brand-text {
    font-size: 0.73rem;
    letter-spacing: 0.11em;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

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

  .hero-actions .button {
    flex-basis: 100%;
    white-space: normal;
  }

  .team-portrait {
    max-width: 220px;
  }

  .whatsapp-float {
    top: auto;
    bottom: 1rem;
    transform: none;
    width: 64px;
    height: 64px;
  }

  .mobile-home-float {
    position: fixed;
    top: 184px;
    right: 1.15rem;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }

  .mobile-home-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .map-card iframe {
    min-height: 340px;
  }

  .contact-map iframe {
    min-height: 0;
  }
}
