/* =========================
   Fonts
   ========================= */
@font-face {
  font-family: "Ashley Light";
  src: url("assets/fonts/Ashley-Light.otf") format("opentype"),
    url("assets/fonts/Ashley-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* =========================
   Reset / Base
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ashley Light", "Playfair Display", serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --hero-top-padding: 100px;
}

body {
  background: #0e2a36;
  color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   Header / Nav
   ========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateZ(0);
  will-change: transform;
  background: rgba(37, 37, 37, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 18px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 35px;
  object-fit: contain;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #dbc48d;
  font-weight: 400;
  transition: 0.3s;
  font-size: 20px;
}

.nav a:hover {
  color: #fff;
}

.btn-header {
  background: #c04a2c;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fbfbf5;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  margin-left: 60px;
  font-size: 20px;
}

.btn-header:hover {
  opacity: 0.85;
}

.menu-checkbox {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #dbc48d;
  transition: transform 0.35s ease, opacity 0.2s ease;
  border-radius: 2px;
  transform-origin: center;
}

.menu-checkbox:checked + .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-checkbox:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-checkbox:checked + .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-block;
}

/* =========================
   Hero
   ========================= */
.hero {
  height: 100svh;
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(
      90deg,
      rgba(6, 30, 40, 0.95) 35%,
      rgba(6, 30, 40, 0.6) 55%,
      rgba(6, 30, 40, 0.2) 75%
    ),
    url("assets/fundo - gleyce.png") no-repeat right center;
  background-size: cover;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: var(--hero-top-padding);
  box-sizing: border-box;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-text h1 {
  font-weight: 300;
  font-size: 56px;
  line-height: 1.1;
  color: #e4c88a;
  margin-bottom: 30px;
}

.doctor-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  color: #dbc48d;
}

.line {
  width: 4px;
  height: 100px;
  background: #c04a2c;
  margin-right: 15px;
  border-radius: 2px;
}

.doctor-info h3 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 24px;
}

.doctor-info p {
  font-size: 18px;
  color: #dbc48d;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.btn-primary {
  background: #c04a2c;
  padding: 14px 22px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-secondary {
  background: #e4c88a;
  padding: 14px 22px;
  border-radius: 30px;
  color: #0f3247;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
  transition: 0.3s;
}

.btn-secondary:hover {
  opacity: 0.85;
}

.wpp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  animation: none;
}

@keyframes wppBop {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1px);
  }
}

.btn-whatsapp {
  position: relative;
  animation: pulseBtn 2.2s ease-out infinite;
}

@keyframes pulseBtn {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: stretch;
}

