/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #1a1a1a;
}

/* Textos de conteúdo */
.clinica-content p,
.procedimentos-heading-right p,
.checkup-intro,
.checkup-item p,
.social-heading > p {
  font-size: 16px !important;
}

/* Textos menores */
.highlight p,
.checkup-note p,
.social-profile-info p {
  font-size: 14px !important;
}

/* Menu */
.main-nav a {
  font-size: 14px !important;
}

/* Botões */
.header-button,
.hero-whatsapp,
.hero-secondary,
.checkup-button,
.contato-whatsapp {
  font-size: 14px !important;
}

img {
  max-width: 100%;
  display: block;
}

a {
  -webkit-tap-highlight-color: transparent;
  color: #1a1a1a;
}
/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  z-index: 1000;

  padding: 16px 0;

  background: rgba(250, 249, 246, 0.94);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(185, 154, 107, 0.14);

  transition:
    background 0.35s ease,
    padding 0.35s ease,
    box-shadow 0.35s ease;
}

.header-container {
  width: min(1380px, 92%);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;
}

/* =========================================================
   LOGO
========================================================= */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
  color: #9e9e9e;

  flex-shrink: 0;
}

.brand-symbol {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #b99a6b;
  border-radius: 50%;

  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 500;

  color: #b99a6b;

  transition: 0.3s ease;
}

.brand:hover .brand-symbol {
  background: #b99a6b;
  color: #fff;
}

.brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #4b5250;
}

.brand-subtitle {
  margin-top: 5px;

  font-family: "Poppins", sans-serif;

  font-size: 7px;
  font-weight: 400;

  letter-spacing: 2.2px;

  color: #777;
}

/* =========================================================
   MENU
========================================================= */

.main-nav {
  display: flex;
  align-items: center;

  gap: 28px;
}

.main-nav a {
  position: relative;

  font-family: "Poppins", sans-serif;

  font-size: 12px;
  font-weight: 400;

  color: #34423f;

  text-decoration: none;

  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: #b99a6b;

  transform: translateX(-50%);

  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #a9824f;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 18px;
}

/* =========================================================
   BOTÃO DO HEADER
========================================================= */

.header-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 12px 20px;

  border: 1px solid #9e9e9e;
  border-radius: 30px;

  font-family: "Poppins", sans-serif;

  font-size: 11px;
  font-weight: 500;

  color: #fff;
  background: #173b35;

  text-decoration: none;

  white-space: nowrap;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.header-button:hover {
  background: #b99a6b;
  border-color: #b99a6b;

  transform: translateY(-2px);
}

/* =========================================================
   HEADER AO ROLAR
========================================================= */

.site-header.scrolled {
  padding: 11px 0;

  background: rgba(250, 249, 246, 0.98);

  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

/* =========================================================
   MENU MOBILE
========================================================= */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 0;

  background: transparent;

  cursor: pointer;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;
}

.menu-toggle span {
  display: block;

  width: 23px;
  height: 1px;

  background: #9e9e9e;

  transition: 0.3s ease;
}
/* =========================================================
   MOBILE
========================================================= */
/* =========================================================
   MENU MOBILE
========================================================= */

@media (max-width: 700px) {
  .header-container {
    width: 90%;
    position: relative;
  }

  /* =======================================================
     BOTÃO HAMBURGER
  ======================================================= */

  .menu-toggle {
    display: flex !important;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 0;
  }

  .menu-toggle span {
    display: block;

    width: 23px;
    height: 1px;

    background: #9e9e9e;

    transition: 0.3s ease;
  }

  /* =======================================================
     BOTÃO AGENDAR
  ======================================================= */

  .header-button {
    display: none !important;
  }

  /* =======================================================
     MENU FECHADO
  ======================================================= */

  .main-nav {
    position: absolute !important;

    top: calc(100% + 1px);
    left: 0;

    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: stretch !important;

    gap: 0 !important;

    padding: 10px 0 15px;

    background: rgba(250, 249, 246, 0.98);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(185, 154, 107, 0.14);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(-10px);

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;

    z-index: 999;
  }

  /* =======================================================
     MENU ABERTO
  ======================================================= */

  .main-nav.mobile-open {
    opacity: 1 !important;

    visibility: visible !important;

    pointer-events: auto !important;

    transform: translateY(0) !important;
  }

  /* =======================================================
     LINKS
  ======================================================= */

  .main-nav a {
    display: block !important;

    width: 100% !important;

    padding: 15px 20px;

    text-align: center;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    color: #34423f;

    text-decoration: none;
  }

  .main-nav a::after {
    display: none !important;
  }

  /* =======================================================
     ANIMAÇÃO HAMBURGER → X
  ======================================================= */

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  width: 100%;
  height: 720px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #e9e5de;
}

/* =========================================================
   IMAGEM DO HERO
========================================================= */

.hero-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/Consultorio1.jpeg");

  background-size: cover;
  background-position: center center;

  transform: scale(1.01);
}

/* =========================================================
   OVERLAY DO HERO
========================================================= */

.hero-overlay {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    rgba(20, 42, 38, 0.82) 0%,
    rgba(20, 42, 38, 0.62) 35%,
    rgba(20, 42, 38, 0.24) 72%,
    rgba(20, 42, 38, 0.05) 100%
  );
}

/* =========================================================
   CONTAINER HERO
========================================================= */

.hero-container {
  position: relative;

  z-index: 2;

  width: min(1380px, 92%);

  margin: 0 auto;

  padding-top: 80px;
}

/* =========================================================
   CONTEÚDO HERO
========================================================= */

.hero-content {
  width: min(620px, 100%);

  color: #fff;
}

.hero-eyebrow {
  display: block;

  margin-bottom: 20px;

  font-family: "Poppins", sans-serif;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 3px;

  color: #d8c39d;
}

.hero h1 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(58px, 6vw, 86px);

  font-weight: 400;

  line-height: 0.94;

  letter-spacing: -2px;

  color: #fff;
}

.hero h1 span {
  display: block;

  color: #e4d4b5;
}

.hero p {
  width: min(500px, 100%);

  margin-top: 26px;

  font-family: "Poppins", sans-serif;

  font-size: 14px;
  font-weight: 300;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.88);
}

/* =========================================================
   BOTÕES HERO
========================================================= */

.hero-actions {
  display: flex;

  align-items: center;

  gap: 20px;

  margin-top: 32px;
}

/* =========================================================
   WHATSAPP
========================================================= */

