/* ============================================================
   MARCOS CAMARGO GARCIA — Landing Page v3.0
   Design Mobile-First Profissional & Responsivo
   ============================================================ */

/* ── 1. VARIÁVEIS CSS ───────────────────────────────────── */
:root {
  --color-white: #ffffff;
  --color-bg-light: #f9f7f4;
  --color-bg-section: #f3f0ec;
  --color-graphite: #333333;
  --color-graphite-lt: #5a5a5a;
  --color-graphite-xs: #9a9a9a;
  --color-border: #e2ddd8;

  --color-navy: #1a2f6e;
  --color-navy-dark: #111e4a;
  --color-navy-light: #2a4299;

  --color-gold: #c9a84c;
  --color-gold-light: #e8c351;
  --color-gold-pale: #f5edd3;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", "Helvetica Neue", sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 2px 12px rgba(26, 47, 110, 0.08);
  --shadow-hover: 0 8px 24px rgba(26, 47, 110, 0.12);
  --shadow-btn: 0 4px 12px rgba(201, 168, 76, 0.3);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --container-max: 1200px;
  --header-h: 64px;
}

/* ── 2. RESET & BASE ────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-graphite);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── 3. UTILITÁRIOS ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 3rem;
  }
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-graphite);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

/* ── 4. BOTÕES ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  min-height: 48px;
  padding: 0 1.5rem;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  box-shadow: var(--shadow-btn);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline-navy {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (hover: hover) {
  .btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 168, 76, 0.4);
  }

  .btn-outline-navy:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-2px);
  }

  .btn-whatsapp:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  }
}

/* ── 5. HEADER ──────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 16px rgba(26, 47, 110, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.logo__sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 2px;
}

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

.nav__links {
  display: none;
}

.nav .btn-primary {
  display: none;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  -webkit-tap-highlight-color: transparent;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(26, 47, 110, 0.1);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-graphite);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.nav__mobile .nav__link:active {
  background: var(--color-bg-light);
}

.nav__mobile .btn {
  margin: 1.25rem 1.5rem;
}

/* ── 6. HERO MOBILE-FIRST ───────────────────────────────── */
.hero {
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 2rem;
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    var(--color-bg-light) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Hero com foto em círculo pequeno no topo (estilo moderno mobile) */
.hero__profile-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--color-gold);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.2);
  position: relative;
}

.hero__profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Badge de região */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-gold-pale);
  border: 1px solid var(--color-gold);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7d6320;
  margin-bottom: 1rem;
}

.hero__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.hero__content {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-graphite);
  margin-bottom: 1rem;
}

.hero__title em {
  font-style: italic;
  color: var(--color-navy);
  display: block;
  margin-bottom: 0.25rem;
}

.hero__subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: var(--color-graphite-lt);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__actions .btn {
  width: 100%;
}

/* Stats em grid compacto */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  display: block;
}

.stat__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-graphite-xs);
  margin-top: 0.35rem;
  display: block;
  line-height: 1.3;
}

