:root {
  --blue-900: #012b89;
  --blue-800: #0046d5;
  --blue-700: #0c66f5;
  --blue-500: #2f9aff;
  --green-500: #18c64e;
  --green-600: #0ea83d;
  --yellow-400: #ffd23f;
  --yellow-500: #ffbf00;
  --red-500: #ff3b30;
  --white: #ffffff;
  --ink: #e9f1ff;
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 18px 40px rgba(0, 18, 60, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(47, 154, 255, 0.24), transparent 26%),
    linear-gradient(180deg, #062568 0%, #02163d 58%, #04112a 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 210, 63, 0.18);
  border: 1px solid rgba(255, 210, 63, 0.35);
  color: #ffe788;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.score,
.price {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.9rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: 2rem;
}

p {
  margin: 0;
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(1, 18, 54, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img,
.footer-brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand span {
  color: #9bd0ff;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
}

.site-menu a {
  color: var(--ink);
}

.site-menu a:hover {
  color: var(--yellow-400);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
}

.hero::before {
  width: 300px;
  height: 300px;
  right: -60px;
  top: 30px;
  background: rgba(255, 210, 63, 0.18);
}

.hero::after {
  width: 420px;
  height: 420px;
  left: -120px;
  bottom: -120px;
  background: rgba(24, 198, 78, 0.16);
}

.hero-orb,
.hero-grid-glow,
.hero-beam {
  position: absolute;
  display: block;
}

.hero-orb {
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.75;
  animation: floatOrb 14s ease-in-out infinite;
}

.hero-orb-1 {
  top: 4%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(52, 181, 255, 0.85) 0%, rgba(52, 181, 255, 0.08) 66%, transparent 100%);
}

.hero-orb-2 {
  top: 18%;
  right: 12%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 210, 63, 0.46) 0%, rgba(255, 210, 63, 0.05) 62%, transparent 100%);
  animation-delay: -4s;
  animation-duration: 18s;
}

.hero-orb-3 {
  bottom: -40px;
  left: 38%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(18, 214, 86, 0.26) 0%, rgba(18, 214, 86, 0.04) 62%, transparent 100%);
  animation-delay: -8s;
  animation-duration: 16s;
}

.hero-grid-glow {
  inset: 10% 6% 8%;
  border-radius: 38px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 68% 36%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 34%, transparent 76%);
  opacity: 0.35;
  transform: perspective(900px) rotateX(72deg);
  transform-origin: center top;
}

.hero-beam {
  top: -12%;
  right: 16%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(47, 154, 255, 0.16) 28%, rgba(47, 154, 255, 0.03) 58%, transparent 76%);
  filter: blur(8px);
  animation: pulseBeam 8s ease-in-out infinite;
}

.hero-grid,
.section-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 30px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
}

.hero-copy {
  margin-top: -24px;
}

.hero-brand-mobile {
  display: none;
}

.hero-text {
  max-width: 62ch;
  margin-top: 18px;
  color: #d8e9ff;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

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

.btn-green {
  background: linear-gradient(180deg, #22df5f, var(--green-600));
  color: #04220d;
}

.btn-yellow {
  background: linear-gradient(180deg, #ffe266, var(--yellow-500));
  color: #4b2d00;
}

.btn-full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-highlights li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e6f1ff;
  font-size: 0.94rem;
}

.hero-panel,
.about-card,
.service-card,
.highlight-card,
.promo-banner,
.reviews-panel,
.contact-form-card,
.final-cta-box,
.map-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
  border-radius: var(--radius);
}

.hero-logo-showcase {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.hero-logo-ring {
  width: min(100%, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.26), transparent 38%),
    linear-gradient(180deg, rgba(255, 210, 63, 0.9), rgba(0, 70, 213, 0.9));
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.3),
    0 0 0 10px rgba(255, 255, 255, 0.08);
  animation: logoHalo 9s ease-in-out infinite;
}

.hero-logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
}

.hero-logo-copy h2 {
  margin-top: 14px;
}

.hero-logo-copy h2 span {
  color: #fff178;
}

.hero-logo-copy p {
  margin-top: 12px;
  color: #dfeeff;
}

.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5858, #d31818);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-top: 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.hero-panel h2 span {
  color: #fff178;
}

.hero-panel p {
  margin-top: 12px;
  color: #dfeeff;
}

.hero-mini-grid,
.card-grid,
.highlights-grid,
.promo-grid {
  display: grid;
  gap: 16px;
}

.hero-mini-grid {
  margin-top: 26px;
  grid-template-columns: repeat(3, 1fr);
}

.hero-mini-grid-promos {
  grid-template-columns: repeat(2, 1fr);
}