.hero-whatsapp {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 14px 23px;

  background: #fff;

  color: #9e9e9e;

  border: 1px solid #fff;

  border-radius: 40px;

  font-family: "Poppins", sans-serif;

  font-size: 11px;
  font-weight: 500;

  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.hero-whatsapp svg {
  width: 18px;
  height: 18px;

  fill: currentColor;
}

.hero-whatsapp:hover {
  background: #b99a6b;

  border-color: #b99a6b;

  color: #fff;

  transform: translateY(-2px);
}

/* =========================================================
   SEGUNDO BOTÃO
========================================================= */

.hero-secondary {
  display: inline-flex;

  align-items: center;

  color: #fff;

  font-family: "Poppins", sans-serif;

  font-size: 11px;
  font-weight: 400;

  text-decoration: none;

  padding-bottom: 5px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.6);

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.hero-secondary:hover {
  color: #d8c39d;

  border-color: #d8c39d;
}

/* =========================================================
   INDICADOR DE SCROLL
========================================================= */

.hero-scroll {
  position: absolute;

  right: 40px;
  bottom: 30px;

  z-index: 3;

  display: flex;

  align-items: center;

  gap: 12px;

  color: rgba(255, 255, 255, 0.7);

  text-decoration: none;
}

.hero-scroll span {
  font-family: "Poppins", sans-serif;

  font-size: 8px;

  letter-spacing: 2px;
}

.scroll-line {
  width: 45px;
  height: 1px;

  background: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   A CLÍNICA
========================================================= */

.clinica {
  position: relative;

  width: 100%;

  padding: 130px 0 0;

  background: #faf9f6;

  overflow: hidden;
}

/* =========================================================
   CONTAINER
========================================================= */

.clinica-container {
  width: min(1250px, 90%);

  margin: 0 auto;

  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  align-items: center;

  gap: 90px;
}

/* =========================================================
   CONTEÚDO
========================================================= */

.clinica-content {
  padding-bottom: 30px;
}

.section-eyebrow {
  display: block;

  margin-bottom: 22px;

  font-family: "Poppins", sans-serif;

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 3px;

  color: #a9824f;
}

.clinica h2 {
  max-width: 550px;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(48px, 5vw, 70px);

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -1px;

  color: #9e9e9e;
}

.clinica h2 span {
  display: block;

  color: #b99a6b;
}

.clinica-content p {
  max-width: 520px;

  margin-top: 22px;

  font-family: "Poppins", sans-serif;

  font-size: 13px;

  font-weight: 300;

  line-height: 1.9;

  color: #66716d;
}

.clinica-content .clinica-intro {
  margin-top: 30px;

  font-size: 14px;

  color: #3e4d48;
}

/* =========================================================
   LINK
========================================================= */

.clinica-link {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 30px;

  font-family: "Poppins", sans-serif;

  font-size: 11px;
  font-weight: 500;

  color: #9e9e9e;

  text-decoration: none;

  transition: color 0.3s ease;
}

.clinica-link span {
  font-size: 18px;

  transition: transform 0.3s ease;
}

.clinica-link:hover {
  color: #b99a6b;
}

.clinica-link:hover span {
  transform: translateX(5px);
}

/* =========================================================
   GALERIA
========================================================= */

.clinica-gallery {
  position: relative;

  width: 100%;
  height: 610px;
}

/* =========================================================
   FOTOS
========================================================= */

.clinica-photo {
  position: absolute;

  overflow: hidden;

  background: #e5e1d9;
}

.clinica-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.clinica-photo:hover img {
  transform: scale(1.04);
}

/* =========================================================
   FOTO 1 — GRANDE ESQUERDA
========================================================= */

.photo-one {
  left: 0;
  top: 0;

  width: 58%;
  height: 560px;
}

/* =========================================================
   FOTO 2 — SUPERIOR DIREITA
========================================================= */

.photo-two {
  right: 0;
  top: 0;

  width: 38%;
  height: 270px;
}

/* =========================================================
   FOTO 3 — INFERIOR DIREITA
========================================================= */

.photo-three {
  right: 0;
  bottom: 0;

  width: 38%;
  height: 270px;
}

/* =========================================================
   DIFERENCIAIS
========================================================= */

.clinica-highlights {
  width: min(1250px, 90%);

  margin: 100px auto 0;

  padding: 55px 0;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid #dedbd4;
}

.highlight {
  padding: 0 40px;

  border-right: 1px solid #dedbd4;
}

.highlight:first-child {
  padding-left: 0;
}

.highlight:last-child {
  border-right: none;
}

.highlight strong {
  display: block;

  font-family: "Cormorant Garamond", serif;

  font-size: 25px;

  font-weight: 500;

  color: #9e9e9e;
}

.highlight p {
  max-width: 280px;

  margin-top: 10px;

  font-family: "Poppins", sans-serif;

  font-size: 11px;

  font-weight: 300;

  line-height: 1.7;

  color: #78827e;
}

/* =========================================================
   TABLET — 950PX
========================================================= */

@media (max-width: 950px) {
  .clinica-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .clinica-content {
    max-width: 700px;
  }

  .clinica-gallery {
    height: 560px;
  }

  .clinica-highlights {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .highlight {
    padding: 0 0 30px;

    border-right: none;

    border-bottom: 1px solid #dedbd4;
  }

  .highlight:last-child {
    border-bottom: none;
  }
}

/* =========================================================
   TABLET / MOBILE — 900PX
========================================================= */

@media (max-width: 900px) {
  .main-nav,
  .header-button {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-container {
    width: 90%;
  }

  .hero-content {
    width: 100%;
  }
}

/* =========================================================
   MOBILE — 768PX
========================================================= */

@media (max-width: 768px) {
  /* HEADER */

  .site-header {
    padding: 13px 0;
  }

  .brand-symbol {
    width: 40px;
    height: 40px;

    font-size: 24px;
  }

  .brand-name {
    font-size: 22px;

    letter-spacing: 3px;
  }

  .brand-subtitle {
    font-size: 6px;
  }

  /* HERO */

  .hero {
    height: 650px;
    min-height: 650px;
  }

  .hero-image {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(20, 42, 38, 0.84) 0%,
      rgba(20, 42, 38, 0.55) 60%,
      rgba(20, 42, 38, 0.25) 100%
    );
  }

  .hero-container {
    width: 88%;

    padding-top: 65px;
  }

  .hero-eyebrow {
    font-size: 8px;

    letter-spacing: 2.2px;

    margin-bottom: 17px;
  }

  .hero h1 {
    font-size: 58px;

    letter-spacing: -1px;

    line-height: 0.96;
  }

  .hero p {
    width: 100%;

    margin-top: 22px;

    font-size: 13px;

    line-height: 1.7;
  }

  .hero-actions {
    align-items: flex-start;

    flex-direction: column;

    gap: 16px;

    margin-top: 27px;
  }

  .hero-whatsapp {
    padding: 13px 20px;

    font-size: 10px;
  }

  .hero-secondary {
    font-size: 10px;
  }

  .hero-scroll {
    display: none;
  }

  /* A CLÍNICA */

  .clinica {
    padding-top: 90px;
  }

  .clinica-container {
    width: 88%;
  }

  .clinica h2 {
    font-size: 50px;
  }

  .clinica-content p {
    font-size: 12px;
  }

  .clinica-gallery {
    height: 560px;
  }

  .photo-one {
    left: 0;
    top: 0;

    width: 62%;
    height: 400px;
  }

  .photo-two {
    right: 0;
    top: 0;

    width: 35%;
    height: 190px;
  }

  .photo-three {
    right: 0;
    bottom: 0;

    width: 35%;
    height: 190px;
  }

  .clinica-highlights {
    width: 88%;

    margin-top: 70px;

    padding: 40px 0;
  }

  .highlight strong {
    font-size: 23px;
  }
}

/* =========================================================
   MOBILE PEQUENO — 480PX
========================================================= */

@media (max-width: 480px) {
  .header-container {
    width: 88%;
  }

  .brand {
    gap: 9px;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;

    font-size: 23px;
  }

  .brand-name {
    font-size: 20px;

    letter-spacing: 2.5px;
  }

  /* HERO */

  .hero {
    height: 620px;
    min-height: 620px;
  }

  .hero-container {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero p {
    font-size: 12px;
  }

  /* A CLÍNICA */

  .clinica-gallery {
    height: 500px;
  }

  .photo-one {
    width: 62%;
    height: 350px;
  }

  .photo-two {
    width: 35%;
    height: 165px;
  }

  .photo-three {
    width: 35%;
    height: 165px;
  }
}
/* =========================================================
   ESPECIALIDADES
========================================================= */
/*
.especialidades {
  position: relative;

  width: 100%;

  padding: 130px 0 100px;

  background: #173b35;

  overflow: hidden;
}
*/

.especialidades {
  position: relative;

  width: 100%;

  padding: 130px 0 100px;

  background: #9e9e9e;

  overflow: hidden;
}
/* =========================================================
   DETALHE DECORATIVO
========================================================= */

.especialidades::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  top: -250px;
  right: -200px;

  border: 1px solid rgba(216, 187, 146, 0.12);

  border-radius: 50%;

  pointer-events: none;
}

.especialidades::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  bottom: -200px;
  left: -150px;

  border: 1px solid rgba(216, 187, 146, 0.08);

  border-radius: 50%;

  pointer-events: none;
}

/* =========================================================
   HEADER
========================================================= */

.especialidades-header {
  position: relative;

  z-index: 2;

  width: min(1250px, 90%);

  margin: 0 auto 65px;

  display: grid;

  grid-template-columns: 1fr 0.7fr;

  align-items: end;

  gap: 80px;
}

.section-eyebrow {
  display: block;

  margin-bottom: 20px;

  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: #d8bb92;
}

.especialidades-header h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(54px, 6vw, 82px);

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -2px;

  color: #fff;
}

.especialidades-header h2 span {
  display: block;

  color: #d8bb92;
}

.especialidades-header > p {
  max-width: 430px;

  margin: 0 0 5px;

  font-family: "Poppins", sans-serif;

  font-size: 12px;

  font-weight: 300;

  line-height: 1.9;

  color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   LAYOUT
========================================================= */

.especialidades-layout {
  position: relative;

  z-index: 2;

  width: min(1250px, 90%);

  min-height: 570px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 0.55fr 1.45fr;

  background: #f4f0e9;
}

/* =========================================================
   MENU
========================================================= */

.especialidades-menu {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 35px 0;

  background: #f4f0e9;
}

/* =========================================================
   BOTÕES
========================================================= */

.especialidade-tab {
  position: relative;

  width: 100%;

  min-height: 94px;

  padding: 20px 35px;

  display: flex;

  align-items: center;

  text-align: left;

  border: 0;

  border-left: 2px solid transparent;

  background: transparent;

  cursor: pointer;

  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    padding 0.35s ease;
}

.especialidade-tab:hover {
  background: rgba(23, 59, 53, 0.045);

  padding-left: 42px;
}

.especialidade-tab.active {
  background: #fff;

  border-left-color: #b99a6b;

  padding-left: 42px;
}

/* =========================================================
   TEXTO DO TAB
========================================================= */

.tab-content {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.tab-content span {
  font-family: "Cormorant Garamond", serif;

  font-size: 27px;

  font-weight: 500;

  line-height: 1;

  color: #9e9e9e;

  transition: color 0.3s ease;
}

.especialidade-tab:not(.active) .tab-content span {
  color: #52625d;
}

.tab-content small {
  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 400;

  letter-spacing: 1px;

  color: #919995;

  text-transform: uppercase;
}

/* =========================================================
   PROGRESSO
========================================================= */

.especialidade-progress {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  height: 1px;

  background: rgba(23, 59, 53, 0.08);

  overflow: hidden;
}

.especialidade-progress span {
  display: block;

  width: 0;

  height: 100%;

  background: #b99a6b;
}

.especialidade-tab.active .especialidade-progress span {
  animation: especialidadeProgress 5s linear forwards;
}

@keyframes especialidadeProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* =========================================================
   ÁREA VISUAL
========================================================= */

.especialidades-visual {
  position: relative;

  min-height: 570px;

  overflow: hidden;

  background: #9e9e9e;
}

/* =========================================================
   PAINÉIS
========================================================= */

.especialidade-panel {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  opacity: 0;

  visibility: hidden;

  transform: scale(1.04);

  transition:
    opacity 0.8s ease,
    transform 1.2s ease,
    visibility 0.8s ease;
}

.especialidade-panel.active {
  opacity: 1;

  visibility: visible;

  transform: scale(1);
}

/* =========================================================
   IMAGEM
========================================================= */

.especialidade-panel img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

/* =========================================================
   OVERLAY
========================================================= */

.panel-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(15, 38, 34, 0.02) 15%,
    rgba(15, 38, 34, 0.15) 40%,
    rgba(15, 38, 34, 0.9) 100%
  );
}

/* =========================================================
   CONTEÚDO DA FOTO
========================================================= */

.panel-content {
  position: absolute;

  left: 55px;
  right: 55px;
  bottom: 50px;

  z-index: 3;

  max-width: 540px;
}

.especialidade-panel.active .panel-content {
  animation: panelContentIn 0.8s ease both;
}

@keyframes panelContentIn {
  from {
    opacity: 0;

    transform: translateY(20px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* =========================================================
   LABEL
========================================================= */

.panel-content > span {
  display: block;

  margin-bottom: 13px;

  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 500;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: #d8bb92;
}

/* =========================================================
   TÍTULO
========================================================= */

.panel-content h3 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(48px, 5vw, 70px);

  font-weight: 400;

  line-height: 0.88;

  letter-spacing: -1px;

  color: #fff;
}

/* =========================================================
   DESCRIÇÃO
========================================================= */

.panel-content p {
  max-width: 470px;

  margin-top: 18px;

  font-family: "Poppins", sans-serif;

  font-size: 11px;

  font-weight: 300;

  line-height: 1.85;

  color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   LINK
========================================================= */

.panel-content a {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 23px;

  padding-bottom: 7px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.45);

  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 500;

  color: #fff;

  text-decoration: none;

  transition: 0.3s ease;
}

.panel-content a b {
  font-size: 15px;

  font-weight: 400;

  transition: 0.3s ease;
}

.panel-content a:hover {
  color: #d8bb92;

  border-color: #d8bb92;
}

.panel-content a:hover b {
  transform: translate(3px, -3px);
}

/* =========================================================
   FOOTER DA SEÇÃO
========================================================= */

.especialidades-footer {
  position: relative;

  z-index: 2;

  width: min(1250px, 90%);

  margin: 55px auto 0;

  padding-top: 25px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.especialidades-footer span {
  font-family: "Cormorant Garamond", serif;

  font-size: 20px;

  color: #d8bb92;
}

.especialidades-footer p {
  font-family: "Poppins", sans-serif;

  font-size: 8px;

  letter-spacing: 1.2px;

  color: rgba(255, 255, 255, 0.38);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .especialidades-header {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .especialidades-layout {
    grid-template-columns: 1fr;
  }

  .especialidades-menu {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    padding: 0;
  }

  .especialidade-tab {
    min-height: 105px;

    padding: 18px 15px;

    border-left: 0;

    border-bottom: 2px solid transparent;

    align-items: flex-start;
  }

  .especialidade-tab:hover,
  .especialidade-tab.active {
    padding-left: 15px;
  }

  .especialidade-tab.active {
    border-left: 0;

    border-bottom-color: #b99a6b;
  }

  .tab-content span {
    font-size: 21px;
  }

  .tab-content small {
    font-size: 7px;

    line-height: 1.4;
  }

  .especialidades-visual {
    min-height: 560px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .especialidades {
    padding: 90px 0 70px;
  }

  .especialidades-header {
    width: 88%;

    margin-bottom: 40px;
  }

  .especialidades-header h2 {
    font-size: 54px;

    letter-spacing: -1px;
  }

  .especialidades-header > p {
    font-size: 11px;

    line-height: 1.8;
  }

  .especialidades-layout {
    width: 100%;
  }

  .especialidades-menu {
    display: flex;

    flex-direction: row;

    overflow-x: auto;

    scrollbar-width: none;

    border-bottom: 1px solid rgba(23, 59, 53, 0.08);
  }

  .especialidades-menu::-webkit-scrollbar {
    display: none;
  }

  .especialidade-tab {
    flex: 0 0 145px;

    min-height: 85px;

    padding: 17px 18px;

    border-bottom: 2px solid transparent;
  }

  .especialidade-tab:hover,
  .especialidade-tab.active {
    padding-left: 18px;
  }

  .tab-content span {
    font-size: 22px;
  }

  .tab-content small {
    font-size: 7px;
  }

  .especialidades-visual {
    min-height: 500px;
  }

  .panel-content {
    left: 27px;

    right: 27px;

    bottom: 30px;
  }

  .panel-content h3 {
    font-size: 48px;
  }

  .panel-content p {
    font-size: 10px;

    line-height: 1.75;
  }

  .especialidades-footer {
    width: 88%;

    margin-top: 40px;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
  }
}

/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 420px) {
  .especialidades-header h2 {
    font-size: 48px;
  }

  .especialidades-visual {
    min-height: 470px;
  }

  .panel-content h3 {
    font-size: 43px;
  }
}
/* =========================================================
   PROCEDIMENTOS
========================================================= */

.procedimentos {
  position: relative;

  width: 100%;

  padding: 140px 0;

  background: #f4f0e9;

  overflow: hidden;
}

/* =========================================================
   DETALHE DECORATIVO
========================================================= */

.procedimentos::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -260px;
  top: -180px;

  border: 1px solid rgba(185, 154, 107, 0.15);

  border-radius: 50%;

  pointer-events: none;
}

/* =========================================================
   CONTAINER
========================================================= */

.procedimentos-container {
  position: relative;

  z-index: 2;

  width: min(1250px, 90%);

  margin: 0 auto;
}

/* =========================================================
   CABEÇALHO
========================================================= */

.procedimentos-heading {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  align-items: end;

  gap: 80px;

  margin-bottom: 70px;
}

.procedimentos-heading-left .section-eyebrow {
  display: block;

  margin-bottom: 20px;

  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: #a9824f;
}

.procedimentos-heading h2 {
  max-width: 700px;

  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(52px, 6vw, 78px);

  font-weight: 400;

  line-height: 0.92;

  letter-spacing: -2px;

  color: #9e9e9e;
}

.procedimentos-heading h2 span {
  display: block;

  color: #b99a6b;
}

.procedimentos-heading-right {
  padding-bottom: 5px;
}

.procedimentos-heading-right p {
  max-width: 400px;

  margin: 0;

  font-family: "Poppins", sans-serif;

  font-size: 12px;

  font-weight: 300;

  line-height: 1.9;

  color: #69736f;
}

/* =========================================================
   ÁREA PRINCIPAL
========================================================= */

.procedimentos-main {
  display: grid;

  grid-template-columns: 0.82fr 1.18fr;

  min-height: 650px;

  background: #9e9e9e;
}

/* =========================================================
   IMAGEM
========================================================= */

.procedimentos-visual {
  position: relative;

  min-height: 650px;

  overflow: hidden;
}

.procedimentos-visual img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 1s ease;
}

.procedimentos-visual:hover img {
  transform: scale(1.04);
}

/* =========================================================
   OVERLAY
========================================================= */

.procedimentos-visual-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(23, 59, 53, 0.02) 20%,
    rgba(23, 59, 53, 0.9) 100%
  );
}

/* =========================================================
   TEXTO DA IMAGEM
========================================================= */

.procedimentos-visual-text {
  position: absolute;

  left: 42px;
  right: 35px;

  bottom: 45px;

  z-index: 2;
}

.procedimentos-visual-text span {
  display: block;

  margin-bottom: 12px;

  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 500;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: #d8bb92;
}

.procedimentos-visual-text strong {
  display: block;

  font-family: "Cormorant Garamond", serif;

  font-size: 46px;

  font-weight: 400;

  line-height: 0.92;

  color: #fff;
}

/* =========================================================
   CONTEÚDO
========================================================= */

.procedimentos-content {
  padding: 28px 48px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

/* =========================================================
   GRUPO
========================================================= */

.procedimento-group {
  width: 100%;

  padding: 25px 0;

  border: 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.13);

  background: transparent;

  text-align: left;

  cursor: pointer;

  color: #fff;
}

.procedimento-group:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

/* =========================================================
   CABEÇALHO DO GRUPO
========================================================= */

.procedimento-group-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;
}

