:root {
  --black: #050505;
  --black-soft: #0d0d0d;
  --black-card: #111111;
  --gold: #D4AC3C;
  --gold-soft: rgba(212, 172, 60, 0.16);
  --gold-border: rgba(212, 172, 60, 0.38);
  --white: #ffffff;
  --white-soft: #f7f4ed;
  --text-dark: #181818;
  --text-muted: #6f6f6f;
  --text-light: #d7d7d7;
  --max-width: 1180px;
  --radius: 26px;
  --shadow-gold: 0 24px 80px rgba(212, 172, 60, 0.16);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.24);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 172, 60, 0.16);
  transition: 0.35s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.navbar {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 300px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-menu a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.04em;
  transition: 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -7px;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  color: var(--black) !important;
  background: var(--gold);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-border);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  margin: 5px auto;
  transition: 0.3s ease;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 150px 40px 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  width: min(100%, 1280px);
  margin: 0 auto;
  position: relative;
}

.hero-bg-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 172, 60, 0.2), transparent 65%);
  top: 110px;
  right: 80px;
  pointer-events: none;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 260px;
  margin-bottom: 10px;
  filter: drop-shadow(0 16px 40px rgba(212, 172, 60, 0.18));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.dark {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  max-width: 760px;
  margin-bottom: 28px;
}

.hero p {
  max-width: 650px;
  color: var(--text-light);
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: 0.32s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 15px 40px rgba(212, 172, 60, 0.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(212, 172, 60, 0.32);
}

.btn-outline {
  color: var(--gold);
  border: 1px solid var(--gold-border);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  background: var(--gold-soft);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--black);
  color: var(--gold);
}

.btn-dark:hover {
  transform: translateY(-3px);
  background: #151515;
}

.hero-card {
  border: 1px solid var(--gold-border);
  background:
    linear-gradient(145deg, rgba(212, 172, 60, 0.16), rgba(255, 255, 255, 0.035)),
    var(--black-card);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(212, 172, 60, 0.14);
  position: absolute;
  right: -80px;
  top: -80px;
}

.card-label {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem !important;
  margin-bottom: 18px;
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.hero-highlights div {
  padding: 20px 14px;
  border: 1px solid rgba(212, 172, 60, 0.2);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.hero-highlights strong {
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.hero-highlights span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

/* SECTIONS */
.section {
  padding: 110px 0;
}

.white-section {
  background: var(--white-soft);
  color: var(--text-dark);
}

.black-section {
  background:
    radial-gradient(circle at top left, rgba(212, 172, 60, 0.11), transparent 32%),
    var(--black);
}

.two-columns {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.white-section .section-heading p {
  color: var(--text-muted);
}

.section-heading.center {
  text-align: center;
  margin-bottom: 62px;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 22px;
}

.signature-line {
  width: 120px;
  height: 2px;
  background: var(--gold);
  margin-top: 34px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(212, 172, 60, 0.18);
  min-height: 330px;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 172, 60, 0.12), transparent 48%);
  opacity: 0;
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(212, 172, 60, 0.5);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 26px;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-size: 0.98rem;
}

.service-card.featured {
  background: linear-gradient(145deg, rgba(212, 172, 60, 0.22), rgba(255, 255, 255, 0.04));
}

/* PREMIUM LIST */
.premium-list {
  display: grid;
  gap: 22px;
}

.premium-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 26px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(212, 172, 60, 0.2);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}

.premium-item:hover {
  transform: translateX(8px);
  border-color: rgba(212, 172, 60, 0.48);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.1);
}

.premium-item span {
  color: var(--gold);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.premium-item h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.premium-item p {
  color: var(--text-muted);
  line-height: 1.85;
}

/* EXPERIENCE */
.experience-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b0b0b, #15110a);
  border-top: 1px solid rgba(212, 172, 60, 0.2);
  border-bottom: 1px solid rgba(212, 172, 60, 0.2);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.experience-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(212, 172, 60, 0.2);
}

