:root {
  --primary: #173f35;
  --primary-2: #285d50;
  --ink: #17201e;
  --muted: #66736f;
  --line: #e6ebe8;
  --soft: #f6f8f7;
  --white: #ffffff;
  --accent: #d5a84f;
  --shadow: 0 18px 60px rgba(24, 55, 47, .09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

.topbar {
  background: #f8faf9;
  color: #47534f;
  font-size: .86rem;
  border-bottom: 1px solid var(--line);
}

.topbar a:hover { color: var(--primary); }

.navbar {
  box-shadow: 0 2px 14px rgba(22, 54, 46, .03);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-link {
  font-weight: 600;
  font-size: .93rem;
}

.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  font-weight: 700;
  border-radius: 12px;
  padding: .75rem 1.1rem;
  transition: .2s ease;
}

.btn-primary-custom:hover {
  background: var(--primary-2);
  border-color: var(--primary-2);
  color: #fff;
  transform: translateY(-1px);
}

.hero {
  padding: 96px 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(213,168,79,.10), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfcfb 100%);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(2.7rem, 5.4vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero .lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.14rem;
}

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

.card-kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .11em;
  margin-bottom: 10px;
}

.hero-card h2 {
  font-size: 2rem;
  letter-spacing: -.035em;
  font-weight: 800;
}

.form-control, .form-select {
  min-height: 52px;
  border-radius: 12px;
  border-color: #dfe5e2;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 .2rem rgba(40,93,80,.10);
}

.privacy-note {
  color: var(--muted);
  font-size: .78rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-row div {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.trust-row div:last-child { border-right: 0; }

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: .95rem;
}

.trust-row span {
  color: var(--muted);
  font-size: .78rem;
  margin-top: 3px;
}

.section {
  padding: 96px 0;
}

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

.section-heading {
  max-width: 730px;
}

.section-heading h2,
.display-title {
  font-weight: 800;
  letter-spacing: -.045em;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading p,
#empresa p {
  color: var(--muted);
}

.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  transition: .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-number {
  display: block;
  color: #94a19d;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  margin-bottom: 36px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

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

.visual-panel {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(23,63,53,.97), rgba(28,72,60,.88)),
    radial-gradient(circle at 80% 20%, #e0bb6c, transparent 35%);
  border-radius: 28px;
  padding: 44px;
  color: white;
  box-shadow: var(--shadow);
}

.visual-main span {
  display: block;
  opacity: .65;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  margin-bottom: 24px;
}

.visual-main strong {
  display: block;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.visual-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 18px 20px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.visual-badge span,
.visual-badge strong {
  display: block;
}

.visual-badge span {
  opacity: .7;
  font-size: .75rem;
}

.visual-badge strong { margin-top: 4px; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.section-dark {
  background: #13231f;
  color: white;
}

.section-dark h2 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -.045em;
}

.eyebrow-light { color: #d7e5e0; }

.process-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.process-card > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  font-weight: 800;
  margin-bottom: 28px;
}

.process-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

.process-card p {
  opacity: .7;
  margin-bottom: 0;
}

.company-data {
  max-width: 980px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.data-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 19px 24px;
  border-bottom: 1px solid var(--line);
}

.data-item:last-child { border-bottom: 0; }

.data-item span {
  color: var(--muted);
  font-size: .88rem;
}

.data-item strong {
  font-size: .92rem;
}

.contact-panel,
.location-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
}

.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -.045em;
}

.contact-panel > p { color: var(--muted); }

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  display: block;
  padding: 16px 18px;
  background: var(--soft);
  border-radius: 14px;
  transition: .2s ease;
}

.contact-links a:hover { transform: translateX(3px); }

.contact-links span,
.contact-links strong {
  display: block;
}

.contact-links span {
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-links strong {
  margin-top: 4px;
  font-size: .95rem;
  word-break: break-word;
}

.location-card {
  background: #f0f4f2;
}

.location-card h3 {
  font-size: 2rem;
  font-weight: 800;
}

.faq { max-width: 900px; }

.accordion-item {
  border-color: var(--line);
}

.accordion-button {
  font-weight: 700;
  padding: 22px 8px;
  background: transparent;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: transparent;
  box-shadow: none;
}

.accordion-body {
  color: var(--muted);
  padding-left: 8px;
  padding-right: 8px;
}

.cta-final {
  padding: 0 0 96px;
}

.cta-box {
  background: var(--primary);
  color: white;
  padding: 44px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-box span {
  opacity: .72;
  font-size: .85rem;
}

.cta-box h2 {
  max-width: 720px;
  margin: 7px 0 0;
  font-weight: 800;
  letter-spacing: -.04em;
}

footer {
  background: #0e1715;
  color: white;
  padding: 70px 0 28px;
}

.brand-footer small { color: rgba(255,255,255,.55); }

.footer-text {
  color: rgba(255,255,255,.6);
  max-width: 440px;
}

footer h3 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

footer a,
.footer-link {
  display: block;
  color: rgba(255,255,255,.76);
  margin: 9px 0;
  font-size: .9rem;
}

footer a:hover,
.footer-link:hover {
  color: white;
}

.footer-link {
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
}

footer hr {
  border-color: rgba(255,255,255,.1);
  margin: 42px 0 24px;
}

.footer-bottom {
  font-size: .78rem;
  color: rgba(255,255,255,.48);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1030;
  background: var(--primary);
  color: white;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1080;
  max-width: 920px;
  margin: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 65px rgba(0,0,0,.16);
  padding: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  color: var(--muted);
  font-size: .82rem;
}

.legal-text h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-top: 22px;
}

.legal-text p {
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .hero { padding: 72px 0; }
  .section { padding: 76px 0; }
  .navbar-collapse { padding-top: 16px; }
  .trust-row div { border-right: 0; }
  .cta-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767.98px) {
  .hero h1 { font-size: 2.75rem; }
  .hero-card { padding: 24px; }
  .data-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .visual-panel { min-height: 380px; padding: 30px; }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}