.procedimento-group-header small {
  display: block;

  margin-bottom: 5px;

  font-family: "Poppins", sans-serif;

  font-size: 7px;

  font-weight: 500;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #b99a6b;
}

.procedimento-group-header h3 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: 28px;

  font-weight: 400;

  line-height: 1.1;

  color: rgba(255, 255, 255, 0.88);

  transition: color 0.3s ease;
}

/* =========================================================
   ÍCONE
========================================================= */

.procedimento-icon {
  flex-shrink: 0;

  width: 32px;
  height: 32px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(216, 187, 146, 0.45);

  border-radius: 50%;

  font-family: "Poppins", sans-serif;

  font-size: 15px;

  font-weight: 300;

  color: #d8bb92;

  transition:
    transform 0.4s ease,
    background 0.3s ease,
    color 0.3s ease;
}

/* =========================================================
   HOVER
========================================================= */

.procedimento-group:hover .procedimento-group-header h3 {
  color: #d8bb92;
}

/* =========================================================
   ATIVO
========================================================= */

.procedimento-group.active .procedimento-group-header h3 {
  color: #d8bb92;
}

.procedimento-group.active .procedimento-icon {
  transform: rotate(45deg);

  background: #b99a6b;

  border-color: #b99a6b;

  color: #fff;
}