.experience-card .number {
  display: block;
  color: var(--gold);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  margin-bottom: 8px;
}

.experience-card p {
  color: rgba(255, 255, 255, 0.74);
}

/* DOCTORS */
.doctors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.doctor-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(212, 172, 60, 0.2);
  transition: 0.35s ease;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212, 172, 60, 0.48);
}

.doctor-photo {
  height: 300px;
  background:
    radial-gradient(circle at center, rgba(212, 172, 60, 0.24), transparent 48%),
    linear-gradient(135deg, #111111, #040404);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(212, 172, 60, 0.18);
  padding: 34px;
}

.doctor-photo img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--gold);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 0 10px rgba(212, 172, 60, 0.08);
  background: #111111;
  transition: 0.35s ease;
}

.doctor-card:hover .doctor-photo img {
  transform: scale(1.04);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.55),
    0 0 0 12px rgba(212, 172, 60, 0.12);
}

.doctor-photo span {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.24);
}

.doctor-info {
  padding: 34px;
}

.doctor-role {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.doctor-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.doctor-info ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.doctor-info li::marker {
  color: var(--gold);
}

.crm-note {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

/* CTA */
.cta-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at center, rgba(212, 172, 60, 0.18), transparent 42%),
    var(--black);
}

.cta-box {
  text-align: center;
  border-radius: 36px;
  padding: 70px 44px;
  background: linear-gradient(145deg, rgba(212, 172, 60, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.cta-box h2 {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
  margin: 0 auto 34px;
  line-height: 1.8;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-content h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.contact-content > p {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}

.contact-list {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(212, 172, 60, 0.2);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.contact-list a:hover {
  transform: translateX(6px);
  border-color: rgba(212, 172, 60, 0.5);
}

.contact-list strong {
  color: var(--black);
}

.contact-list span {
  color: var(--gold);
  font-weight: 700;
}

.contact-form {
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(212, 172, 60, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fbfbfb;
  border-radius: 14px;
  padding: 15px 16px;
  outline: none;
  color: var(--text-dark);
  font-size: 1rem;
  transition: 0.3s ease;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 172, 60, 0.12);
}

.contact-form .btn {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 16px;
}

.honeypot {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.turnstile-wrapper {
  margin: 20px 0;
  display: flex;
  justify-content: flex-start;
}

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  display: none;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status.success {
  display: block;
  background: rgba(32, 160, 92, 0.12);
  color: #176f42;
  border: 1px solid rgba(32, 160, 92, 0.24);
}

.form-status.error {
  display: block;
  background: rgba(190, 42, 42, 0.1);
  color: #9b1d1d;
  border: 1px solid rgba(190, 42, 42, 0.22);
}

.contact-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* FOOTER */
.footer {
  background: #000;
  padding: 46px 0;
  border-top: 1px solid rgba(212, 172, 60, 0.18);
}

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

.footer img {
  width: 180px;
  margin-bottom: 12px;
}

.footer p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.footer a {
  color: var(--gold);
  font-weight: 700;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 16px 50px rgba(212, 172, 60, 0.34);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.28s;
}

@keyframes pulseGlow {
  from {
    transform: scale(0.92);
    opacity: 0.55;
  }

  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }

  .hero-logo {
    width: 220px;
  }

  .two-columns,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .doctors-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 86px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    background: rgba(7, 7, 7, 0.98);
    border: 1px solid var(--gold-border);
    border-radius: 22px;
    padding: 18px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    box-shadow: var(--shadow-dark);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu li a {
    display: block;
    padding: 16px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-card {
    padding: 30px;
  }

  .services-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .premium-item {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .navbar {
    height: 78px;
  }

  .brand img {
    width: 140px;
  }

  .nav-menu {
    top: 78px;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-logo {
    width: 190px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .service-card,
  .premium-item,
  .contact-form {
    padding: 26px;
  }

  .contact-list a {
    flex-direction: column;
    gap: 8px;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}