:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #334155;
  --brand: #003a8c;
  --brand-2: #0091d5;
  --line: #c7d2e0;
  --success: #0a7c4f;
  --shadow: 0 16px 40px rgba(6, 31, 68, 0.12);
  --radius-lg: 20px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, #dcecff 0, transparent 32%),
    radial-gradient(circle at 90% 16%, #ddeffd 0, transparent 28%),
    linear-gradient(180deg, #eef4fc, #f8fbff 35%, #f6f9fc 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #ffffff;
  color: var(--ink);
  padding: 0.75rem;
  z-index: 99;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(244, 247, 251, 0.82);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

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

.brand img {
  width: 136px;
  height: auto;
  border-radius: 0;
}

.menu {
  display: none;
}

.hero {
  padding: 0;
  margin: 0;
}

.hero-grid {
  width: 100%;
}

.eyebrow {
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 700;
}

h1 {
  font-size: clamp(1.95rem, 4vw, 3.1rem);
}

.lead {
  color: var(--muted);
  max-width: 52ch;
}

.hero-image {
  margin: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  transform: translateY(0);
  animation: riseIn 0.9s ease-out 0.1s both;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: initial;
  object-position: initial;
  border-radius: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.5rem 1.1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 58, 140, 0.24);
}

.btn-ghost {
  border-color: rgba(0, 58, 140, 0.32);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.75);
}

.contact {
  padding: 2.8rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 31, 68, 0.1);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.field {
  margin-bottom: 0.75rem;
}

.field label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  background: #fbfdff;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(0, 145, 213, 0.25);
  border-color: var(--brand-2);
}

.field input.field-invalid,
.field textarea.field-invalid {
  border-color: #dc2626;
  outline: 2px solid rgba(220, 38, 38, 0.2);
}

.field-helper {
  display: none;
  margin: 0.25rem 0 0;
  font-size: 0.86rem;
  line-height: 1.3;
  color: #b91c1c;
}

.field-helper:not(:empty) {
  display: block;
}

.consent-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
}

.consent-wrap input {
  margin-top: 0.3rem;
}

.consent-wrap .field-helper {
  grid-column: 2;
}

.form-status {
  min-height: 1.4rem;
  margin-top: 0.8rem;
  font-weight: 700;
  color: var(--success);
}

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  padding: 2rem 0 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(236, 244, 255, 0.76));
}

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

.footer-grid h2 {
  font-size: 1.15rem;
}

.footer-bottom {
  margin-top: 1.1rem;
  border-top: 1px dashed rgba(15, 23, 42, 0.26);
  padding-top: 0.9rem;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  border-radius: 999px;
  background: #1db954;
  color: #ffffff;
  text-decoration: none;
  padding: 0.78rem 1.05rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(29, 185, 84, 0.35);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  filter: brightness(0.95);
}

@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }


}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 72px;
  }

  .contact {
    padding: 2.3rem 0;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    font-size: 0.92rem;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