/* =========================================================
   CORPO
========================================================= */

.procedimento-group-body {
  display: grid;

  grid-template-rows: 0fr;

  transition: grid-template-rows 0.45s ease;
}

.procedimento-group.active .procedimento-group-body {
  grid-template-rows: 1fr;
}

/* =========================================================
   LISTA
========================================================= */

.procedimento-items {
  overflow: hidden;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 9px 25px;

  padding: 0;
}

.procedimento-group.active .procedimento-items {
  padding-top: 17px;
}

.procedimento-items span {
  position: relative;

  padding-left: 14px;

  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 300;

  line-height: 1.65;

  color: rgba(255, 255, 255, 0.56);
}

.procedimento-items span::before {
  content: "";

  position: absolute;

  left: 0;
  top: 7px;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #b99a6b;
}

/* =========================================================
   CHECK-UP
========================================================= */

.checkup-card {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 35px;

  margin-top: 30px;

  padding: 28px 30px;

  background: #b99a6b;
}

/* =========================================================
   CHECK-UP TEXTO
========================================================= */

.checkup-label {
  display: block;

  margin-bottom: 9px;

  font-family: "Poppins", sans-serif;

  font-size: 7px;

  font-weight: 500;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.72);
}

.checkup-content h3 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: 31px;

  font-weight: 400;

  line-height: 0.95;

  color: #fff;
}

.checkup-content h3 span {
  display: block;

  color: #f2e6d2;
}

.checkup-content p {
  margin-top: 13px;

  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 300;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
   LISTA CHECK-UP
========================================================= */

.checkup-list {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-content: center;

  gap: 10px 18px;
}

.checkup-list span {
  position: relative;

  padding-left: 12px;

  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 400;

  line-height: 1.5;

  color: #fff;
}

.checkup-list span::before {
  content: "";

  position: absolute;

  left: 0;
  top: 6px;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #9e9e9e;
}

/* =========================================================
   RODAPÉ
========================================================= */

.procedimentos-footer {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  margin-top: 65px;

  border-top: 1px solid #d8d3c9;
}

.procedimentos-footer > div {
  padding: 30px 35px 0;

  border-right: 1px solid #d8d3c9;
}

.procedimentos-footer > div:first-child {
  padding-left: 0;
}

.procedimentos-footer > div:last-child {
  border-right: none;
}

.procedimentos-footer strong {
  display: block;

  font-family: "Cormorant Garamond", serif;

  font-size: 24px;

  font-weight: 500;

  color: #9e9e9e;
}

.procedimentos-footer p {
  max-width: 270px;

  margin-top: 8px;

  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 300;

  line-height: 1.7;

  color: #7b8580;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {
  .procedimentos-heading {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .procedimentos-main {
    grid-template-columns: 1fr;
  }

  .procedimentos-visual {
    min-height: 480px;
  }

  .procedimentos-content {
    padding: 35px 40px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  .procedimentos {
    padding: 90px 0;
  }

  .procedimentos-container {
    width: 88%;
  }

  .procedimentos-heading {
    margin-bottom: 45px;
  }

  .procedimentos-heading h2 {
    font-size: 52px;

    letter-spacing: -1px;
  }

  .procedimentos-heading-right p {
    font-size: 11px;
  }

  .procedimentos-main {
    margin-left: -6.8%;
    margin-right: -6.8%;
  }

  .procedimentos-visual {
    min-height: 390px;
  }

  .procedimentos-visual-text {
    left: 27px;

    bottom: 30px;
  }

  .procedimentos-visual-text strong {
    font-size: 40px;
  }

  .procedimentos-content {
    padding: 15px 27px 30px;
  }

  .procedimento-group {
    padding: 21px 0;
  }

  .procedimento-group-header h3 {
    font-size: 23px;
  }

  .procedimento-group-header small {
    font-size: 6px;
  }

  .procedimento-icon {
    width: 27px;
    height: 27px;

    font-size: 13px;
  }

  .procedimento-items {
    grid-template-columns: 1fr;

    gap: 8px;
  }

  .procedimento-items span {
    font-size: 8.5px;
  }

  .checkup-card {
    grid-template-columns: 1fr;

    gap: 22px;

    padding: 25px 22px;
  }

  .checkup-content h3 {
    font-size: 29px;
  }

  .checkup-list {
    grid-template-columns: 1fr 1fr;
  }

  .checkup-list span {
    font-size: 8px;
  }

  .procedimentos-footer {
    grid-template-columns: 1fr;

    margin-top: 50px;
  }

  .procedimentos-footer > div {
    padding: 22px 0;

    border-right: none;

    border-bottom: 1px solid #d8d3c9;
  }

  .procedimentos-footer > div:last-child {
    border-bottom: none;
  }
}
/* =========================================================
   PROFISSIONAIS
========================================================= */

.profissionais {
  position: relative;

  width: 100%;

  padding: 140px 0;

  background: #9e9e9e;

  overflow: hidden;
}

/* =========================================================
   DETALHES DE FUNDO
========================================================= */

.profissionais::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  top: -250px;
  right: -180px;

  border: 1px solid rgba(216, 187, 146, 0.14);

  border-radius: 50%;
}

.profissionais::after {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  bottom: -450px;
  left: -350px;

  border: 1px solid rgba(216, 187, 146, 0.08);

  border-radius: 50%;
}

/* =========================================================
   CONTAINER
========================================================= */

.profissionais-container {
  position: relative;

  z-index: 2;

  width: min(1250px, 90%);

  margin: 0 auto;
}

/* =========================================================
   CABEÇALHO
========================================================= */

.profissionais-header {
  max-width: 680px;

  margin-bottom: 75px;
}

.profissionais-header .section-eyebrow {
  display: block;

  margin-bottom: 22px;

  font-family: "Poppins", sans-serif;

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 3px;

  color: #d8bb92;
}

.profissionais-header h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(48px, 5vw, 72px);

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -1px;

  color: #fff;
}

.profissionais-header h2 span {
  display: block;

  color: #d8bb92;
}

.profissionais-header p {
  max-width: 590px;

  margin-top: 25px;

  font-family: "Poppins", sans-serif;

  font-size: 13px;

  font-weight: 300;

  line-height: 1.9;

  color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   GRID
========================================================= */

.profissionais-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 35px;
}

/* =========================================================
   CARD
========================================================= */

.profissional-card {
  position: relative;

  display: grid;

  grid-template-columns: 42% 58%;

  min-height: 500px;

  background: #f7f5f0;

  overflow: hidden;

  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.profissional-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   ÁREA VISUAL
========================================================= */

.profissional-visual {
  position: relative;

  min-height: 500px;

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  /*background: linear-gradient(145deg, #244d45 0%, #9e9e9e 55%, #102e29 100%);*/
}

/* =========================================================
   SEGUNDO FUNDO
========================================================= */

.profissional-fabiano .profissional-visual {
  background:
    radial-gradient(
      circle at center,
      rgba(216, 187, 146, 0.15),
      transparent 55%
    ),
    #676969;
}

/* =========================================================
   CÍRCULOS DECORATIVOS
========================================================= */

.visual-decoration {
  position: absolute;

  width: 300px;
  height: 300px;

  border: 1px solid rgba(216, 187, 146, 0.25);

  border-radius: 50%;
}

.visual-decoration::before {
  content: "";

  position: absolute;

  inset: 25px;

  border: 1px solid rgba(216, 187, 146, 0.16);

  border-radius: 50%;
}

.visual-decoration::after {
  content: "";

  position: absolute;

  inset: 60px;

  border: 1px solid rgba(216, 187, 146, 0.12);

  border-radius: 50%;
}

/* =========================================================
   INICIAIS
========================================================= */

.professional-initials {
  position: relative;

  z-index: 2;

  width: 150px;
  height: 150px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(216, 187, 146, 0.6);

  border-radius: 50%;

  font-family: "Cormorant Garamond", serif;

  font-size: 58px;

  font-weight: 400;

  color: #d8bb92;
}

/* =========================================================
   LABEL
========================================================= */

.visual-label {
  position: absolute;

  left: 25px;
  bottom: 24px;

  display: flex;

  flex-direction: column;

  gap: 4px;
}

.visual-label span {
  font-family: "Poppins", sans-serif;

  font-size: 7px;

  letter-spacing: 2px;

  color: rgba(255, 255, 255, 0.75);
}

.visual-label small {
  font-family: "Poppins", sans-serif;

  font-size: 6px;

  letter-spacing: 1.5px;

  color: rgba(216, 187, 146, 0.7);
}

/* =========================================================
   INFORMAÇÕES
========================================================= */

.profissional-info {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 48px 42px;
}

.profissional-area {
  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 500;

  letter-spacing: 2px;

  line-height: 1.6;

  color: #a9824f;
}

.profissional-info h3 {
  margin-top: 18px;

  font-family: "Cormorant Garamond", serif;

  font-size: 42px;

  font-weight: 500;

  line-height: 1;

  color: #9e9e9e;
}

.profissional-title {
  margin-top: 9px;

  font-family: "Poppins", sans-serif;

  font-size: 11px;

  font-weight: 500;

  line-height: 1.6;

  color: #5d6965;
}

.profissional-description {
  margin-top: 22px;

  font-family: "Poppins", sans-serif;

  font-size: 11px;

  font-weight: 300;

  line-height: 1.8;

  color: #747d79;
}

/* =========================================================
   CREDENCIAIS
========================================================= */

.professional-credentials {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 25px;
}

.professional-credentials span {
  padding: 7px 10px;

  border: 1px solid #ddd8cf;

  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 400;

  color: #6d7772;
}

/* =========================================================
   LINHA DECORATIVA
========================================================= */

.profissional-info::after {
  content: "";

  width: 45px;
  height: 1px;

  margin-top: 28px;

  background: #b99a6b;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  .profissionais {
    padding: 110px 0;
  }

  .profissionais-grid {
    grid-template-columns: 1fr;
  }

  .profissional-card {
    grid-template-columns: 38% 62%;
  }
}

/* =========================================================
   TABLET PEQUENO
========================================================= */

@media (max-width: 700px) {
  .profissionais {
    padding: 90px 0;
  }

  .profissionais-container {
    width: 88%;
  }

  .profissionais-header {
    margin-bottom: 50px;
  }

  .profissionais-header h2 {
    font-size: 52px;
  }

  .profissionais-header p {
    font-size: 12px;
  }

  .profissional-card {
    grid-template-columns: 1fr;

    min-height: auto;
  }

  .profissional-visual {
    min-height: 330px;
  }

  .professional-initials {
    width: 125px;
    height: 125px;

    font-size: 48px;
  }

  .profissional-info {
    padding: 38px 30px 42px;
  }

  .profissional-info h3 {
    font-size: 38px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {
  .profissionais {
    padding: 80px 0;
  }

  .profissionais-header h2 {
    font-size: 46px;
  }

  .profissionais-header p {
    font-size: 11px;

    line-height: 1.8;
  }

  .profissional-visual {
    min-height: 290px;
  }

  .visual-decoration {
    width: 230px;
    height: 230px;
  }

  .professional-initials {
    width: 110px;
    height: 110px;

    font-size: 42px;
  }

  .profissional-info {
    padding: 32px 25px 38px;
  }

  .profissional-area {
    font-size: 7px;

    letter-spacing: 1.6px;
  }

  .profissional-info h3 {
    font-size: 35px;
  }

  .profissional-description {
    font-size: 10px;
  }

  .professional-credentials span {
    font-size: 7px;

    padding: 6px 8px;
  }
}
/* =========================================================
   ANIMAÇÃO DE ENTRADA
========================================================= */

.profissional-card {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    box-shadow 0.5s ease;
}

.profissional-card.visible {
  opacity: 1;

  transform: translateY(0);
}

.profissional-card.visible:hover {
  transform: translateY(-7px);
}
/* =========================================================
   CHECK-UP
========================================================= */

.checkup {
  position: relative;

  width: 100%;

  padding: 140px 0;

  background: #faf9f6;

  overflow: hidden;
}

/* =========================================================
   CONTAINER
========================================================= */

.checkup-container {
  width: min(1250px, 90%);

  margin: 0 auto;

  display: grid;

  grid-template-columns: 0.82fr 1.18fr;

  gap: 90px;

  align-items: center;
}

/* =========================================================
   IMAGEM
========================================================= */

.checkup-image {
  position: relative;

  height: 700px;

  overflow: hidden;

  background: #e5e0d7;
}

.checkup-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 1s ease;
}

.checkup-image:hover img {
  transform: scale(1.035);
}

/* =========================================================
   OVERLAY DA IMAGEM
========================================================= */

.checkup-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(23, 59, 53, 0.72),
    rgba(23, 59, 53, 0.05) 55%
  );
}

