:root {
  --bg: #08192b;
  --bg-soft: #0f3d68;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --card: #f7f9fc;
  --card-alt: #edf2f7;
  --text: #ebf3fb;
  --text-dark: #15273b;
  --muted: #b6c7d8;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d8b15d;
  --accent-strong: #f0cb72;
  --shadow: 0 24px 60px rgba(4, 15, 29, 0.26);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: min(1140px, calc(100% - 2rem));
  --header-height: 90px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 177, 93, 0.18), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(71, 133, 183, 0.24), transparent 30%),
    linear-gradient(180deg, #0a2743 0%, #08192b 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.intro-strip {
  padding: 0 0 2rem;
}

.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.intro-item {
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 44px rgba(4, 15, 29, 0.16);
  backdrop-filter: blur(14px);
}

.intro-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
}

.intro-item span,
.intro-item a {
  color: var(--muted);
  line-height: 1.7;
}

.practice-section,
.contact-section {
  background: #f5f7fb;
}

.about-section {
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 177, 93, 0.12), transparent 24%),
    linear-gradient(180deg, #0a2239 0%, #091a2c 100%);
}

.page-shell {
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 24, 41, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(4, 15, 29, 0.28);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  object-position: center;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 32px rgba(6, 17, 31, 0.24);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #10263d !important;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(216, 177, 93, 0.22);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.ads-highlight-section {
  padding: 1.25rem 0 1rem;
}

.ads-highlight-card {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(216, 177, 93, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(4, 15, 29, 0.22);
  backdrop-filter: blur(16px);
}

.ads-highlight-copy h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.ads-highlight-copy p {
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.ads-point {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ads-point strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #fff;
  font-size: 1.02rem;
}

.ads-point span {
  color: var(--muted);
  line-height: 1.75;
}

.ads-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-section {
  position: relative;
  padding: 3.5rem 0 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 177, 93, 0.25), transparent 22%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy,
.hero-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(216, 177, 93, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 1.2rem 0 1rem;
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-copy p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #0c1f33;
  box-shadow: 0 20px 36px rgba(216, 177, 93, 0.24);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.glass-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.panel-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(216, 177, 93, 0.16);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.glass-panel h2 {
  margin: 0 0 0.8rem;
  font-size: 1.7rem;
  line-height: 1.15;
}

.glass-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.about-content h2 {
  margin: 1rem 0 0.8rem;
  color: var(--text-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-heading p,
.about-content p {
  margin: 0;
  color: #52667d;
  line-height: 1.8;
  font-size: 1.02rem;
}

.about-section .eyebrow {
  background: rgba(255, 255, 255, 0.04);
}

.about-section .about-content h2 {
  color: #f4f8fc;
}

.about-section .about-content p {
  color: #aac0d5;
  max-width: 58ch;
}

.about-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-note strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #fff;
}

.about-note p {
  margin: 0;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.practice-card,
.contact-card,
.map-card,
.contact-form,
.stat-card {
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 48px rgba(13, 31, 53, 0.08);
}

.practice-card {
  padding: 1.7rem;
  background: linear-gradient(180deg, #ffffff 0%, #f2f6fb 100%);
  border: 1px solid rgba(15, 61, 104, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.practice-card:hover,
.practice-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(13, 31, 53, 0.14);
  border-color: rgba(216, 177, 93, 0.35);
}

.icon-wrap {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(15, 61, 104, 0.12), rgba(216, 177, 93, 0.22));
}

.icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--bg-soft);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.practice-card h3,
.contact-card h3 {
  margin: 0 0 0.7rem;
  color: var(--text-dark);
  font-size: 1.15rem;
}

.practice-card p,
.contact-card li,
.stat-card span {
  margin: 0;
  color: #55697f;
  line-height: 1.75;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.about-grid {
  align-items: center;
}

.about-panel {
  display: grid;
  gap: 1rem;
}

.stat-card {
  padding: 1.65rem;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
  border: 1px solid rgba(15, 61, 104, 0.1);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.stat-card-highlight {
  background: linear-gradient(180deg, rgba(216, 177, 93, 0.24) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(216, 177, 93, 0.28);
}

.stat-card-highlight strong {
  color: #10263d;
}

.stat-card-highlight span {
  color: #334b63;
}

.contact-info,
.contact-form-wrap {
  display: grid;
  gap: 1rem;
}

.contact-section .section-heading {
  text-align: center;
  margin-inline: auto;
}

.contact-card,
.contact-form,
.map-card {
  padding: 1.7rem;
  background: #fff;
  border: 1px solid rgba(15, 61, 104, 0.08);
}

.contact-card ul,
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-card ul {
  display: grid;
  gap: 0.75rem;
}

.contact-card a {
  color: var(--bg-soft);
  font-weight: 600;
}

.map-card {
  padding: 0;
  overflow: hidden;
  min-height: 320px;
}

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

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 61, 104, 0.14);
  border-radius: 16px;
  background: #f6f9fc;
  color: var(--text-dark);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(216, 177, 93, 0.75);
  box-shadow: 0 0 0 4px rgba(216, 177, 93, 0.16);
  background: #fff;
}

.hidden-field {
  display: none;
}

.site-footer {
  background: #061525;
  color: var(--muted);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 1rem;
  color: #fff;
}

.site-footer p,
.site-footer li {
  line-height: 1.8;
}

.site-footer a {
  transition: color 0.25s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-strong);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-contact {
  margin-top: 1rem;
}

.footer-contact a {
  color: var(--text);
}

.footer-credit {
  margin-top: 1.25rem;
  color: #8fa7bf;
}

.footer-credit a {
  color: var(--accent-strong);
  font-weight: 600;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.2rem 1rem 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #8fa7bf;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #20c863 0%, #0d9f46 100%);
  color: #fff;
  box-shadow: 0 22px 38px rgba(14, 119, 49, 0.35);
  z-index: 1001;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 28px 46px rgba(14, 119, 49, 0.44);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
  .ads-highlight-grid,
  .intro-strip-grid,
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .practice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .about-grid {
    gap: 1.5rem;
  }
}

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

  .nav-links {
    position: absolute;
    top: calc(100% - 0.35rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(6, 21, 37, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: 0 22px 45px rgba(4, 15, 29, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    color: #fff;
  }

  .ads-highlight-grid,
  .intro-strip-grid,
  .hero-grid,
  .about-grid,
  .contact-grid,
  .practice-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 2rem;
  }

  .about-section .about-content p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .ads-highlight-card {
    padding: 1.35rem;
  }

  .ads-highlight-copy h2 {
    max-width: none;
  }

  .navbar {
    min-height: 78px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-copy {
    max-width: 180px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.3rem);
  }

  .glass-panel,
  .practice-card,
  .contact-card,
  .contact-form,
  .stat-card {
    padding: 1.35rem;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .ads-highlight-actions {
    flex-direction: column;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
  }
}