.hero-mini-grid article {
  padding: 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.14);
  text-align: center;
}

.hero-mini-featured {
  background: linear-gradient(180deg, rgba(255, 210, 63, 0.22), rgba(255, 59, 48, 0.16));
}

.hero-mini-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.hero-mini-grid span {
  color: #fff178;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
}

.section-heading {
  display: grid;
  gap: 14px;
}

.section-heading.center {
  justify-items: center;
  text-align: center;
  margin-bottom: 34px;
}

.section-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.about-card {
  padding: 30px;
  border-radius: var(--radius);
  color: #e4efff;
}

.about-card p + p {
  margin-top: 16px;
}

.services {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.14));
}

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

.service-card,
.highlight-card {
  padding: 26px;
  border-radius: var(--radius-sm);
}

.service-card p,
.highlight-card p {
  margin-top: 12px;
  color: #d9e9ff;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(180deg, #1b77ff, #013eb5);
  color: var(--yellow-400);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 18px;
}

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

.highlight-card strong {
  display: block;
  font-size: 1.3rem;
  color: #fff38f;
}

.promo-banner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 210, 63, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 59, 48, 0.18), rgba(0, 70, 213, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

.promo-copy p:last-child {
  margin-top: 12px;
  color: #ebf4ff;
}

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

.promo-item {
  padding: 20px;
  border-radius: 20px;
  background: rgba(6, 17, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-item strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.price {
  display: block;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--red-500);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.15);
}

.promo-featured .price {
  color: #fff178;
}

.reviews-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius);
}

.google-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.score {
  font-size: clamp(4rem, 10vw, 5.6rem);
  color: #fff27c;
}

.stars {
  color: #ffd84d;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.review-copy {
  color: #dbeaff;
  font-size: 1.04rem;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: #e6f1ff;
}

.contact-list a {
  font-weight: 700;
}

.map-card {
  padding: 10px;
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 18px;
}

.contact-form-card {
  padding: 30px;
  border-radius: var(--radius);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #bfd2ef;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(255, 210, 63, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 210, 63, 0.12);
  background: rgba(5, 87, 225, 0.22);
}

.form-note,
.form-status {
  color: #d7e9ff;
  font-size: 0.95rem;
}

.contact-form .btn[disabled] {
  cursor: wait;
  opacity: 0.8;
  filter: saturate(0.85);
}

.form-status.is-error {
  color: #ffd3d0;
  text-shadow: 0 0 12px rgba(255, 59, 48, 0.18);
}

.form-status.is-success {
  color: #bff7c7;
  text-shadow: 0 0 12px rgba(29, 191, 115, 0.18);
}

.final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-radius: var(--radius);
}

.site-footer {
  padding: 36px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.footer-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.footer-info {
  justify-self: end;
  text-align: right;
  display: grid;
  gap: 8px;
  color: #d7e6ff;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #20df61, #119b3d);
  color: #072912;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

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

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

.site-menu.is-open {
  display: flex;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -20px, 0) scale(1.08);
  }
}

@keyframes pulseBeam {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

@keyframes logoHalo {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 24px 50px rgba(0, 0, 0, 0.3),
      0 0 0 10px rgba(255, 255, 255, 0.08);
  }
  50% {
    transform: translateY(-8px);
    box-shadow:
      0 34px 62px rgba(0, 0, 0, 0.34),
      0 0 0 14px rgba(255, 255, 255, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-beam,
  .hero-logo-ring,
  .reveal {
    animation: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .contact-grid,
  .promo-banner,
  .reviews-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .promo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid-glow {
    inset: 18% 8% 10%;
    transform: perspective(800px) rotateX(76deg);
  }

  .final-cta-box,
  .footer-info {
    justify-self: start;
    text-align: left;
  }

  .final-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(1, 18, 54, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    padding-top: 44px;
  }

  .hero-copy {
    margin-top: -12px;
  }

  .hero-grid-glow,
  .hero-beam {
    opacity: 0.55;
  }

  .hero-mini-grid,
  .card-grid,
  .highlights-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .hero {
    padding-bottom: 72px;
  }

  .hero-actions,
  .btn,
  .whatsapp-float {
    width: 100%;
  }

  .btn {
    min-height: 56px;
  }

  .brand strong,
  .footer-brand strong {
    font-size: 1.35rem;
  }

  .brand img,
  .footer-brand img {
    width: 78px;
    height: 78px;
  }

  .hero-brand-mobile {
    display: block;
    margin-bottom: 18px;
  }

  .hero-brand-mobile img {
    width: min(100%, 220px);
    margin: 0 auto;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.18);
    padding: 10px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  }

  .hero-logo-ring {
    width: min(100%, 240px);
  }
}
