
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --gfn-green: #7EAD7D;
  --gfn-green-dark: #173f3d;
  --gfn-green-deep: #083b3b;
  --gfn-green-soft: #eaf3e8;
  --gfn-cream: #f7f7f3;
  --gfn-white: #ffffff;
  --gfn-text: #18302d;
  --gfn-muted: #65746f;
  --gfn-line: rgba(23, 63, 61, .12);
  --gfn-shadow: 0 20px 55px rgba(18, 55, 49, .10);
  --gfn-radius: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body.gfn-home {
  margin: 0;
  color: var(--gfn-text);
  background: var(--gfn-cream);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
}

body.gfn-home a {
  color: inherit;
}

.gfn-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   HEADER
   ========================= */
.gfn-header {
  position: fixed;
  z-index: 1000;
  top: 22px;
  left: 50%;
  width: min(1160px, calc(100% - 40px));
  transform: translateX(-50%);
  transition: .3s ease;
}

.gfn-header.scrolled {
  top: 10px;
}

.gfn-nav {
  min-height: 68px;
  padding: 9px 10px 9px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(8, 59, 59, .82);
  box-shadow: 0 15px 40px rgba(4, 32, 31, .18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
}

.gfn-logo {
  width: 124px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

.gfn-nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gfn-nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 11px 12px;
  border-radius: 11px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  transition: .2s ease;
}

.gfn-nav-links a:hover,
.gfn-nav-links a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.10);
}

.gfn-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gfn-call,
.gfn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 43px;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.gfn-call {
  color: #fff;
  background: rgba(255,255,255,.10);
}

.gfn-cta {
  color: #123d3a;
  background: #75d5ce;
  box-shadow: 0 8px 22px rgba(117,213,206,.22);
}

.gfn-call:hover,
.gfn-cta:hover {
  transform: translateY(-2px);
}

.gfn-menu-toggle {
  display: none;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 1.65rem;
  cursor: pointer;
}

/* =========================
   HERO
   ========================= */
.gfn-hero {
  position: relative;
  min-height: min(820px, 100vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5,48,48,.93) 0%, rgba(5,48,48,.77) 34%, rgba(5,48,48,.22) 72%, rgba(5,48,48,.08) 100%),
    url("./imagens/Nova pasta/podologia.jpg") center 58% / cover no-repeat;
}

.gfn-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  z-index: -1;
  background: linear-gradient(transparent, rgba(247,247,243,.18));
}

.gfn-hero-content {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 165px 0 100px;
}

.gfn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  color: rgba(255,255,255,.9);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.gfn-eyebrow::before {
  content: "✦";
  color: #75d5ce;
}

.gfn-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(3.2rem, 6.7vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .98;
}

.gfn-hero h1 strong {
  color: #8ddbd5;
  font-weight: 600;
}

.gfn-hero-copy {
  max-width: 600px;
  margin: 25px 0 30px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.gfn-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gfn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  border-radius: 13px;
  background: #75d5ce;
  color: #0b3836;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 15px 32px rgba(0,0,0,.18);
  transition: .2s ease;
}

.gfn-hero-primary span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11,56,54,.35);
  border-radius: 50%;
}

.gfn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.gfn-hero-primary:hover,
.gfn-hero-secondary:hover {
  transform: translateY(-2px);
}

.gfn-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 14px;
  color: #fff;
  background: rgba(9,58,57,.64);
  box-shadow: 0 15px 35px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: .77rem;
  line-height: 1.3;
}

.gfn-float-card .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #75d5ce;
  box-shadow: 0 0 0 5px rgba(117,213,206,.12);
}

.gfn-float-card.one {
  top: 36%;
  right: 15%;
}

.gfn-float-card.two {
  right: 7%;
  bottom: 26%;
}

.gfn-float-card.three {
  right: 23%;
  bottom: 12%;
}

.gfn-avatar-stack {
  display: flex;
  align-items: center;
}

.gfn-avatar-stack span {
  width: 31px;
  height: 31px;
  margin-left: -7px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: var(--gfn-green-soft);
  color: var(--gfn-green-dark);
  font-size: .72rem;
  font-weight: 800;
}

