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

:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --text: #0b1320;
  --muted: #5c6676;
  --primary: #0b1d39;
  --accent: #f2c94c;
  --accent-strong: #f0b729;
  --border: #e6e8ec;
  --shadow: 0 24px 80px rgba(11, 29, 57, 0.12);
  --radius: 18px;
}

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: -30% -10% auto auto;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle at center, rgba(242, 201, 76, 0.22), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  inset: auto auto -30% -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at center, rgba(11, 29, 57, 0.12), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--bg-soft);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.section-header p {
  color: var(--muted);
  max-width: 560px;
}

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(11, 29, 57, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card.small {
  padding: 22px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 29, 57, 0.2);
}

.card-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(11, 29, 57, 0.08);
  color: var(--primary);
  margin-bottom: 16px;
}

.icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.6;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 29, 57, 0.05);
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--primary);
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-link.active,
.nav-link:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  cursor: pointer;
}

.nav-cta {
  margin-left: auto;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 48px;
  padding: 96px 0 72px;
}

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-card-header {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 29, 57, 0.08);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
}

.badge.outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.checklist li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(11, 29, 57, 0.22);
}

.btn.primary:hover {
  transform: translateY(-1px);
}

.btn.secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.btn.accent {
  background: var(--accent);
  color: #1a1a1a;
}

.btn.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.text-link {
  font-weight: 600;
  color: var(--primary);
}

.service-block {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  margin-bottom: 24px;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(242, 201, 76, 0.22);
  color: #3d3d3d;
  font-size: 0.75rem;
  font-weight: 600;
}

.list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.list li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.response {
  font-weight: 600;
  color: var(--primary);
  margin-top: 12px;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 12px 30px rgba(11, 29, 57, 0.08);
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-grid.full {
  grid-template-columns: 1fr;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 29, 57, 0.12);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 10px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-card {
  background: linear-gradient(120deg, rgba(11, 29, 57, 0.98), rgba(11, 29, 57, 0.82));
  color: #fff;
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-card .btn {
  background: var(--accent);
  color: #1a1a1a;
}

.info-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 64px 0 32px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-title {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 200;
}

.whatsapp-float::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

details {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  background: #fff;
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-group {
    order: 3;
    width: 100%;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 52px;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    display: none;
    min-width: 200px;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 72px 0 56px;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  * {
    scroll-behavior: auto !important;
  }
}