/* ── 7. MARCAS ──────────────────────────────────────────── */
.brands {
  padding: 2.5rem 0;
  background: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header .section-desc {
  font-size: 0.9rem;
  color: var(--color-graphite-lt);
  max-width: 480px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

.brands__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.brand-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.brand-card:active {
  transform: scale(0.98);
}

.brand-card__cover {
  height: 140px;
  background: linear-gradient(
    135deg,
    var(--color-navy-dark),
    var(--color-navy)
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-card--puramania .brand-card__cover {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.brand-card--yexx .brand-card__cover {
  background: linear-gradient(135deg, #2d1b4e 0%, #512d6d 50%, #8b4f9e 100%);
}

.brand-card--shot .brand-card__cover {
  background: linear-gradient(135deg, #1a2f6e 0%, #2a4299 50%, #1a2f6e 100%);
}

.brand-card__body {
  padding: 1.25rem;
}

.brand-card__tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
}

.tag--male {
  background: rgba(26, 47, 110, 0.08);
  color: var(--color-navy);
  border: 1px solid rgba(26, 47, 110, 0.2);
}

.tag--female {
  background: rgba(201, 168, 76, 0.12);
  color: #7d6320;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.brand-card__desc {
  font-size: 0.85rem;
  color: var(--color-graphite-lt);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.brand-card__footer .btn {
  width: 100%;
}

/* ── 8. DIFERENCIAIS ────────────────────────────────────── */
.differentials {
  padding: 2.5rem 0;
  background: var(--color-navy-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.differentials .section-label {
  color: var(--color-gold);
}
.differentials .section-title {
  color: var(--color-white);
}
.differentials .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.diff__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.diff-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.diff-card:active {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(0.98);
}

.diff-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.diff-card__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(201, 168, 76, 0.4);
  margin-bottom: 0.5rem;
}

.diff-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.diff-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ── 9. CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--color-gold-pale) 0%, #f9f4e8 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.cta-banner__desc {
  font-size: 0.9rem;
  color: var(--color-graphite-lt);
  max-width: 460px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

.cta-banner__actions .btn {
  width: 100%;
}

/* ── 10. FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--color-graphite);
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand .logo__name {
  color: var(--color-white);
  font-size: 1.25rem;
}

.footer__brand p {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.social-btn:active {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  transform: scale(0.95);
}

.footer__cols-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__list a,
.footer__list span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0;
  transition: var(--transition);
}

.footer__list a:active {
  color: var(--color-gold);
}

.footer__bottom {
  padding-top: 1.25rem;
  text-align: center;
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__copy span {
  color: var(--color-gold);
}

/* ── 11. ANIMAÇÕES ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ── 12. DIVIDER ────────────────────────────────────────── */
.divider-ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin: 1rem 0;
}

.divider-ornament__line {
  height: 1px;
  width: 40px;
  background: linear-gradient(to right, transparent, var(--color-gold));
}

.divider-ornament__line:last-child {
  background: linear-gradient(to left, transparent, var(--color-gold));
}

.divider-ornament__diamond {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  transform: rotate(45deg);
}

/* ══════════════════════════════════════════════════════════
   13. BREAKPOINTS — Mobile-First
   ══════════════════════════════════════════════════════════ */

/* ── Tablet (≥ 640px) ── */
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero__actions .btn {
    width: auto;
    min-width: 180px;
  }

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

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

  .cta-banner__actions {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }

  .cta-banner__actions .btn {
    width: auto;
    min-width: 200px;
  }

  .brand-card__cover {
    height: 160px;
  }
}

/* ── Desktop pequeno (≥ 768px) ── */
@media (min-width: 768px) {
  :root {
    --header-h: 72px;
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }

  .hero {
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 3rem;
  }

  /* Hero desktop: foto maior à direita */
  .hero__profile-circle {
    display: none;
  }

  .hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero__content {
    text-align: left;
    max-width: none;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__stats {
    justify-content: flex-start;
    grid-template-columns: repeat(3, auto);
    gap: 2rem;
    border-top: 1px solid var(--color-border);
    border-bottom: none;
  }

  .stat {
    text-align: left;
  }

  /* Foto grande desktop */
  .hero__photo-desktop {
    display: block !important;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(26, 47, 110, 0.12);
    border: 1px solid var(--color-border);
    margin: 0 auto;
  }

  .hero__photo-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .brands,
  .differentials,
  .cta-banner {
    padding: var(--space-xl) 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .brand-card__cover {
    height: 180px;
  }

  .footer__cols-secondary {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Desktop (≥ 1024px) ── */
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav__link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-graphite);
    position: relative;
    transition: var(--transition);
  }

  .nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition);
  }

  .nav__link:hover {
    color: var(--color-navy);
  }

  .nav__link:hover::after {
    width: 100%;
  }

  .nav .btn-primary {
    display: inline-flex;
  }

  .nav__toggle {
    display: none;
  }

  .brands__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .diff__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .brand-card__cover {
    height: 200px;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }

  .footer__cols-secondary {
    display: contents;
  }

  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  @media (hover: hover) {
    .brand-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: var(--color-gold);
    }

    .diff-card:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-3px);
    }

    .social-btn:hover {
      background: var(--color-gold);
      color: var(--color-navy-dark);
      transform: translateY(-2px);
    }

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

/* ── Large (≥ 1280px) ── */
@media (min-width: 1280px) {
  .brands,
  .differentials,
  .cta-banner {
    padding: var(--space-2xl) 0;
  }

  .hero__photo-desktop {
    max-width: 460px;
  }

  /* Estilos para o Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 47, 110, 0.85); /* Azul do tema com transparência */
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  text-align: center;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #1a2f6e;
  cursor: pointer;
}

.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1a2f6e;
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 25px;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-modal {
  display: block;
  padding: 15px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.2s;
  font-family: 'Montserrat', sans-serif;
}

.btn-male { background: #f0f2f8; color: #1a2f6e; border: 1px solid #d1d8ef; }
.btn-female { background: #1a2f6e; color: #fff; }

.btn-modal:hover { transform: scale(1.02); }
}
