/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1E3A5F;
  --navy-dark: #152b47;
  --gold:      #C8A24A;
  --gold-light:#e2bc6e;
  --white:     #FFFFFF;
  --gray-bg:   #F3F5F7;
  --gray-text: #6B7280;
  --text-dark: #1a2535;
  --shadow-sm: 0 2px 8px rgba(30,58,95,.10);
  --shadow-md: 0 8px 32px rgba(30,58,95,.14);
  --shadow-lg: 0 16px 56px rgba(30,58,95,.18);
  --radius:    12px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   UTILITIES
========================================= */
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 560px;
  margin-top: .75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,162,74,.40);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1ebe59;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: .7rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 24px; height: 24px; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  transition: color var(--transition);
}

.navbar.scrolled .logo-text { color: var(--navy); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__nav a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}

.navbar.scrolled .navbar__nav a { color: var(--gray-text); }
.navbar__nav a:hover { color: var(--gold) !important; }

.navbar__cta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--navy); }

/* Mobile menu */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* =========================================
   HERO
========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #2a5289 100%);
  overflow: hidden;
  padding-top: 80px;
}

/* Geometric decorations */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,162,74,.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,162,74,.10) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,162,74,.18);
  border: 1px solid rgba(200,162,74,.35);
  color: var(--gold);
  padding: .45rem 1rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero__title .accent { color: var(--gold); }

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__card-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero__main-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  padding: 2.5rem;
}

.hero__shield {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(200,162,74,.35);
}

.hero__shield svg { width: 44px; height: 44px; color: var(--navy); }

.hero__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: .5rem;
}

.hero__card-text {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1rem .5rem;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
}

.stat__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  margin-top: .3rem;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: .75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: var(--shadow-md);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.floating-badge--tl {
  top: -18px;
  left: -24px;
}

.floating-badge--br {
  bottom: -18px;
  right: -24px;
}

.badge-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* =========================================
   TRUST BAR
========================================= */
.trust-bar {
  background: var(--navy);
  padding: 1.5rem 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* =========================================
   ABOUT
========================================= */
.about {
  padding: 7rem 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.about__visual {
  position: relative;
}

.about__img-card {
  background: var(--gray-bg);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.about__img-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.about__icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about__icon-item {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about__icon-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about__icon-item .icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a5289 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
}

.about__icon-item .icon svg { color: var(--gold); }

.about__icon-item p {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}

.about__text {
  color: var(--gray-text);
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--gray-text);
}

.check {
  width: 22px; height: 22px;
  background: rgba(200,162,74,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}

.check svg { width: 12px; height: 12px; color: var(--gold); }

/* =========================================
   SERVICES
========================================= */
.services {
  padding: 7rem 0;
  background: var(--gray-bg);
}

.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services__header .section-subtitle { margin-inline: auto; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #EEF2F8 0%, #dce5f0 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5289 100%);
}

.service-card__icon svg { color: var(--navy); transition: var(--transition); }
.service-card:hover .service-card__icon svg { color: var(--gold); }

.service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.service-card__text {
  font-size: .86rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}

.service-card:hover .service-card__link { gap: .55rem; }

/* =========================================
   BENEFITS
========================================= */
.benefits {
  padding: 7rem 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
}

.benefit-item:hover {
  background: var(--gray-bg);
  border-color: rgba(200,162,74,.25);
}

.benefit-item__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a5289 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item__icon svg { color: var(--gold); }

.benefit-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}

.benefit-item__text {
  font-size: .9rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.benefits__cta-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.benefits__cta-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(200,162,74,.2) 0%, transparent 70%);
  border-radius: 50%;
}

.benefits__cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: .75rem;
}

.benefits__cta-box p {
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.benefits__cta-box .highlight {
  background: rgba(200,162,74,.18);
  border: 1px solid rgba(200,162,74,.35);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.75rem;
}

.benefits__cta-box .highlight span {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
}

/* =========================================
   CONTACT / CTA
========================================= */
.contact {
  padding: 7rem 0;
  background: var(--gray-bg);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact__info .section-subtitle { max-width: 100%; }

.contact__details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
  color: var(--gray-text);
}

.contact__detail .icon-wrap {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact__detail .icon-wrap svg { color: var(--navy); }

.contact__form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact__form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid #e0e4ea;
  border-radius: 10px;
  font-family: inherit;
  font-size: .93rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,162,74,.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wa-number-edit {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.wa-number-edit input {
  flex: 1;
}

/* =========================================
   WHATSAPP FLOAT
========================================= */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
}

.wa-float__btn {
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.wa-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

.wa-float__btn svg { color: var(--white); width: 30px; height: 30px; }

.wa-pulse {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: .75; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand .logo-text { color: var(--white); font-size: 1.4rem; }

.footer__brand p {
  margin-top: 1rem;
  font-size: .88rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer__col h4 {
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__col ul li a {
  font-size: .88rem;
  transition: color var(--transition);
}

.footer__col ul li a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .83rem;
}

.footer__bottom a { transition: color var(--transition); }
.footer__bottom a:hover { color: var(--gold); }

.footer__gold { color: var(--gold); font-weight: 600; }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .navbar__nav, .navbar__cta { display: none; }
  .hamburger { display: flex; }

  .hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle, .hero__actions { margin-inline: auto; justify-content: center; }
  .hero__visual { display: none; }

  .about__grid,
  .benefits__grid,
  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .floating-badge { display: none; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .services__grid { grid-template-columns: 1fr; }
}