/* =========================================================
   LABEL DA IMAGEM
========================================================= */

.checkup-image-label {
  position: absolute;

  z-index: 2;

  left: 30px;
  bottom: 30px;

  display: flex;

  flex-direction: column;

  gap: 6px;
}

.checkup-image-label span {
  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 500;

  letter-spacing: 2.5px;

  color: #d8bb92;
}

.checkup-image-label strong {
  font-family: "Cormorant Garamond", serif;

  font-size: 30px;

  font-weight: 400;

  color: #fff;
}

/* =========================================================
   CONTEÚDO
========================================================= */

.checkup-content {
  padding: 10px 0;
}

.checkup-content .section-eyebrow {
  display: block;

  margin-bottom: 20px;

  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 3px;

  color: #a9824f;
}

/* =========================================================
   TÍTULO
========================================================= */

.checkup-content h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(50px, 5vw, 72px);

  font-weight: 400;

  line-height: 0.96;

  letter-spacing: -1px;

  color: #9e9e9e;
}

.checkup-content h2 span {
  display: block;

  color: #b99a6b;
}

/* =========================================================
   INTRODUÇÃO
========================================================= */

.checkup-intro {
  max-width: 590px;

  margin-top: 25px;

  font-family: "Poppins", sans-serif;

  font-size: 13px;

  font-weight: 300;

  line-height: 1.9;

  color: #68736f;
}

/* =========================================================
   LISTA
========================================================= */

.checkup-list {
  margin-top: 42px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  column-gap: 30px;

  border-top: 1px solid #ddd9d1;
}

/* =========================================================
   ITEM
========================================================= */

.checkup-item {
  display: flex;

  gap: 15px;

  padding: 21px 0;

  border-bottom: 1px solid #ddd9d1;
}

.checkup-icon {
  flex-shrink: 0;

  width: 27px;
  height: 27px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #c8b28f;

  border-radius: 50%;

  font-family: "Poppins", sans-serif;

  font-size: 7px;

  color: #a9824f;
}

.checkup-item strong {
  display: block;

  font-family: "Cormorant Garamond", serif;

  font-size: 20px;

  font-weight: 500;

  line-height: 1.1;

  color: #9e9e9e;
}

.checkup-item p {
  margin-top: 6px;

  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 300;

  line-height: 1.6;

  color: #818985;
}

/* =========================================================
   AÇÃO
========================================================= */

.checkup-action {
  margin-top: 35px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;
}

/* =========================================================
   OBSERVAÇÃO
========================================================= */

.checkup-note {
  display: flex;

  align-items: center;

  gap: 10px;
}

.checkup-note span {
  width: 6px;
  height: 6px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #b99a6b;
}

.checkup-note p {
  max-width: 250px;

  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 300;

  line-height: 1.6;

  color: #858d89;
}

/* =========================================================
   BOTÃO
========================================================= */

.checkup-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 15px;

  padding: 14px 21px;

  background: #9e9e9e;

  border: 1px solid #9e9e9e;

  color: #fff;

  font-family: "Poppins", sans-serif;

  font-size: 10px;

  font-weight: 500;

  text-decoration: none;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.checkup-button span {
  font-size: 16px;

  line-height: 1;

  transition: transform 0.3s ease;
}

.checkup-button:hover {
  background: #b99a6b;

  border-color: #b99a6b;

  transform: translateY(-2px);
}