.gfn-avatar-stack span:first-child {
  margin-left: 0;
}

/* =========================
   INTRO / STATS
   ========================= */
.gfn-intro {
  padding: 105px 0 80px;
  background: var(--gfn-cream);
}

.gfn-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 75px;
  align-items: center;
}

.gfn-section-label {
  color: var(--gfn-green-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gfn-intro h2,
.gfn-section-head h2 {
  margin: 10px 0 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -.045em;
  line-height: 1.06;
  font-weight: 600;
}

.gfn-intro p {
  max-width: 610px;
  color: var(--gfn-muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.gfn-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gfn-stat {
  padding: 27px;
  border: 1px solid var(--gfn-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23,63,61,.06);
}

.gfn-stat strong {
  display: block;
  color: var(--gfn-green-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: -.04em;
}

.gfn-stat span {
  display: block;
  margin-top: 5px;
  color: var(--gfn-muted);
  font-size: .9rem;
  line-height: 1.45;
}

/* =========================
   SERVICES
   ========================= */
.gfn-services {
  padding: 105px 0;
  background: #fff;
}

.gfn-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.gfn-section-head > div:first-child {
  max-width: 700px;
}

.gfn-section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--gfn-muted);
  line-height: 1.7;
}

.gfn-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gfn-service-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 22px;
  background: #173f3d;
  box-shadow: var(--gfn-shadow);
}

.gfn-service-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: block;
  object-fit: cover;
  transition: transform .55s ease;
}

.gfn-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,38,37,.92), rgba(6,38,37,.05) 65%);
}

.gfn-service-card:hover img {
  transform: scale(1.05);
}

.gfn-service-info {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
}

.gfn-service-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8ddbd5;
  font-size: .75rem;
  font-weight: 800;
}

.gfn-service-info h3 {
  margin: 0 0 7px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 600;
}

.gfn-service-info p {
  max-width: 330px;
  margin: 0 0 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  font-size: .9rem;
}

.gfn-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
}

.gfn-service-link span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
}

/* =========================
   EXPERIENCE
   ========================= */
.gfn-experience {
  padding: 105px 0;
  background: var(--gfn-green-soft);
}

.gfn-experience-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 65px;
  align-items: center;
}

.gfn-experience-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: var(--gfn-shadow);
}

.gfn-experience-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.gfn-experience-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 250px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 15px;
  color: #fff;
  background: rgba(8,59,59,.72);
  backdrop-filter: blur(12px);
}

.gfn-experience-badge strong {
  display: block;
  margin-bottom: 4px;
}

.gfn-experience-badge span {
  color: rgba(255,255,255,.78);
  font-size: .8rem;
}

.gfn-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.gfn-feature {
  display: flex;
  gap: 15px;
  padding: 17px;
  border: 1px solid rgba(23,63,61,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.64);
}

.gfn-feature-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #fff;
  color: var(--gfn-green-dark);
  font-weight: 800;
}

.gfn-feature strong {
  display: block;
  margin-bottom: 4px;
}

.gfn-feature p {
  margin: 0;
  color: var(--gfn-muted);
  font-size: .9rem;
  line-height: 1.5;
}

/* =========================
   SOCIAL
   ========================= */
.gfn-social {
  padding: 105px 0;
  background: #fff;
}

.gfn-social-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.gfn-instagram-shell {
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--gfn-line);
  border-radius: 22px;
  background: var(--gfn-cream);
}

.gfn-instagram-shell iframe {
  width: min(100%, 520px);
  min-height: 520px;
  border: 0;
}

/* =========================
   CONTACT
   ========================= */
.gfn-contact {
  padding: 105px 0 0;
  background: var(--gfn-cream);
}

.gfn-contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
  background: var(--gfn-green-deep);
  color: #fff;
}

.gfn-contact-copy {
  padding: 65px;
}

.gfn-contact-copy h2 {
  margin: 9px 0 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -.05em;
  line-height: 1.04;
  font-weight: 600;
}

.gfn-contact-copy p {
  max-width: 470px;
  color: rgba(255,255,255,.74);
  line-height: 1.7;
}

.gfn-contact-items {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.gfn-contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.88);
}

