@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark: #A68A3E;
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --black-card: #141414;
  --white: #FFFFFF;
  --white-soft: #F5F5F5;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --gray-dark: #333333;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-gold: 0 0 30px rgba(201,168,76,0.15);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 50px; width: auto; object-fit: contain; transition: var(--transition); }
.navbar.scrolled .nav-logo img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--white-soft); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; letter-spacing: 0.5px; position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.btn-simulate {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black); padding: 0.7rem 1.8rem; border: none; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem; cursor: pointer; text-decoration: none;
  transition: var(--transition); letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.btn-simulate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201,168,76,0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--white); transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 2rem 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(201,168,76,0.05) 0%, transparent 50%),
              var(--black);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-container {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-content h1 {
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700;
  line-height: 1.15; margin-bottom: 1.5rem;
}
.hero-content h1 .gold { color: var(--gold); }
.hero-content p {
  font-size: 1.15rem; color: var(--gray-light); margin-bottom: 2rem;
  max-width: 500px; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-outline {
  border: 1px solid var(--gold); color: var(--gold); background: transparent;
  padding: 0.7rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  cursor: pointer; text-decoration: none; transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1); transform: translateY(-2px);
}
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image-wrapper {
  position: relative; width: 100%; max-width: 480px;
  border-radius: 20px; overflow: hidden;
}
.hero-image-wrapper img {
  width: 100%; height: auto; border-radius: 20px;
  box-shadow: var(--shadow-gold);
}

/* Google Rating Badge */
.google-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--black-card); border: 1px solid rgba(201,168,76,0.2);
  padding: 0.6rem 1.2rem; border-radius: 50px; margin-top: 1.5rem;
  cursor: pointer; text-decoration: none; transition: var(--transition);
}
.google-badge:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.google-badge img { height: 24px; }
.google-badge .rating { font-weight: 700; color: var(--gold); font-size: 1rem; }
.google-badge .stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.google-badge .label { color: var(--gray-light); font-size: 0.8rem; }

/* ===== SECTIONS ===== */
.section {
  padding: 100px 2rem; position: relative;
}
.section-dark { background: var(--black-light); }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 1rem;
}
.section-header h2 .gold { color: var(--gold); }
.section-header p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== BENEFITS CARDS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.benefit-card {
  background: var(--black-card); border: 1px solid rgba(201,168,76,0.1);
  border-radius: 16px; padding: 2.5rem 2rem; transition: var(--transition);
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.benefit-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-gold); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,168,76,0.08); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.5rem;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 0 20px rgba(201,168,76,0.05);
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon {
  background: rgba(201,168,76,0.15);
  box-shadow: 0 0 25px rgba(201,168,76,0.12);
}
.benefit-card h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 0.8rem; }
.benefit-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* ===== PRODUCTS ===== */
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.product-card {
  background: var(--black-card); border: 1px solid rgba(201,168,76,0.1);
  border-radius: 16px; padding: 2.5rem; transition: var(--transition);
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.product-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.product-icon {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201,168,76,0.08); display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 0 20px rgba(201,168,76,0.05);
  transition: var(--transition);
}
.product-card:hover .product-icon {
  background: rgba(201,168,76,0.15);
  box-shadow: 0 0 25px rgba(201,168,76,0.12);
}
.product-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--gold); }
.product-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* More Coverages CTA */
.more-coverages {
  text-align: center; margin-top: 3rem; margin-bottom: 1rem; padding-top: 2rem;
  display: flex; justify-content: center; align-items: center; width: 100%;
  border-top: 1px solid rgba(201,168,76,0.08);
  clear: both;
  grid-column: 1 / -1;
}

/* ===== HOW IT WORKS ===== */
.steps-container { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.step-item { text-align: center; max-width: 250px; position: relative; }
.step-number {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black); font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.step-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-item p { color: var(--gray); font-size: 0.9rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(201,168,76,0.15); border-radius: 12px;
  margin-bottom: 1rem; overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(201,168,76,0.3); }
.faq-question {
  width: 100%; padding: 1.2rem 1.5rem; background: var(--black-card);
  color: var(--white); border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 500; text-align: left; font-family: var(--font-body);
}
.faq-question .icon { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  background: rgba(20,20,20,0.5);
}
.faq-answer p { padding: 0 1.5rem 1.2rem; color: var(--gray-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 1rem; color: var(--gold); }
.contact-info p { color: var(--gray-light); margin-bottom: 1.5rem; line-height: 1.7; }
.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.contact-item .ci-icon {
  width: 45px; height: 45px; border-radius: 10px;
  background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.contact-item span { color: var(--gray-light); font-size: 0.95rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.9rem 1.2rem; background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.15); border-radius: 10px;
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black-light); border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 2rem 1.5rem; text-align: center;
}
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-logo img { height: 50px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer p { color: var(--gray); font-size: 0.85rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin: 1rem 0; flex-wrap: wrap; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed; bottom: 25px; right: 25px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition);
  text-decoration: none; animation: pulse-wp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

@keyframes pulse-wp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ===== PARTICLES CANVAS ===== */
.particles-canvas {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; width: 100%; height: 100%;
}
.hero:hover .particles-canvas { pointer-events: auto; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-image { margin-top: 2rem; }
  .google-badge { justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    flex-direction: column; background: rgba(10,10,10,0.98); justify-content: center;
    align-items: center; gap: 2rem; }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; z-index: 1001; }
}
@media (max-width: 600px) {
  .hero-content h1 { font-size: 2rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 1.2rem; }
  .section-header h2 { font-size: 1.8rem; }
  .steps-container { flex-direction: column; align-items: center; }
}
