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

:root {
  --charcoal: #1f252d;
  --charcoal-soft: #2d3642;
  --white: #ffffff;
  --orange: #f47b20;
  --orange-dark: #d96410;
  --bg: #ffffff;
  --muted: #667285;
  --border: #dde3ea;
  --shadow: 0 18px 40px rgba(23, 33, 46, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.65;
}

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

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(221, 227, 234, 0.8);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(155deg, var(--orange) 0%, #f3a12d 100%);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(244, 123, 32, 0.3);
}

.nav-toggle {
  order: 3;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 10px;
  padding: 0 12px;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 999px;
}

.site-nav {
  order: 4;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1rem 1.1rem;
}

.site-nav a {
  display: block;
  padding: 0.65rem 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.008em;
  border-bottom: 1px solid #f1f3f6;
}

.site-nav a:last-child {
  border-bottom: 0;
}

.site-nav a.active {
  color: var(--charcoal);
  font-weight: 700;
}

.site-nav.open {
  display: flex;
}

.header-call {
  order: 2;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(31, 37, 45, 0.16);
}

.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background-image: linear-gradient(120deg, rgba(20, 25, 34, 0.84), rgba(20, 25, 34, 0.5)), var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -80px;
  height: 150px;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(244, 123, 32, 0.42), transparent 70%);
}

.hero .container {
  padding: 4.4rem 0 4.6rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  margin: 1.15rem 0 0.9rem;
  max-width: 900px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.85rem, 4.9vw, 3.45rem);
  line-height: 1.18;
}

.hero p {
  max-width: 760px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.91);
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 24px rgba(244, 123, 32, 0.3);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-light {
  border-color: var(--border);
  color: var(--charcoal);
  background: var(--white);
}

.section {
  padding: 3.7rem 0;
}

.section-title {
  max-width: 780px;
  margin-bottom: 1.6rem;
}

.section-title h2 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.2;
}

.section-title p {
  margin: 0.72rem 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(15, 24, 32, 0.05);
  padding: 1.15rem;
}

.card h3,
.card h4 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.card p {
  margin: 0.62rem 0 0;
  color: var(--muted);
}

.card ul {
  margin: 0.8rem 0 0;
  padding: 0 0 0 1.1rem;
}

.card li {
  margin-top: 0.35rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.image-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accent-panel {
  background: linear-gradient(150deg, var(--charcoal), var(--charcoal-soft));
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.accent-panel h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
}

.accent-panel p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.split-cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.metric {
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1rem;
}

.metric strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
}

.highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.highlight-list li {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 0.84rem 0.95rem;
  font-weight: 500;
}

.pricing-card {
  display: grid;
  gap: 0.65rem;
}

.price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
}

.tag {
  display: inline-flex;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.64rem;
  color: var(--muted);
}

.resource-link,
.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0.92rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 600;
}

.resource-link small,
.contact-link small {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-weight: 500;
}

.input-grid {
  display: grid;
  gap: 0.78rem;
}

label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.93rem;
  font-weight: 600;
}

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

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

.site-footer {
  margin-top: 3rem;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.82);
  padding: 2rem 0 4.7rem;
}

.footer-grid {
  display: grid;
  gap: 1.1rem;
}

.footer-grid h4 {
  margin: 0;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.mobile-quick {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #dadde2;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.mobile-quick a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  font-weight: 700;
}

.mobile-quick a:first-child {
  background: var(--orange);
  color: var(--white);
}

.mobile-quick a:last-child {
  color: var(--charcoal);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 4.1rem;
  z-index: 96;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.36);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 34px rgba(37, 211, 102, 0.45);
}

.whatsapp-float img {
  width: 29px;
  height: 29px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero [data-animate] {
  opacity: 0;
  transform: translateY(22px);
}

.hero.is-ready [data-animate] {
  opacity: 1;
  transform: translateY(0);
}

.hero h1[data-animate] {
  transition-delay: 0.08s;
}

.hero p[data-animate] {
  transition-delay: 0.16s;
}

.hero .hero-actions[data-animate] {
  transition-delay: 0.24s;
}

@media (min-width: 700px) {
  .section {
    padding: 4.8rem 0;
  }

  .grid.two,
  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-cta {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (min-width: 1120px) {
  .nav-wrap {
    min-height: 78px;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .brand {
    flex-shrink: 0;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    order: 2;
    margin-left: 0.7rem;
    margin-right: 0.7rem;
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    padding: 0;
    gap: 0.72rem;
    background: transparent;
  }

  .site-nav a {
    border: 0;
    padding: 0.2rem 0.16rem;
    position: relative;
    font-size: 0.88rem;
    line-height: 1.25;
    letter-spacing: 0.008em;
    white-space: nowrap;
    text-align: center;
  }

  .site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -7px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }

  .site-nav a:hover::after,
  .site-nav a.active::after {
    transform: scaleX(1);
  }

  .header-call {
    order: 3;
    margin-left: 0.35rem;
    flex-shrink: 0;
    padding-inline: 1rem;
    min-height: 42px;
    font-size: 0.9rem;
    background: var(--orange);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(244, 123, 32, 0.3);
  }

  .header-call:hover {
    box-shadow: 0 16px 30px rgba(244, 123, 32, 0.38);
  }

  .hero .container {
    padding: 6rem 0 6.3rem;
  }

  .two-col {
    grid-template-columns: 1.1fr 1fr;
    gap: 1.3rem;
  }

  .grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-quick {
    display: none;
  }

  .whatsapp-float {
    bottom: 1.35rem;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}
