*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --text: #1a1a1a;
  --muted: #666;
  --bg: #fff;
  --bg2: #f8f7f4;
  --border: #e5e5e5;
  --white: #fff;
  --radius: 12px;
}

body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }

/* HEADER */
header { background: var(--dark); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,.3); }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 14px 20px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { background: var(--gold); color: #fff; font-weight: 800; font-size: 13px; width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-name { color: var(--white); font-weight: 700; font-size: 16px; }
.logo-sub { color: var(--gold); font-size: 9px; letter-spacing: 2px; font-weight: 600; }
nav { display: flex; gap: 4px; margin-left: auto; }
nav a { color: rgba(255,255,255,.8); text-decoration: none; padding: 8px 14px; border-radius: 6px; font-size: 14px; transition: all .2s; }
nav a:hover, nav a.active { color: var(--white); background: rgba(255,255,255,.1); }
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.phone { color: rgba(255,255,255,.7); font-size: 13px; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; padding: 4px; }
.mobile-nav { display: none; flex-direction: column; background: var(--dark2); padding: 10px 20px 16px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,.85); text-decoration: none; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 15px; }

/* BUTTONS */
.btn-whatsapp { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all .2s; white-space: nowrap; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-whatsapp.lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn-whatsapp.sm { padding: 8px 16px; font-size: 13px; margin-top: 12px; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); color: #fff; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px; border: 1px solid rgba(255,255,255,.3); transition: all .2s; }
.btn-outline:hover { background: rgba(255,255,255,.2); }

/* HERO */
.hero { background: var(--dark); background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); padding: 100px 20px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 50%, rgba(184,134,11,.15) 0%, transparent 70%); }
.hero .container { position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(184,134,11,.2); border: 1px solid rgba(184,134,11,.4); color: var(--gold-light); padding: 6px 20px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { color: #fff; font-size: clamp(28px, 5vw, 54px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero h1 .gold { color: var(--gold-light); }
.hero p { color: rgba(255,255,255,.8); font-size: 18px; max-width: 640px; margin: 0 auto 32px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* TICKER */
.ticker { background: var(--gold); overflow: hidden; padding: 12px 0; }
.ticker-inner { display: flex; gap: 24px; white-space: nowrap; animation: ticker 25s linear infinite; width: max-content; }
.ticker-inner span { color: #fff; font-size: 13px; font-weight: 600; }
.ticker-inner .sep { color: rgba(255,255,255,.6); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* STATS */
.stats { padding: 80px 20px; background: var(--bg); }
.stats h2 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 560px; margin: 0 auto 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 600px; margin: 0 auto; }
.stat-card { background: var(--dark); border-radius: var(--radius); padding: 40px 24px; text-align: center; }
.stat-num { font-size: 48px; font-weight: 800; color: var(--gold-light); }
.stat-label { color: rgba(255,255,255,.8); font-size: 15px; margin-top: 6px; }

/* WHY */
.why { padding: 80px 20px; background: var(--bg2); }
.why h2 { font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 8px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 960px; margin: 0 auto; }
.why-card { background: var(--bg); border-radius: var(--radius); padding: 32px 24px; border: 1px solid var(--border); }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.why-card p { color: var(--muted); font-size: 15px; }

/* CTA */
.cta { background: var(--dark); padding: 80px 20px; }
.cta h2 { color: #fff; font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 28px; }

/* PAGE HERO */
.page-hero { background: var(--dark); padding: 64px 20px; }
.page-hero h1 { color: #fff; font-size: clamp(24px,4vw,40px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 17px; }

/* SERVICES */
.services-section { padding: 80px 20px; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: var(--bg2); border-radius: var(--radius); padding: 32px 24px; border: 1px solid var(--border); transition: box-shadow .2s; }
.service-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.service-icon { font-size: 32px; margin-bottom: 12px; }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ABOUT */
.about-section { padding: 80px 20px; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 16px; line-height: 1.7; }
.about-values { display: grid; gap: 16px; }
.value-card { background: var(--bg2); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); }
.value-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--gold); }
.value-card p { font-size: 14px; color: var(--muted); }

/* CONTACT */
.contact-section { padding: 80px 20px; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon { font-size: 28px; flex-shrink: 0; }
.contact-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.contact-item p, .contact-item address { font-size: 15px; color: var(--muted); font-style: normal; line-height: 1.7; }
.contact-item a { color: var(--gold); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.map-link { display: inline-block; margin-top: 8px; color: var(--gold); font-weight: 600; font-size: 14px; }
.map-container { border-radius: var(--radius); overflow: hidden; }

/* FOOTER */
footer { background: var(--dark2); padding: 60px 20px 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,.5); font-size: 14px; margin-top: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col address { color: rgba(255,255,255,.6); font-style: normal; font-size: 14px; line-height: 1.8; }
.footer-col address a { color: var(--gold-light); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; color: rgba(255,255,255,.4); font-size: 13px; }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.4); z-index: 999; transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav, .header-actions { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px; }
  .stats, .why, .cta, .services-section, .about-section, .contact-section { padding: 56px 20px; }
  .hero h1 { font-size: 28px; }
}
