/* --- Variables (fondo blanco, texto negro, acento naranja) --- */
:root {
  --bg-dark: #ffffff;
  --bg-card: #fff8f5;
  --bg-card-hover: #ffefe6;
  --orange: #ff6b35;
  --orange-light: #ff8555;
  --orange-dark: #e55a2b;
  --text: #1a1a1a;
  --text-muted: #555555;
  --border: rgba(255, 107, 53, 0.25);
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --font: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.2rem;
}
.logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.logo-text { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.btn-nav {
  color: var(--orange) !important;
  border: 2px solid var(--orange);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}
.btn-nav:hover { background: var(--orange); color: #fff !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-secondary:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  margin-top: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 107, 53, 0.12) 0%, transparent 55%),
              linear-gradient(180deg, var(--bg-dark) 0%, #fffaf8 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --- Sections --- */
.section {
  padding: 4rem 0;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

/* --- Benefits --- */
.benefits { background: linear-gradient(180deg, #fffaf8 0%, #ffffff 100%); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.benefit-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.benefit-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--orange);
}
.benefit-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* --- CTA --- */
.cta-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.06) 0%, #fffaf8 50%, transparent 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-content { text-align: center; }
.cta-text {
  max-width: 540px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
}

/* --- Platform --- */
.platform { background: linear-gradient(180deg, #ffffff 0%, #fff8f5 50%, #ffffff 100%); }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, background 0.2s;
}
.platform-card:hover {
  border-color: var(--orange);
  background: var(--bg-card-hover);
}
.platform-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--orange);
}
.platform-card p { margin: 0 0 1rem; color: var(--text-muted); font-size: 0.95rem; }
.link-arrow {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.link-arrow:hover { text-decoration: underline; }
.link-arrow::after { content: ' →'; }

/* --- Testimonials --- */
.testimonial-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--orange);
}
.testimonial-text {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--text);
}
.testimonial-author {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.testimonial-author strong { color: var(--orange); }

/* --- Coverage --- */
.coverage { text-align: center; }
.coverage-text {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* --- Pricing --- */
.pricing { background: linear-gradient(180deg, #fffaf8 0%, #ffffff 100%); }
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: -1rem 0 2rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.price-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.price-premium { border-color: rgba(255, 107, 53, 0.5); }
.price-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: var(--orange);
}
.price-amount {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  color: var(--text);
}
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  text-align: left;
}
.price-features li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.price-features li:last-child { border-bottom: none; }
.price-card .btn { width: 100%; text-align: center; }

/* --- Newsletter --- */
.newsletter {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--orange);
}
.newsletter-form input::placeholder { color: var(--text-muted); }

/* --- Footer --- */
.footer {
  background: linear-gradient(180deg, #fff5f0 0%, #ffefe6 100%);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-content {
  display: grid;
  gap: 2rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-logo { height: 36px; width: auto; object-fit: contain; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-col h4 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--orange);
}
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--orange); }
.footer-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    padding: 5rem 1.5rem 1.5rem;
    gap: 1rem;
    border-left: 1px solid var(--border);
    transition: right 0.3s;
  }
  .nav-links.is-open { right: 0; }
  .nav-toggle { display: flex; }
  .hero { min-height: 75vh; padding: 6rem 0 3rem; }
  .section { padding: 3rem 0; }
}
