@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #ff6b00;
  --primary-dark: #e05b00;
  --secondary: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  --surface: #ffffff;
  --radius: 18px;
  --shadow: 0 15px 45px rgba(15, 23, 42, 0.12);
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--secondary);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 500;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-menu a i {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.5rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 3rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 0, 0.12);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  margin: 1rem 0;
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 15px 20px rgba(255, 107, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border-color: rgba(15, 23, 42, 0.15);
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.metric {
  background: var(--surface);
  padding: 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.metric strong {
  font-size: 1.8rem;
  display: block;
}

section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.process-step {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px dashed rgba(15, 23, 42, 0.15);
}

.cta-banner {
  background: linear-gradient(135deg, #0f172a, #1d2a44);
  color: #fff;
  border-radius: var(--radius);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}

footer {
  background: #0b1224;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 2rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.9rem;
}

.contact-info,
.form-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.07);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font: inherit;
  background: #fdfdfd;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.whatsapp-floating {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 900;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 5.2rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: none;
  background: #0f172a;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 880;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  background: #fff;
  border-radius: 1.2rem;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(15, 23, 42, 0.08);
  max-width: min(320px, 85vw);
  z-index: 1200;
}

.hidden {
  display: none !important;
}

.cookie-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 107, 0, 0.3));
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner button {
  border: none;
  border-radius: 0.9rem;
  padding: 0.55rem 1.2rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.25);
  cursor: pointer;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.timeline {
  border-left: 2px solid rgba(15, 23, 42, 0.1);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.9rem;
  top: 0.5rem;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--primary);
  border-radius: 50%;
}

.faq {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-item h4 {
  margin: 0 0 0.5rem 0;
}

.map-placeholder {
  width: 100%;
  height: 280px;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(255, 107, 0, 0.08));
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px dashed rgba(15, 23, 42, 0.2);
}

.map-embed {
  width: 100%;
  height: 300px;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
}

.map-embed .leaflet-control-container {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 72px;
    right: 5%;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 1rem;
    width: min(280px, 80vw);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .nav {
    position: relative;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

