@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --gold: #FFBC13;
  --gold-dark: #E3A300;
  --red: #990000;
  --red-dark: #380000;
  --green: #25D366;
  --green-hover: #0C9600;
  --white: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.82);
  --card-bg: rgba(56, 0, 0, 0.65);
  --border: rgba(255, 188, 19, 0.35);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --radius: 12px;
  --container: 1200px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--white);
  background: radial-gradient(circle at 30% 20%, var(--red) 27%, var(--red-dark) 60%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-hover); }
h1, h2, h3, h4 { font-family: 'Cinzel', serif; line-height: 1.25; }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); margin-bottom: 1rem; color: var(--gold); }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }
ul { list-style: none; }

.container { width: min(var(--container), 100% - 2rem); margin-inline: auto; }
.section { padding: 4rem 0; }
.section-alt { background: rgba(0, 0, 0, 0.2); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(56, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; font-family: 'Cinzel', serif; font-weight: 700; color: var(--gold); font-size: 1rem; }
.logo img { height: 48px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: 1.5rem; }
.nav-desktop a { color: var(--white); font-weight: 500; font-size: 0.95rem; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.75rem; }
.nav-dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--red-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
  box-shadow: var(--shadow);
  max-height: 360px;
  overflow-y: auto;
}
.nav-dropdown:hover ul { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown li a { display: block; padding: 0.5rem 1rem; font-size: 0.875rem; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.mobile-menu.open { pointer-events: auto; }
.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: 0.3s;
}
.mobile-menu.open .mobile-overlay { opacity: 1; }
.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--red-dark);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: 0.3s;
  overflow-y: auto;
  padding: 1.5rem;
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-close {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 1rem;
}
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .sub a { padding-left: 1rem; font-size: 0.9rem; color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--red-dark); }
.btn-gold:hover { filter: brightness(1.08); color: var(--red-dark); }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-whatsapp:hover { background: #1da851; color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--red-dark); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(153,0,0,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-badge {
  display: inline-block;
  background: rgba(255, 188, 19, 0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; }

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-card img { width: 100%; height: 220px; object-fit: cover; }
.feature-card-body { padding: 1.25rem; }

/* Profile cards */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.profile-card {
  background: linear-gradient(145deg, rgba(153,0,0,0.5), rgba(56,0,0,0.8));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.profile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.profile-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.profile-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.badge-available {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.profile-body { padding: 1rem; }
.profile-body h3 { font-size: 1rem; }
.profile-age { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.5rem; }
.profile-actions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; }

/* Price table */
.price-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
}
.price-table th { background: rgba(255, 188, 19, 0.15); color: var(--gold); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section a:not(.btn) { text-decoration: underline; text-underline-offset: 2px; }
.section a:not(.btn):hover { color: var(--green); }

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
}
.category-card img { width: 100%; height: 100%; object-fit: cover; }
.category-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: var(--gold);
}
.category-hero-img {
  max-width: 640px;
  margin: 0 auto 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.category-hero-img img { width: 100%; height: auto; display: block; }

/* Areas */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.area-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.85rem;
  transition: 0.2s;
}
.area-tag:hover { background: var(--gold); color: var(--red-dark); }
.areas-grid-narrow { justify-content: center; max-width: 720px; margin: 0 auto; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--red-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--card-bg);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.25rem; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 1.25rem 1rem; margin: 0; }

/* Profile page */
.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-center { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }
.profiles-grid-sm {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.25rem;
}
.profile-card-sm {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  text-align: center;
}
.profile-card-sm img {
  border-radius: 8px;
  margin-bottom: 0.5rem;
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.profile-card-sm h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.profile-card-sm h3 a { color: var(--white); }
.profile-card-sm h3 a:hover { color: var(--gold); }
.profile-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.profile-gallery img { border-radius: var(--radius); border: 2px solid var(--border); }
.profile-info .meta { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0; }
.meta-item { background: var(--card-bg); padding: 0.5rem 1rem; border-radius: 8px; border: 1px solid var(--border); font-size: 0.9rem; }
.meta-item strong { color: var(--gold); }

/* Footer */
.site-footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h4 { color: var(--gold); margin-bottom: 1rem; font-size: 1rem; }
.footer-grid a { color: var(--text-muted); display: block; margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom a { margin: 0 0.5rem; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.contact-card svg { width: 48px; height: 48px; fill: var(--gold); margin: 0 auto 1rem; }

.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }

@media (max-width: 992px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }
  .profile-hero { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .section { padding: 2.5rem 0; }
  .header-actions .btn span.hide-mobile { display: none; }

  .features-grid,
  .profiles-grid,
  .profiles-grid-sm,
  .categories-grid,
  .steps-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .feature-card img { height: 140px; }
  .feature-card-body { padding: 0.85rem; }
  .feature-card-body h3 { font-size: 0.95rem; }
  .feature-card-body p { font-size: 0.8rem; margin-bottom: 0.5rem; }

  .profile-body { padding: 0.65rem; }
  .profile-body h2,
  .profile-body h3 { font-size: 0.8rem; line-height: 1.2; }
  .profile-age { font-size: 0.75rem; margin-bottom: 0.35rem; }
  .profile-body > p:not(.profile-age) { display: none; }
  .profile-actions { margin-top: 0.5rem; gap: 0.35rem; }
  .profile-actions .btn-sm { padding: 0.35rem 0.4rem; font-size: 0.7rem; }
  .badge-available { font-size: 0.6rem; padding: 0.2rem 0.4rem; top: 8px; left: 8px; }

  .category-card span { font-size: 0.75rem; padding: 0.5rem; }

  .step-card { padding: 1rem 0.65rem; }
  .step-card h3 { font-size: 0.9rem; }
  .step-card p { font-size: 0.78rem; }
  .step-num { width: 36px; height: 36px; font-size: 1rem; }

  .profile-card-sm { padding: 0.5rem; }
  .profile-card-sm h3 { font-size: 0.85rem; }

  .contact-card { padding: 1rem 0.75rem; }
  .contact-card svg { width: 36px; height: 36px; }

  .footer-grid h4 { font-size: 0.9rem; }
  .footer-grid a { font-size: 0.8rem; }
}