.gfn-contact-item .icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 11px;
  background: rgba(255,255,255,.07);
}

.gfn-contact-map {
  min-height: 500px;
}

.gfn-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  display: block;
}

/* =========================
   FOOTER
   ========================= */
.gfn-footer {
  padding: 28px 0;
  background: #052f2f;
  color: rgba(255,255,255,.65);
}

.gfn-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.gfn-footer strong {
  color: #fff;
}

/* =========================
   FLOATING WHATSAPP
   ========================= */
.gfn-whatsapp-float {
  position: fixed;
  z-index: 1200;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 999px;
  background: #24904e;
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(36,144,78,.30);
  transition: .2s ease;
}

.gfn-whatsapp-float:hover {
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1050px) {
  .gfn-nav-links a {
    padding-inline: 8px;
    font-size: .82rem;
  }

  .gfn-call {
    display: none;
  }

  .gfn-float-card.one { right: 9%; }
  .gfn-float-card.two { right: 4%; }
  .gfn-float-card.three { right: 14%; }
}

@media (max-width: 850px) {
  .gfn-header {
    top: 12px;
  }

  .gfn-nav {
    position: relative;
    padding-left: 14px;
  }

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

  .gfn-nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    background: rgba(8,59,59,.97);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
  }

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

  .gfn-nav-links a {
    justify-content: center;
    padding: 13px;
  }

  .gfn-nav-actions .gfn-cta {
    display: none;
  }

  .gfn-hero {
    min-height: 760px;
    background-position: 64% center;
  }

  .gfn-hero-content {
    padding-top: 175px;
  }

  .gfn-hero h1 {
    max-width: 650px;
  }

  .gfn-float-card.one {
    top: auto;
    right: 5%;
    bottom: 18%;
  }

  .gfn-float-card.two {
    display: none;
  }

  .gfn-float-card.three {
    right: 10%;
    bottom: 8%;
  }

  .gfn-intro-grid,
  .gfn-experience-grid,
  .gfn-contact-card {
    grid-template-columns: 1fr;
  }

  .gfn-intro-grid {
    gap: 40px;
  }

  .gfn-service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gfn-section-head {
    display: block;
  }

  .gfn-section-head p {
    margin-top: 15px;
  }

  .gfn-contact-copy {
    padding: 50px 35px;
  }
}

@media (max-width: 600px) {
  .gfn-shell,
  .gfn-hero-content {
    width: min(100% - 28px, 1240px);
  }

  .gfn-header {
    width: calc(100% - 20px);
  }

  .gfn-logo {
    width: 105px;
  }

  .gfn-hero {
    min-height: 720px;
    background:
      linear-gradient(90deg, rgba(5,48,48,.91), rgba(5,48,48,.50)),
      url("./imagens/Nova pasta/podologia.jpg") 66% center / cover no-repeat;
  }

  .gfn-hero-content {
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .gfn-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.25rem);
  }

  .gfn-hero-copy {
    font-size: 1rem;
  }

  .gfn-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gfn-hero-primary,
  .gfn-hero-secondary {
    justify-content: center;
  }

  .gfn-float-card {
    font-size: .7rem;
  }

  .gfn-float-card.one {
    bottom: 13%;
  }

  .gfn-float-card.three {
    display: none;
  }

  .gfn-intro,
  .gfn-services,
  .gfn-experience,
  .gfn-social {
    padding: 70px 0;
  }

  .gfn-intro h2,
  .gfn-section-head h2 {
    font-size: 2.35rem;
  }

  .gfn-stat-grid {
    grid-template-columns: 1fr;
  }

  .gfn-service-grid {
    grid-template-columns: 1fr;
  }

  .gfn-service-card,
  .gfn-service-card img {
    min-height: 420px;
  }

  .gfn-experience-image,
  .gfn-experience-image img {
    min-height: 420px;
  }

  .gfn-social-head {
    display: block;
  }

  .gfn-contact {
    padding-top: 70px;
  }

  .gfn-contact-copy {
    padding: 42px 24px;
  }

  .gfn-contact-map,
  .gfn-contact-map iframe {
    min-height: 360px;
  }

  .gfn-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .gfn-whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 15px;
  }
}