.checkup-button:hover span {
  transform: translate(3px, -3px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  .checkup {
    padding: 110px 0;
  }

  .checkup-container {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  .checkup-image {
    height: 560px;

    width: 75%;
  }

  .checkup-content {
    max-width: 850px;
  }
}

/* =========================================================
   TABLET PEQUENO
========================================================= */

@media (max-width: 700px) {
  .checkup {
    padding: 90px 0;
  }

  .checkup-container {
    width: 88%;
  }

  .checkup-image {
    width: 100%;

    height: 480px;
  }

  .checkup-content h2 {
    font-size: 53px;
  }

  .checkup-list {
    grid-template-columns: 1fr;

    margin-top: 35px;
  }

  .checkup-action {
    align-items: flex-start;

    flex-direction: column;
  }

  .checkup-button {
    width: 100%;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {
  .checkup {
    padding: 80px 0;
  }

  .checkup-image {
    height: 400px;
  }

  .checkup-image-label {
    left: 22px;
    bottom: 22px;
  }

  .checkup-image-label strong {
    font-size: 27px;
  }

  .checkup-content h2 {
    font-size: 46px;
  }

  .checkup-intro {
    font-size: 11px;

    line-height: 1.8;
  }

  .checkup-item {
    gap: 12px;

    padding: 18px 0;
  }

  .checkup-item strong {
    font-size: 19px;
  }

  .checkup-item p {
    font-size: 8px;
  }
}
/* =========================================================
   ENTRADA DA SEÇÃO
========================================================= */

.checkup-image,
.checkup-content {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.checkup-content {
  transition-delay: 0.15s;
}

.checkup-visible .checkup-image,
.checkup-visible .checkup-content {
  opacity: 1;

  transform: translateY(0);
}
/* =========================================================
   CONTATO
========================================================= */

.contato {
  position: relative;

  width: 100%;

  padding: 130px 0 45px;

  background: #9e9e9e;

  overflow: hidden;
}

/* =========================================================
   DETALHE DE FUNDO
========================================================= */

.contato::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -220px;
  top: -260px;

  border: 1px solid rgba(216, 187, 146, 0.12);

  border-radius: 50%;
}

.contato::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  left: -210px;
  bottom: -200px;

  border: 1px solid rgba(216, 187, 146, 0.08);

  border-radius: 50%;
}

/* =========================================================
   CONTAINER
========================================================= */

.contato-container {
  position: relative;

  z-index: 2;

  width: min(1250px, 90%);

  margin: 0 auto;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 85px;

  align-items: center;
}

/* =========================================================
   CONTEÚDO
========================================================= */

.contato-content {
  color: #fff;
}

.contato-eyebrow {
  display: block;

  margin-bottom: 22px;

  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 3px;

  color: #d8bb92;
}

/* =========================================================
   TÍTULO
========================================================= */

.contato-content h2 {
  max-width: 520px;

  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(50px, 5vw, 70px);

  font-weight: 400;

  line-height: 0.96;

  letter-spacing: -1px;

  color: #fff;
}

.contato-content h2 span {
  display: block;

  color: #d8bb92;
}

/* =========================================================
   INTRO
========================================================= */

.contato-intro {
  max-width: 500px;

  margin-top: 25px;

  font-family: "Poppins", sans-serif;

  font-size: 12px;

  font-weight: 300;

  line-height: 1.9;

  color: rgba(255, 255, 255, 0.68);
}

/* =========================================================
   INFORMAÇÕES
========================================================= */

.contato-info {
  margin-top: 42px;

  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

/* =========================================================
   ITEM
========================================================= */

.contato-item {
  display: flex;

  align-items: center;

  gap: 17px;

  padding: 20px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.13);

  text-decoration: none;

  color: inherit;

  transition: 0.3s ease;
}

.contato-item:hover {
  padding-left: 7px;
}

/* =========================================================
   ÍCONE
========================================================= */

.contato-icon {
  width: 40px;
  height: 40px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(216, 187, 146, 0.4);

  border-radius: 50%;

  transition: 0.3s ease;
}

.contato-item:hover .contato-icon {
  background: #b99a6b;

  border-color: #b99a6b;
}

.contato-icon svg {
  width: 17px;
  height: 17px;

  fill: #d8bb92;
}

.contato-item:hover .contato-icon svg {
  fill: #fff;
}

/* =========================================================
   TEXTO
========================================================= */

.contato-item small {
  display: block;

  margin-bottom: 5px;

  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 400;

  letter-spacing: 1.3px;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.42);
}

.contato-item strong {
  display: block;

  font-family: "Poppins", sans-serif;

  font-size: 12px;

  font-weight: 400;

  line-height: 1.5;

  color: #fff;
}

.contato-item strong span {
  display: block;

  color: rgba(255, 255, 255, 0.62);

  font-size: 10px;

  font-weight: 300;
}

/* =========================================================
   WHATSAPP
========================================================= */

.contato-whatsapp {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 32px;

  padding: 14px 20px;

  background: #fff;

  border: 1px solid #fff;

  color: #9e9e9e;

  text-decoration: none;

  font-family: "Poppins", sans-serif;

  font-size: 10px;

  font-weight: 500;

  transition: 0.3s ease;
}

.contato-whatsapp svg {
  width: 18px;
  height: 18px;

  fill: currentColor;
}

.contato-whatsapp strong {
  margin-left: 8px;

  font-size: 15px;

  font-weight: 400;

  transition: transform 0.3s ease;
}

.contato-whatsapp:hover {
  background: #b99a6b;

  border-color: #b99a6b;

  color: #fff;

  transform: translateY(-2px);
}

.contato-whatsapp:hover strong {
  transform: translate(3px, -3px);
}

/* =========================================================
   MAPA
========================================================= */

.contato-map {
  position: relative;

  padding: 15px;

  background: #f4f1eb;
}

/* =========================================================
   CABEÇALHO DO MAPA
========================================================= */

.map-header {
  min-height: 72px;

  padding: 12px 10px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

.map-header span {
  display: block;

  margin-bottom: 5px;

  font-family: "Poppins", sans-serif;

  font-size: 7px;

  letter-spacing: 2px;

  color: #a9824f;
}

.map-header strong {
  display: block;

  font-family: "Cormorant Garamond", serif;

  font-size: 25px;

  font-weight: 500;

  color: #9e9e9e;
}

.map-header a {
  font-family: "Poppins", sans-serif;

  font-size: 9px;

  color: #9e9e9e;

  text-decoration: none;

  border-bottom: 1px solid #b99a6b;

  padding-bottom: 4px;

  white-space: nowrap;

  transition: 0.3s ease;
}

.map-header a:hover {
  color: #a9824f;
}

/* =========================================================
   MAPA
========================================================= */

.map-frame {
  width: 100%;

  height: 500px;

  overflow: hidden;

  background: #ddd;
}

.map-frame iframe {
  width: 100%;
  height: 100%;

  border: 0;

  display: block;

  filter: saturate(0.75);
}

/* =========================================================
   RODAPÉ DA SEÇÃO
========================================================= */

.contato-bottom {
  position: relative;

  z-index: 2;

  width: min(1250px, 90%);

  margin: 90px auto 0;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 18px;
}

.contato-bottom span {
  width: 25px;
  height: 1px;

  background: #b99a6b;
}

.contato-bottom p {
  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 300;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.42);

  text-align: center;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .contato {
    padding: 105px 0 40px;
  }

  .contato-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .contato-content {
    max-width: 750px;
  }

  .contato-map {
    width: 100%;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .contato {
    padding: 85px 0 35px;
  }

  .contato-container {
    width: 88%;

    gap: 45px;
  }

  .contato-content h2 {
    font-size: 50px;
  }

  .contato-intro {
    font-size: 11px;
  }

  .contato-info {
    margin-top: 32px;
  }

  .contato-item {
    padding: 17px 0;
  }

  .contato-icon {
    width: 37px;
    height: 37px;
  }

  .contato-map {
    padding: 10px;
  }

  .map-header {
    min-height: 65px;
  }

  .map-header strong {
    font-size: 22px;
  }

  .map-frame {
    height: 370px;
  }

  .contato-whatsapp {
    width: 100%;

    justify-content: center;
  }

  .contato-bottom {
    width: 88%;

    margin-top: 65px;

    gap: 10px;
  }

  .contato-bottom p {
    font-size: 6px;

    letter-spacing: 1px;
  }
}
/* =========================================================
   REDES SOCIAIS
========================================================= */

.social {
  position: relative;

  width: 100%;

  padding: 130px 0;

  background: #f1eee8;

  overflow: hidden;
}

/* =========================================================
   DETALHES DECORATIVOS
========================================================= */

.social::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  right: -220px;
  top: -220px;

  border: 1px solid rgba(185, 154, 107, 0.18);

  border-radius: 50%;
}

.social::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  left: -160px;
  bottom: -160px;

  border: 1px solid rgba(23, 59, 53, 0.08);

  border-radius: 50%;
}

/* =========================================================
   CONTAINER
========================================================= */

.social-container {
  position: relative;

  z-index: 2;

  width: min(1050px, 90%);

  margin: 0 auto;
}

/* =========================================================
   CABEÇALHO
========================================================= */

.social-heading {
  max-width: 680px;

  margin: 0 auto;

  text-align: center;
}

.social-heading .section-eyebrow {
  display: block;

  margin-bottom: 20px;

  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 3px;

  color: #a9824f;
}

.social-heading h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(48px, 5vw, 68px);

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -1px;

  color: #9e9e9e;
}

.social-heading h2 span {
  display: block;

  color: #b99a6b;
}

.social-heading > p {
  max-width: 550px;

  margin: 25px auto 0;

  font-family: "Poppins", sans-serif;

  font-size: 12px;

  font-weight: 300;

  line-height: 1.9;

  color: #707a76;
}

/* =========================================================
   PERFIS
========================================================= */

.social-profiles {
  margin-top: 65px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;
}

/* =========================================================
   CARD PERFIL
========================================================= */

