:root {
  --primary-blue: #0717c9;
  --dark-blue: #07105a;
  --primary-red: #ff2b35;
  --white: #ffffff;
  --light-gray: #f3f6fc;
  --text-dark: #22293b;
  --muted: #64708b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  padding-top: 92px;
}

a {
  text-decoration: none;
}

.section-space {
  padding: 90px 0;
}

.bg-light-gray {
  background: var(--light-gray);
}

.section-title h2 {
  color: var(--dark-blue);
  font-weight: 800;
  letter-spacing: -0.4px;
}

.section-title p {
  color: var(--muted);
  max-width: 670px;
  margin: 0.5rem auto 0;
}

.main-header {
  background: linear-gradient(90deg, rgba(7, 23, 201, 0.95), rgba(7, 16, 90, 0.93));
  box-shadow: 0 12px 30px rgba(6, 15, 70, 0.18);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(7, 16, 90, 0.76);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(6, 12, 52, 0.25);
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(7, 16, 90, 0.4);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  color: var(--white);
  font-weight: 700;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.74rem;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  border-radius: 999px;
  padding: 0.56rem 0.95rem;
  transition: all 0.25s ease;
}

.navbar .nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.navbar-toggler {
  filter: brightness(0) invert(1);
}

.btn-cta-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #ff2b35, #db1924);
  border: 0;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(255, 43, 53, 0.33);
}

.btn-cta-whatsapp:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  background: linear-gradient(130deg, #07105a 0%, #0717c9 50%, #1534e9 100%);
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  z-index: 0;
}

.hero-shape-1 {
  width: 280px;
  height: 280px;
  right: -80px;
  top: -30px;
  background: radial-gradient(circle, rgba(255, 43, 53, 0.52), rgba(255, 43, 53, 0.08));
}

.hero-shape-2 {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -70px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.05));
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.88rem;
  padding: 0.35rem 0.75rem;
}

.hero-logo {
  width: 112px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-subheadline {
  color: rgba(255, 255, 255, 0.95);
}

.hero-text {
  color: rgba(255, 255, 255, 0.86);
  max-width: 580px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  font-size: 0.87rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-badges i {
  margin-right: 0.35rem;
  color: #ffd4d7;
}

.hero-visual img {
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 44px rgba(7, 16, 90, 0.42);
}

.impact-strip {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.impact-card {
  background: var(--white);
  border-radius: 18px;
  text-align: center;
  padding: 1.2rem 0.9rem;
  box-shadow: 0 18px 36px rgba(7, 16, 90, 0.1);
  border: 1px solid #ecf0fb;
}

.impact-card h3 {
  margin: 0;
  color: var(--primary-blue);
  font-weight: 800;
}

.impact-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.offer-card,
.category-card,
.location-card,
.contact-card,
.contact-form,
.value-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(7, 16, 90, 0.08);
}

.offer-card.premium {
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.offer-card.premium:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 36px rgba(7, 16, 90, 0.15);
}

.offer-image {
  position: relative;
  height: 210px;
}

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

.offer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}

.offer-content {
  padding: 1.2rem;
}

.old-price {
  text-decoration: line-through;
  color: #8b93a7;
  margin-bottom: 0.2rem;
}

.new-price {
  color: var(--primary-red);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
}

.category-card {
  min-height: 160px;
  text-align: center;
  padding: 1.3rem 1rem;
  border: 1px solid #eef2fb;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.category-card i {
  color: var(--primary-blue);
  font-size: 2rem;
}

.category-card span {
  font-weight: 700;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: #ccdbff;
  box-shadow: 0 18px 34px rgba(7, 16, 90, 0.12);
}

.feature-mini-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.feature-mini-grid span {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  font-weight: 600;
  color: #2f3750;
}

.feature-mini-grid i {
  color: var(--primary-red);
}

.why-site-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.value-card {
  padding: 1.2rem;
  height: 100%;
  border: 1px solid #edf1fd;
  transition: all 0.25s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(7, 16, 90, 0.12);
}

.value-card i {
  font-size: 1.7rem;
  color: var(--primary-blue);
}

.value-card h3 {
  margin: 0.85rem 0 0.45rem;
  font-size: 1.05rem;
  color: var(--dark-blue);
  font-weight: 700;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(7, 16, 90, 0.12);
  transition: transform 0.35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

.location-card,
.contact-card {
  padding: 1.5rem;
}

.location-card.premium {
  border: 1px solid #ecf0fc;
}

.map-frame {
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(7, 16, 90, 0.12);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-card a {
  color: var(--dark-blue);
}

.contact-form {
  padding: 1.5rem;
}

.form-control {
  border-radius: 12px;
  border: 1px solid #d7deef;
}

.form-control:focus {
  border-color: #89a1ff;
  box-shadow: 0 0 0 0.2rem rgba(7, 23, 201, 0.15);
}

#formMessage {
  font-weight: 600;
}

.final-cta {
  padding-bottom: 90px;
}

.final-cta-card {
  background: linear-gradient(120deg, #07105a, #0717c9 55%, #d61b2b);
  color: var(--white);
  border-radius: 24px;
  padding: 2.3rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 42px rgba(7, 16, 90, 0.26);
}

.final-cta-card h2 {
  font-weight: 800;
}

.final-cta-card p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.1rem;
}

.site-footer {
  background: #050a3a;
  color: var(--white);
}

.footer-logo {
  width: 95px;
  border-radius: 12px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a,
.social-links a {
  color: rgba(255, 255, 255, 0.9);
}

.social-links {
  display: flex;
  gap: 0.95rem;
  font-size: 1.4rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  z-index: 1200;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 92px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary-blue);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 22px rgba(7, 16, 90, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1199;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

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

@media (max-width: 991.98px) {
  body {
    padding-top: 84px;
  }

  .section-space {
    padding: 72px 0;
  }

  .brand-copy small {
    display: none;
  }

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

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 84px;
  }

  .hero-badges span {
    font-size: 0.8rem;
  }

  .feature-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .logo {
    width: 52px;
    height: 52px;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .hero-logo {
    width: 92px;
  }

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

  .gallery-grid img {
    height: 210px;
  }

  .impact-strip {
    margin-top: -24px;
  }
}
