:root {
  --navy: #0a1628;
  --navy-light: #132238;
  --gold: #c9a227;
  --gold-light: #e8d5a3;
  --gold-dark: #a6851f;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  padding-top: 70px;
  background: #faf9f7;
}

h1, h2, .section-title, .brand-footer {
  font-family: "Cormorant Garamond", serif;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
}

.navbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 2px;
  margin-right: 0.25rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gold-line {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

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

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.hero {
  position: relative;
  background: var(--navy) url("https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1920&q=80") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.75) 100%);
}

.hero-sub {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  font-weight: 400;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.2);
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
}

.icon-ring {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
}

.service-card h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.85rem;
  color: #5a6474;
  margin: 0;
}

.bg-navy-light {
  background: var(--navy-light);
}

.horario-card {
  max-width: 720px;
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.horario-item strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-info i {
  color: var(--gold);
  margin-top: 2px;
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--navy);
}

.form-control,
.form-select {
  border-color: #ddd;
  font-size: 0.9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.15);
}

.footer-dark {
  background: var(--navy);
  border-top: 3px solid var(--gold);
}

.brand-footer {
  font-size: 1.5rem;
  color: var(--gold-light);
}