.social-profile {
  position: relative;

  min-height: 150px;

  padding: 28px;

  display: flex;

  align-items: center;

  gap: 20px;

  background: #faf9f6;

  border: 1px solid #ded9d0;

  text-decoration: none;

  color: inherit;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.social-profile:hover {
  transform: translateY(-6px);

  background: #9e9e9e;

  border-color: #9e9e9e;

  box-shadow: 0 22px 45px rgba(23, 59, 53, 0.15);
}

/* =========================================================
   ÍCONE INSTAGRAM
========================================================= */

.social-profile-icon {
  width: 52px;
  height: 52px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #b99a6b;

  border-radius: 50%;

  transition:
    background 0.4s ease,
    border-color 0.4s ease;
}

.social-profile-icon svg {
  width: 21px;
  height: 21px;

  fill: none;

  stroke: #a9824f;

  stroke-width: 1.5;

  transition: stroke 0.4s ease;
}

.social-profile:hover .social-profile-icon {
  background: #b99a6b;

  border-color: #b99a6b;
}

.social-profile:hover .social-profile-icon svg {
  stroke: #fff;
}

/* =========================================================
   INFORMAÇÕES
========================================================= */

.social-profile-info {
  min-width: 0;
}

.social-profile-info span {
  display: block;

  margin-bottom: 5px;

  font-family: "Poppins", sans-serif;

  font-size: 7px;

  font-weight: 500;

  letter-spacing: 2px;

  color: #a9824f;

  transition: color 0.4s ease;
}

.social-profile-info strong {
  display: block;

  font-family: "Cormorant Garamond", serif;

  font-size: 27px;

  font-weight: 500;

  line-height: 1;

  color: #9e9e9e;

  transition: color 0.4s ease;
}

.social-profile-info p {
  margin-top: 8px;

  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 300;

  color: #818985;

  transition: color 0.4s ease;
}

/* =========================================================
   HOVER TEXTO
========================================================= */

.social-profile:hover .social-profile-info span {
  color: #d8bb92;
}

.social-profile:hover .social-profile-info strong {
  color: #fff;
}

.social-profile:hover .social-profile-info p {
  color: rgba(255, 255, 255, 0.55);
}

/* =========================================================
   SETA
========================================================= */

.social-arrow {
  position: absolute;

  right: 25px;
  top: 25px;

  font-family: "Poppins", sans-serif;

  font-size: 18px;

  font-weight: 300;

  color: #b99a6b;

  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.social-profile:hover .social-arrow {
  color: #d8bb92;

  transform: translate(3px, -3px);
}

/* =========================================================
   FRASE FINAL
========================================================= */

.social-instagram {
  margin-top: 60px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 18px;
}

.social-instagram-line {
  width: 35px;
  height: 1px;

  background: #c8bda9;
}

.social-instagram p {
  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 400;

  letter-spacing: 1.8px;

  text-transform: uppercase;

  color: #8a8174;

  text-align: center;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 750px) {
  .social {
    padding: 100px 0;
  }

  .social-container {
    width: 88%;
  }

  .social-profiles {
    grid-template-columns: 1fr;

    gap: 16px;

    margin-top: 50px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {
  .social {
    padding: 85px 0;
  }

  .social-heading h2 {
    font-size: 48px;
  }

  .social-heading > p {
    font-size: 11px;
  }

  .social-profile {
    min-height: 135px;

    padding: 22px;

    gap: 15px;
  }

  .social-profile-icon {
    width: 45px;
    height: 45px;
  }

  .social-profile-icon svg {
    width: 18px;
    height: 18px;
  }

  .social-profile-info strong {
    font-size: 23px;
  }

  .social-profile-info p {
    font-size: 7px;
  }

  .social-arrow {
    right: 17px;
    top: 17px;
  }

  .social-instagram {
    gap: 10px;
  }

  .social-instagram-line {
    width: 20px;
  }

  .social-instagram p {
    font-size: 6px;
    letter-spacing: 1px;
  }
}
/* =========================================================
   ANIMAÇÃO DE ENTRADA
========================================================= */

.social-heading,
.social-profile,
.social-instagram {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.social-profile:nth-child(2) {
  transition-delay: 0.12s;
}

.social-instagram {
  transition-delay: 0.25s;
}

.social-visible .social-heading,
.social-visible .social-profile,
.social-visible .social-instagram {
  opacity: 1;

  transform: translateY(0);
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;

  width: 100%;

  background: #9e9e9e;

  color: #fff;

  overflow: hidden;
}

/* =========================================================
   DETALHES
========================================================= */

.site-footer::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -280px;
  top: -300px;

  border: 1px solid rgba(216, 187, 146, 0.08);

  border-radius: 50%;

  pointer-events: none;
}

.site-footer::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  left: -200px;
  bottom: -220px;

  border: 1px solid rgba(216, 187, 146, 0.06);

  border-radius: 50%;

  pointer-events: none;
}

/* =========================================================
   CONTAINER
========================================================= */

.footer-container {
  position: relative;

  z-index: 2;

  width: min(1250px, 90%);

  margin: 0 auto;

  padding: 85px 0 70px;

  display: grid;

  grid-template-columns: 1.45fr 0.8fr 1fr 1fr;

  gap: 65px;
}

/* =========================================================
   MARCA
========================================================= */

.footer-brand {
  max-width: 330px;
}

.footer-logo {
  display: inline-flex;

  align-items: center;

  gap: 13px;

  text-decoration: none;

  color: #fff;
}

.footer-logo-symbol {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #b99a6b;

  border-radius: 50%;

  font-family: "Cormorant Garamond", serif;

  font-size: 28px;

  font-weight: 500;

  color: #d8bb92;
}

.footer-logo-text {
  display: flex;

  flex-direction: column;

  gap: 5px;
}

.footer-logo-text strong {
  font-family: "Cormorant Garamond", serif;

  font-size: 27px;

  font-weight: 600;

  letter-spacing: 4px;

  line-height: 1;

  color: #fff;
}

.footer-logo-text span {
  font-family: "Poppins", sans-serif;

  font-size: 6px;

  font-weight: 400;

  letter-spacing: 1.8px;

  color: rgba(255, 255, 255, 0.42);
}

.footer-brand > p {
  margin-top: 25px;

  max-width: 290px;

  font-family: "Poppins", sans-serif;

  font-size: 10px;

  font-weight: 300;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   REDES
========================================================= */

.footer-social {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 25px;
}

.footer-social a {
  width: 37px;
  height: 37px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(216, 187, 146, 0.3);

  border-radius: 50%;

  color: #d8bb92;

  text-decoration: none;

  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #b99a6b;

  border-color: #b99a6b;

  color: #fff;

  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px;
  height: 16px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.5;
}

.footer-social-text {
  font-family: "Cormorant Garamond", serif;

  font-size: 15px;

  font-style: italic;
}

/* =========================================================
   COLUNAS
========================================================= */

.footer-column h3 {
  margin: 4px 0 22px;

  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 500;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #d8bb92;
}

.footer-column nav {
  display: flex;

  flex-direction: column;

  gap: 11px;
}

.footer-column nav a {
  width: fit-content;

  position: relative;

  font-family: "Poppins", sans-serif;

  font-size: 10px;

  font-weight: 300;

  color: rgba(255, 255, 255, 0.58);

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-column nav a:hover {
  color: #fff;

  transform: translateX(4px);
}

/* =========================================================
   CONTATO
========================================================= */

.footer-contact {
  display: flex;

  flex-direction: column;
}

.footer-contact-item {
  display: block;

  margin-bottom: 20px;

  text-decoration: none;

  color: inherit;
}

.footer-contact-item > span {
  display: block;

  margin-bottom: 5px;

  font-family: "Poppins", sans-serif;

  font-size: 7px;

  font-weight: 400;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.35);
}

.footer-contact-item strong {
  display: block;

  font-family: "Poppins", sans-serif;

  font-size: 10px;

  font-weight: 400;

  line-height: 1.5;

  color: rgba(255, 255, 255, 0.7);

  transition: color 0.3s ease;
}

.footer-contact-item:hover strong {
  color: #d8bb92;
}

.footer-contact-item small {
  display: block;

  font-size: 9px;

  font-weight: 300;

  color: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   CTA
========================================================= */

.footer-cta {
  position: relative;

  z-index: 2;

  width: min(1250px, 90%);

  margin: 0 auto;

  padding: 32px 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta > div {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.footer-cta > div span {
  font-family: "Poppins", sans-serif;

  font-size: 7px;

  font-weight: 500;

  letter-spacing: 2px;

  color: #b99a6b;
}

.footer-cta > div strong {
  font-family: "Cormorant Garamond", serif;

  font-size: 26px;

  font-weight: 400;

  color: #fff;
}

/* =========================================================
   BOTÃO WHATSAPP
========================================================= */

.footer-whatsapp {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 13px 20px;

  background: #fff;

  border: 1px solid #fff;

  color: #9e9e9e;

  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 500;

  text-decoration: none;

  transition: 0.3s ease;
}

.footer-whatsapp svg {
  width: 17px;
  height: 17px;

  fill: currentColor;
}

.footer-whatsapp > span {
  margin-left: 7px;

  font-size: 15px;

  transition: transform 0.3s ease;
}

.footer-whatsapp:hover {
  background: #b99a6b;

  border-color: #b99a6b;

  color: #fff;

  transform: translateY(-2px);
}

.footer-whatsapp:hover > span {
  transform: translate(3px, -3px);
}

/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom {
  position: relative;

  z-index: 2;

  width: min(1250px, 90%);

  margin: 0 auto;

  padding: 22px 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

.footer-bottom p {
  font-family: "Poppins", sans-serif;

  font-size: 7px;

  font-weight: 300;

  line-height: 1.6;

  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom p:last-child {
  text-align: right;

  letter-spacing: 0.8px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1.2fr 1fr 1fr;

    gap: 45px;
  }

  .footer-brand {
    grid-column: span 3;

    max-width: 500px;
  }
}

/* =========================================================
   TABLET PEQUENO
========================================================= */

@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);

    gap: 45px 30px;

    padding: 70px 0 55px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-cta {
    align-items: flex-start;

    flex-direction: column;
  }

  .footer-whatsapp {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;

    flex-direction: column;

    padding: 20px 0 25px;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {
  .footer-container {
    width: 88%;

    grid-template-columns: 1fr;

    gap: 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo-text strong {
    font-size: 24px;

    letter-spacing: 3px;
  }

  .footer-logo-text span {
    font-size: 5px;
  }

  .footer-brand > p {
    font-size: 9px;
  }

  .footer-column h3 {
    margin-bottom: 18px;
  }

  .footer-cta {
    width: 88%;
  }

  .footer-cta > div strong {
    font-size: 24px;
  }

  .footer-bottom {
    width: 88%;
  }
}
/* =========================================================
   ANIMAÇÃO FOOTER
========================================================= */

.footer-brand,
.footer-column,
.footer-cta {
  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.footer-column:nth-child(2) {
  transition-delay: 0.08s;
}

.footer-column:nth-child(3) {
  transition-delay: 0.16s;
}

.footer-column:nth-child(4) {
  transition-delay: 0.24s;
}

.footer-cta {
  transition-delay: 0.3s;
}

.footer-visible .footer-brand,
.footer-visible .footer-column,
.footer-visible .footer-cta {
  opacity: 1;

  transform: translateY(0);
}
/* =========================================================
   PROFISSIONAIS
========================================================= */

.profissionais {
  position: relative;

  width: 100%;

  padding: 140px 0;

  background: #9e9e9e;

  overflow: hidden;
}

/* =========================================================
   DETALHES DECORATIVOS
========================================================= */

.profissionais::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -220px;
  top: -220px;

  border: 1px solid rgba(216, 187, 146, 0.16);

  border-radius: 50%;
}

.profissionais::after {
  content: "";

  position: absolute;

  width: 380px;
  height: 380px;

  left: -220px;
  bottom: -180px;

  border: 1px solid rgba(216, 187, 146, 0.1);

  border-radius: 50%;
}

/* =========================================================
   CONTAINER
========================================================= */

.profissionais-container {
  position: relative;

  z-index: 2;

  width: min(1250px, 90%);

  margin: 0 auto;
}

/* =========================================================
   CABEÇALHO
========================================================= */

.profissionais-header {
  max-width: 720px;

  margin-bottom: 75px;
}

.profissionais-header .section-eyebrow {
  display: block;

  margin-bottom: 22px;

  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 3px;

  color: #d8bb92;
}

.profissionais-header h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(50px, 5vw, 72px);

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -1px;

  color: #fff;
}

.profissionais-header h2 span {
  display: block;

  color: #d8bb92;
}

.profissionais-header p {
  max-width: 610px;

  margin-top: 27px;

  font-family: "Poppins", sans-serif;

  font-size: 13px;

  font-weight: 300;

  line-height: 1.9;

  color: rgba(255, 255, 255, 0.68);
}

/* =========================================================
   GRID
========================================================= */

.profissionais-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 28px;
}

/* =========================================================
   CARD
========================================================= */

.profissional-card {
  position: relative;

  background: #faf9f6;

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.profissional-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   VISUAL
========================================================= */

.profissional-visual {
  position: relative;

  overflow: hidden;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at center,
      rgba(216, 187, 146, 0.15),
      transparent 55%
    ),
    #676969;
}

/* =========================================================
   VARIAÇÃO FABIANO
========================================================= */

.profissional-fabiano .profissional-visual {
  background:
    radial-gradient(
      circle at center,
      rgba(216, 187, 146, 0.15),
      transparent 55%
    ),
    #676969;
}

/* =========================================================
   DECORAÇÃO
========================================================= */

.visual-decoration {
  position: absolute;

  width: 250px;
  height: 250px;

  border: 1px solid rgba(216, 187, 146, 0.35);

  border-radius: 50%;

  transition:
    transform 0.8s ease,
    opacity 0.5s ease;
}

.profissional-card:hover .visual-decoration {
  transform: scale(1.12);

  opacity: 0.8;
}

.visual-decoration::before {
  content: "";

  position: absolute;

  inset: 22px;

  border: 1px solid rgba(216, 187, 146, 0.18);

  border-radius: 50%;
}

/* =========================================================
   INICIAIS
========================================================= */

.professional-initials {
  position: relative;

  z-index: 2;

  font-family: "Cormorant Garamond", serif;

  font-size: 105px;

  font-weight: 400;

  letter-spacing: -4px;

  color: rgba(255, 255, 255, 0.92);

  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   LABEL VISUAL
========================================================= */

.visual-label {
  position: absolute;

  left: 28px;
  bottom: 25px;

  display: flex;

  flex-direction: column;

  gap: 5px;

  color: #fff;
}

.visual-label span {
  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 2.5px;
}

.visual-label small {
  font-family: "Poppins", sans-serif;

  font-size: 7px;

  font-weight: 300;

  letter-spacing: 1.8px;

  color: rgba(255, 255, 255, 0.55);
}

/* =========================================================
   INFORMAÇÕES
========================================================= */

.profissional-info {
  padding: 38px 38px 42px;
}

.profissional-area {
  display: block;

  margin-bottom: 15px;

  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 500;

  letter-spacing: 2px;

  color: #a9824f;
}

.profissional-info h3 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: 39px;

  font-weight: 500;

  line-height: 1;

  color: #9e9e9e;
}

.profissional-title {
  margin-top: 9px;

  font-family: "Poppins", sans-serif;

  font-size: 11px;

  font-weight: 500;

  color: #53615d;
}

.profissional-description {
  margin-top: 20px;

  font-family: "Poppins", sans-serif;

  font-size: 11px;

  font-weight: 300;

  line-height: 1.8;

  color: #707a76;
}

/* =========================================================
   CREDENCIAIS
========================================================= */

.professional-credentials {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 26px;

  padding-top: 22px;

  border-top: 1px solid #e3dfd7;
}

.credential {
  display: flex;

  flex-direction: column;

  gap: 3px;

  min-width: 90px;

  padding-right: 16px;

  border-right: 1px solid #ddd8ce;
}

.credential:last-child {
  border-right: none;
}

.credential strong {
  font-family: "Poppins", sans-serif;

  font-size: 7px;

  font-weight: 600;

  letter-spacing: 1.2px;

  color: #a9824f;
}

.credential span {
  font-family: "Poppins", sans-serif;

  font-size: 9px;

  font-weight: 400;

  color: #4c5955;
}

/* =========================================================
   FORMAÇÃO
========================================================= */

.professional-formation {
  margin-top: 28px;

  padding-top: 25px;

  border-top: 1px solid #e3dfd7;
}

.formation-label {
  display: block;

  margin-bottom: 14px;

  font-family: "Poppins", sans-serif;

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 1.8px;

  color: #9e9e9e;
}

.professional-formation ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

.professional-formation li {
  position: relative;

  padding-left: 15px;

  margin-bottom: 9px;

  font-family: "Poppins", sans-serif;

  font-size: 10px;

  font-weight: 300;

  line-height: 1.55;

  color: #737c78;
}

.professional-formation li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 7px;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #b99a6b;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .profissionais {
    padding: 110px 0;
  }

  .profissionais-grid {
    grid-template-columns: 1fr;
  }

  .profissional-card {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;
  }

  .profissional-visual {
    height: 100%;
    min-height: 520px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .profissionais {
    padding: 90px 0;
  }

  .profissionais-container {
    width: 88%;
  }

  .profissionais-header {
    margin-bottom: 50px;
  }

  .profissionais-header h2 {
    font-size: 51px;
  }

  .profissionais-header p {
    font-size: 12px;

    line-height: 1.8;
  }

  .profissionais-grid {
    display: flex;

    flex-direction: column;

    gap: 25px;
  }

  .profissional-card {
    display: block;
  }

  .profissional-visual {
    height: 290px;
    min-height: 0;
  }

  .professional-initials {
    font-size: 85px;
  }

  .visual-decoration {
    width: 210px;
    height: 210px;
  }

  .profissional-info {
    padding: 32px 25px 35px;
  }

  .profissional-info h3 {
    font-size: 34px;
  }

  .profissional-description {
    font-size: 11px;
  }

  .professional-credentials {
    gap: 14px;
  }

  .credential {
    min-width: auto;

    padding-right: 14px;
  }
}

/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 420px) {
  .profissional-visual {
    height: 260px;
  }

  .professional-initials {
    font-size: 75px;
  }

  .profissional-info h3 {
    font-size: 31px;
  }

  .professional-credentials {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
  }

  .credential {
    border-right: none;

    padding: 0;
  }
}