.hero-image img {
  max-height: calc(100svh - var(--hero-top-padding));
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

/* =========================
   Treatments
   ========================= */
.treatments {
  background: #002941;
  padding: 90px 0 110px;
  overflow: visible;
}

.treatments-container {
  text-align: center;
}

.treatments-title {
  font-weight: 300;
  font-size: 54px;
  line-height: 1.1;
  color: #dbc48d;
  margin-bottom: 18px;
}

.treatments-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #dbc48d;
  margin-bottom: 55px;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: 50px;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.treatment-image {
  width: 218.55px;
  height: 204.32px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  margin-bottom: 18px;
  border: 1px solid rgba(219, 196, 141, 0.08);
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(0.98);
}

.treatment-name {
  font-weight: 300;
  font-size: 20px;
  color: #dbc48d;
  margin-bottom: 8px;
  align-self: center;
}

.treatment-desc {
  font-size: 12px;
  line-height: 1.55;
  color: #dbc48d;
  max-width: 218px;
}

/* =========================
   About
   ========================= */
.about {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-image: url("assets/fundoSection3 - Copia.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: cover, cover;
  background-color: #f4f1ea;
  padding: 90px 0;
  overflow: visible;
  z-index: 10;
}

.about-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  min-height: 520px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-left {
  max-width: 560px;
  padding-left: clamp(0px, 5vw, 80px);
  color: #1b2730;
}

.about-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.about-mark {
  width: 450px;
  object-fit: contain;
  padding-bottom: 50px;
}

.about-title {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.35;
  margin: 18px 0;
  color: #1f2a33;
}

.about-list {
  list-style: none;
  margin: 0 0 22px;
}

.about-list li {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(31, 42, 51, 0.75);
  margin: 10px 0;
  position: relative;
  padding-left: 18px;
}

.about-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(31, 42, 51, 0.65);
}

.about-quote {
  background: #0d3a51;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  padding: 18px 18px 18px 42px;
  position: relative;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quote-mark {
  position: absolute;
  left: 16px;
  top: 10px;
  font-size: 34px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.35);
}

.about-quote p {
  font-size: 18px;
  line-height: 1.6;
}

.about-creds {
  margin-top: 18px;
  font-size: 18px;
  letter-spacing: 0.25em;
  color: #000000;
}

.about-right {
  position: relative;
  height: 520px;
}

.about-photo {
  position: absolute;
  right: -10px;
  top: -180px;
  height: 840px;
  width: auto;
  object-fit: contain;
  z-index: 20;
  pointer-events: none;
}

/* =========================
   Location
   ========================= */
.location {
  background: #ffffff;
  padding: 90px 0 110px;
}

.location-wrap {
  text-align: center;
}

.location-title {
  font-weight: 900;
  font-size: 44px;
  color: #002941;
  margin-bottom: 54px;
}

.map-card {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  background: #f7f7f7;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.map-iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* =========================
   Testimonials
   ========================= */
.testimonials {
  background: #ffffff;
}

.testimonials-top {
  background: radial-gradient(
      1200px 400px at 50% 0%,
      rgba(255, 255, 255, 0.08),
      rgba(0, 0, 0, 0)
    ),
    #002941;
  padding: 80px 0 120px;
}

.testimonials-title {
  text-align: center;
  font-weight: 300;
  font-size: 40px;
  color: #ffffff;
}

.testimonials-title span {
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.testimonials-bottom {
  padding: 0 0 70px;
}

.slider {
  position: relative;
  margin-top: -70px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 450ms ease;
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.tcard {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.tcard-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
}

.tcard-avatar {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
}

.tcard-name {
  font-weight: 600;
  font-size: 14px;
  color: #1f2a33;
  margin: 0 0 2px;
}

.tcard-role {
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
  color: rgba(31, 42, 51, 0.55);
}

.tcard-role span {
  color: rgba(31, 42, 51, 0.45);
}

.tcard-stars {
  text-align: center;
  margin: 16px 0 12px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #f0c040;
  user-select: none;
}

.tcard-text {
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(31, 42, 51, 0.7);
  margin: 0;
  padding: 0 8px 4px;
  flex: 1;
}

.cards-single {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

.cards-single .tcard {
  max-width: 320px;
  width: 100%;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.dot {
  width: 36px;
  height: 6px;
  border-radius: 100px;
  background: rgba(0, 170, 190, 0.25);
  border: 0;
  cursor: pointer;
}

.dot.is-active {
  background: rgba(0, 170, 190, 0.85);
}

/* =========================
   Contact
   ========================= */
.contact {
  background: #ffffff;
  padding: 90px 0 110px;
}

.contact-wrap {
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 420px);
  justify-content: center;
  gap: 90px;
  margin-bottom: 70px;
}

.contact-card {
  background: #002941;
  border-radius: 22px;
  padding: 42px 30px 38px;
  text-decoration: none;
  color: #dbc48d;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.contact-card-title {
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 12px;
}

.contact-card-value {
  font-weight: 300;
  font-size: 18px;
  margin: 0;
  opacity: 0.95;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn img {
  max-width: 100%;
  height: auto;
}

/* =========================
   Footer
   ========================= */
.footer {
  background: #002941;
  color: #dbc48d;
  padding: 70px 0 0;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 120px;
  align-items: start;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  width: 250px;
  height: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px;
  justify-content: end;
}

.footer-col h4 {
  font-weight: 600;
  font-size: 22px;
  color: #dbc48d;
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  margin: 10px 0;
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 0.9;
  color: #dbc48d;
}

.footer-bottom {
  margin-top: 60px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.footer-policy {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
}

.footer-policy:hover {
  color: rgba(219, 196, 141, 0.55);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1100px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }
}

@media (max-width: 1000px) {
  .hamburger {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 1100;
  }

  .logo {
    position: relative;
    z-index: 1100;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    text-align: center;
  }

  .treatment-card {
    align-items: center;
    text-align: center;
  }

  .treatment-image {
    margin-left: auto;
    margin-right: auto;
  }

  .treatment-desc {
    max-width: 320px;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: 60vh;
    background-color: #002941;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding: 120px 0 24px;
    gap: 35px;

    transform: translateY(-110%);
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
  }

  .menu-checkbox:checked ~ .nav {
    transform: translateY(0);
  }

  .nav .btn-header.mobile-only {
    display: block;
    width: 80%;
    max-width: 260px;
    margin: 18px auto 0;
    text-align: center;
  }

  .hero {
    background-position: center right;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding: 100px 20px 0;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-image img {
    max-height: 50vh;
    margin-top: 30px;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
    justify-items: center;
    text-align: center;
  }

  .about-left {
    padding: 0 20px;
    max-width: 520px;
    margin: 0 auto;
  }

  .about-brand {
    justify-content: center;
  }

  .about-mark {
    width: 100%;
    max-width: 320px;
    padding-bottom: 20px;
    margin: 0 auto;
  }

  .about-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .about-list li {
    padding-left: 0;
    text-align: center;
    max-width: 340px;
  }

  .about-list li::before {
    display: none;
  }

  .about-quote {
    margin: 20px auto 0;
    text-align: center;
    padding: 18px;
    max-width: 420px;
  }

  .about-right {
    transform: none;
    min-height: auto;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-photo {
    position: relative;
    top: 0;
    right: 0;
    height: auto;
    max-width: 92%;
    margin: 20px auto 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-card {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .contact-card-value {
    word-break: break-word;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    padding: 50px 0 0;
  }

  .footer-wrap {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: center;
    justify-items: center;
  }

  .footer-brand {
    max-width: 520px;
    margin: 0 auto;
  }

  .footer-logo {
    margin: 0 auto 12px;
  }

  .footer-links {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    justify-content: center;
    width: 100%;
    max-width: 520px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col a {
    margin: 8px 0;
  }

  .footer-bottom {
    margin-top: 28px;
  }

  .footer-bottom-wrap {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .treatments {
    padding: 70px 0 90px;
  }

  .treatments-title {
    font-size: 38px;
  }

  .treatments-subtitle {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .treatment-desc {
    max-width: 100%;
  }

  .about {
    padding: 70px 0;
  }

  .about-title {
    font-size: 18px;
  }

  .location {
    padding: 70px 0 90px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tcard {
    padding: 14px;
  }

  .tcard-text {
    font-size: 11px;
  }

  .slider {
    margin-top: -60px;
  }

  .location-title {
    font-size: 32px;
    margin-bottom: 22px;
  }

  .map-iframe {
    height: 300px;
  }

  .map-card {
    border-radius: 18px;
  }
}