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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #12253b 0, #050814 40%, #02040a 100%);
  color: #f4f7ff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Topbar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to right, rgba(3, 10, 24, 0.96), rgba(3, 16, 32, 0.9));
  border-bottom: 1px solid rgba(90, 200, 255, 0.15);
  padding: 0.9rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.55);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.brand-tag {
  font-size: 0.75rem;
  opacity: 0.7;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
  align-items: center;
}

.nav a {
  opacity: 0.8;
  transition: all 0.2s ease;
}

.nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #020617;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.55);
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.5rem;
  padding: 3.5rem 5vw 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left h1 {
  font-size: clamp(2.2rem, 3.1vw + 1.4rem, 3.2rem);
  line-height: 1.1;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 34rem;
  opacity: 0.85;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), rgba(15, 23, 42, 0.9));
}

.pill-outline {
  border-color: rgba(74, 222, 128, 0.6);
  color: #bbf7d0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111827;
  box-shadow: 0 10px 30px rgba(248, 181, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(248, 181, 0, 0.54);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.btn-secondary:hover {
  background: rgba(30, 64, 175, 0.8);
}

.btn-full {
  width: 100%;
}

.hero-footnote {
  font-size: 0.78rem;
  opacity: 0.7;
  max-width: 30rem;
}

/* Hero right card */

.hero-right {
  display: flex;
  align-items: center;
}

.hero-card {
  width: 100%;
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.32), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.9);
}

.hero-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.hero-card li::before {
  content: "•";
  color: #4ade80;
  margin-right: 0.4rem;
}

/* Sections */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 5vw 2.8rem;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 1));
  border-top: 1px solid rgba(51, 65, 85, 0.8);
  border-bottom: 1px solid rgba(30, 64, 175, 0.65);
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.92rem;
  opacity: 0.75;
  max-width: 36rem;
}

/* Cards grid */

.cards-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
}

.card {
  border-radius: 1.1rem;
  padding: 1.2rem 1.15rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.1), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(51, 65, 85, 0.9);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.95);
  border-color: rgba(74, 222, 128, 0.9);
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.16), rgba(15, 23, 42, 1));
}

/* Steps */

.steps {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}

.step {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 1.4rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(51, 65, 85, 0.85);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.step-number {
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #020617;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin-left: 1.6rem;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.step p {
  margin-left: 1.6rem;
  font-size: 0.88rem;
  opacity: 0.8;
}

/* Contact */

.contact {
  padding-bottom: 3rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  gap: 2rem;
  margin-top: 1.4rem;
}

.contact-text h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.contact-text p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.contact-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.contact-list a {
  color: #7dd3fc;
}

.contact-card {
  border-radius: 1.3rem;
  padding: 1.4rem 1.3rem;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(59, 130, 246, 0.6);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.98);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0.8rem;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.9);
  padding: 0.45rem 0.6rem;
  color: #e5e7eb;
  font-size: 0.85rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(56, 189, 248, 0.9);
  border-color: transparent;
}

.form-note {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 0.2rem;
}

/* Footer */

.footer {
  border-top: 1px solid rgba(30, 64, 175, 0.8);
  padding: 1rem 5vw 1.4rem;
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.8;
  margin-top: auto;
}

.footer a {
  color: #7dd3fc;
}

/* Legal page */

.legal-page {
  background: radial-gradient(circle at top, #020617, #020617);
  color: #e5e7eb;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.legal-header h1 {
  font-size: 1.7rem;
  margin-bottom: 0.3rem;
}

.legal-header p {
  font-size: 0.85rem;
  opacity: 0.7;
}

.legal-container section {
  margin-top: 1.6rem;
}

.legal-container h2 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.legal-container p,
.legal-container li {
  font-size: 0.9rem;
  opacity: 0.9;
}

.legal-container ul {
  margin-left: 1.1rem;
  margin-top: 0.3rem;
  display: grid;
  gap: 0.2rem;
}

.legal-footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

.legal-footer a {
  color: #7dd3fc;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2.4rem;
  }

  .hero-right {
    order: -1;
  }

  .hero-card {
    margin-bottom: 0.8rem;
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    padding-inline: 1.4rem;
  }

  .section {
    padding-inline: 1.4rem;
  }

  .footer {
    padding-inline: 1.4rem;
  }

  .hero-left h1 {
    font-size: 2rem;
  }
}



.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(3, 18, 40, 0.9);
  cursor: pointer;
  z-index: 40;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.floating-whatsapp span {
  font-size: 26px;
  line-height: 1;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  background: #20bd5a;
}

@media (max-width: 640px) {
  .floating-whatsapp {
    right: 1.1rem;
    bottom: 1.1rem;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp span {
    font-size: 24px;
  }
}
