
:root {
  --blue-950: #07285e;
  --blue-800: #0c4ca3;
  --blue-700: #1464c1;
  --gold-700: #ba7a09;
  --gold-500: #dca321;
  --gold-300: #f1d472;
  --silver-100: #f5f7fb;
  --silver-200: #e7ebf2;
  --silver-400: #b4becc;
  --ink: #1d2940;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(9, 32, 76, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fafe 0%, #eef3fa 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  background: linear-gradient(90deg, var(--blue-950), var(--blue-700));
  color: #dfe9ff;
  font-size: .95rem;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: .8rem 0; gap: 1rem; }
.topbar-text { margin: 0; }
.lang-toggle {
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: white;
  padding: .65rem .9rem; border-radius: 999px; font-weight: 700; cursor: pointer;
}
.site-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(241,212,114,.35), transparent 22%),
    radial-gradient(circle at 20% 20%, rgba(20,100,193,.14), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #edf2f9 100%);
}
.site-header::before {
  content: ""; position: absolute; inset: auto -6rem -8rem auto; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(186,122,9,.14), transparent 70%);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .9rem; min-width: 0; }
.brand-logo { width: 62px; height: 62px; object-fit: contain; border-radius: 16px; box-shadow: var(--shadow); background: white; }
.brand strong { display: block; font-size: 1.35rem; color: var(--blue-950); letter-spacing: .02em; }
.brand span { display: block; font-size: .9rem; color: #5f6c85; }
.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav a { font-weight: 600; color: #324460; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -.3rem; width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold-500), var(--blue-700)); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: white; box-shadow: var(--shadow); width: 46px; height: 46px; border-radius: 14px; font-size: 1.2rem; }
.hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center; padding: 3rem 0 4rem; }
.eyebrow, .section-tag {
  display: inline-flex; padding: .55rem .9rem; border-radius: 999px; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(20,100,193,.08); color: var(--blue-700);
}
.hero h1, .section-heading h2, .panel h2 { font-family: 'Playfair Display', serif; line-height: 1.05; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); margin: .9rem 0 1rem; color: var(--blue-950); }
.hero-text { font-size: 1.08rem; line-height: 1.8; color: #4a5b77; max-width: 62ch; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.4rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem; border-radius: 999px; padding: .95rem 1.35rem; font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(12,76,163,.18); }
.btn-primary { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: white; }
.btn-secondary { background: white; color: var(--blue-950); border: 1px solid var(--silver-200); }
.btn.small { padding: .8rem 1.1rem; font-size: .95rem; }
.hero-card {
  position: relative; background: linear-gradient(180deg, rgba(8,40,94,.98), rgba(14,73,152,.92)); border-radius: 30px;
  min-height: 430px; display: grid; place-items: center; box-shadow: 0 28px 70px rgba(7,40,94,.28); overflow: hidden;
  padding: 6rem 2rem 2.2rem;
}
.hero-card-glow {
  position: absolute; inset: auto auto -2rem -2rem; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(241,212,114,.4), transparent 65%);
}
.hero-logo {
  width: min(78%, 340px);
  filter: drop-shadow(0 15px 25px rgba(0,0,0,.24));
  position: relative;
  z-index: 1;
}
.hero-badge {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 1.2rem;
  max-width: none;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.10));
  color: white;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0,0,0,.15);
  z-index: 2;
}
.section { padding: 5rem 0; }
.section-soft { background: rgba(255,255,255,.62); backdrop-filter: blur(10px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.align-center { align-items: center; }
.panel, .info-card, .contact-card, .service-box, .form-wrap {
  background: rgba(255,255,255,.92); border: 1px solid rgba(177,191,211,.32); border-radius: var(--radius); box-shadow: var(--shadow);
}
.panel, .info-card, .contact-card, .service-box, .form-wrap { padding: 1.8rem; }
.panel h2, .section-heading h2 { margin: .8rem 0 1rem; font-size: clamp(2rem, 4vw, 3rem); color: var(--blue-950); }
.panel p, .section-heading p, .info-card p, .contact-card p, .service-box li { color: #53627a; line-height: 1.8; }
.panel-accent {
  background: linear-gradient(180deg, rgba(12,76,163,.97), rgba(7,40,94,.97)); color: white;
}
.panel-accent h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin: .8rem 0; }
.panel-accent p, .panel-accent .section-tag { color: #f4f7ff; }
.panel-accent .section-tag { background: rgba(255,255,255,.12); }
.section-heading { max-width: 760px; margin-bottom: 1.6rem; }
.cards { display: grid; gap: 1.2rem; }
.three-col { grid-template-columns: repeat(3, minmax(0,1fr)); }
.values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.center-col { max-width: 760px; margin: 0 auto; }
.info-card h3, .contact-card h3 { margin-top: 0; color: var(--blue-950); font-size: 1.22rem; }
.service-box { background: linear-gradient(180deg, #ffffff, #f8fbff); }
.service-badge {
  display: inline-flex; padding: .5rem .75rem; border-radius: 999px; background: rgba(220,163,33,.13); color: var(--gold-700); font-weight: 700; margin-bottom: 1rem;
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.check-list li { position: relative; padding-left: 1.7rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-700); font-weight: 800; }
.contact-grid { grid-template-columns: repeat(3, minmax(0,1fr)); margin-bottom: 1.25rem; }
.contact-card a { color: var(--blue-700); font-weight: 600; }
.contact-form { display: grid; gap: 1rem; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
label span { display: inline-block; margin-bottom: .45rem; font-weight: 700; color: var(--blue-950); }
input, textarea {
  width: 100%; border: 1px solid #d3dbea; border-radius: 16px; padding: 1rem 1rem; font: inherit; color: var(--ink); background: white;
}
input:focus, textarea:focus { outline: none; border-color: var(--blue-700); box-shadow: 0 0 0 4px rgba(20,100,193,.12); }
.floating-whatsapp {
  position: fixed; right: 1rem; bottom: 1rem; width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, #1db954, #0aa53c); color: white; box-shadow: 0 18px 35px rgba(10,165,60,.35); z-index: 20;
}
.floating-whatsapp svg { width: 30px; height: 30px; }
.site-footer { padding: 1.2rem 0 2rem; }
.footer-inner { text-align: center; color: #586982; }
.footer-inner a { color: var(--blue-700); font-weight: 700; }
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp .85s ease forwards; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@media (max-width: 960px) {
  .hero, .grid-2, .three-col, .contact-grid, .values-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 320px; padding: 5.2rem 1.2rem 1.4rem; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); background: white; border-radius: 20px; padding: 1rem;
    flex-direction: column; align-items: flex-start; box-shadow: var(--shadow); display: none;
  }
  .nav.open { display: flex; }
  .nav-wrap { position: relative; }
  .field-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 1.2rem; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.3rem); }
  .section { padding: 4rem 0; }
}
