:root {
--primary: #3b82f6;
--accent: #22c55e;
  --bg: #050816;
  --text: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at top, #0b1220, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

/* ================= HEADER ================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(10, 15, 30, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 1px;
}

nav a {
  margin-left: 20px;
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.2s;
}

nav a:hover {
  color: var(--primary);
}

/* ================= HERO ================= */
.hero {
  text-align: center;
  padding: 140px 20px 100px;
  background: radial-gradient(circle at top, rgba(59,130,246,0.15), transparent 60%);
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero p {
  margin-top: 20px;
  color: #94a3b8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.btn:hover {
  background: var(--accent);
  color: black;
  transform: translateY(-2px);
}

/* ================= SECTIONS ================= */
.section {
  padding: 80px 60px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* ================= CARDS ================= */
.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-section {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.trust-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 14px;
  width: 280px;
  text-align: center;
}

.trust-item h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.trust-item p {
  color: #94a3b8;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  width: 280px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* ================= FORM ================= */
input, textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  outline: none;
}

textarea {
  resize: none;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 30px;
  color: #64748b;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
  }

  nav a {
    margin-left: 10px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section {
    padding: 60px 20px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }
}

.card p {
  margin-top: 10px;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 30px;
  color: #64748b;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ================= WHATSAPP BUTTON ================= */

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
  transition: 0.25s;
  z-index: 1000;
}

.whatsapp-btn img {
  width: 34px;
  height: 34px;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

.card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ================= GOOGLE MAP ================= */

.map-container {
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}
/* ================= HERO BUTTONS ================= */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.secondary-btn {
  background: transparent;
  border: 1px solid var(--primary);
}

.secondary-btn:hover {
  background: var(--primary);
  color: white;
}
/* ================= TRUST SECTION ================= */

.trust-section {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.trust-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 14px;
  width: 280px;
  text-align: center;
}

.trust-item h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.trust-item p {
  color: #94a3b8;
}
