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

:root {
  --blue-950: #031b34;
  --blue-900: #052a50;
  --blue-800: #06457f;
  --blue-700: #075db8;
  --blue-600: #0785dc;
  --cyan-500: #06afe7;
  --cyan-100: #dbf5ff;
  --ink: #102033;
  --muted: #5e6c7d;
  --surface: #f4f8fc;
  --white: #fff;
  --green: #16a866;
  --shadow-sm: 0 12px 30px rgba(4, 51, 92, .09);
  --shadow-lg: 0 24px 70px rgba(2, 31, 59, .18);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: .65rem 1rem;
  color: var(--white);
  background: var(--blue-950);
  border-radius: 8px;
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1030;
  padding: 16px 0;
  transition: padding .25s ease;
}
.header-shell {
  min-height: 68px;
  padding: 7px 10px 7px 15px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 18px;
  box-shadow: 0 12px 38px rgba(2, 31, 59, .14);
  backdrop-filter: blur(18px) saturate(145%);
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { padding: 8px 0; }
.site-header.is-scrolled .header-shell { background: rgba(255, 255, 255, .94); border-color: rgba(255, 255, 255, .96); box-shadow: 0 12px 34px rgba(2, 31, 59, .18); }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.navbar-nav { gap: .1rem; }
.nav-link { padding: .7rem .72rem !important; color: var(--blue-950); font-size: .86rem; font-weight: 700; }
.nav-link:hover, .nav-link:focus { color: var(--blue-600); }
.navbar-toggler { padding: .5rem; border: 1px solid rgba(3, 27, 52, .16); box-shadow: none !important; }
.navbar-toggler-icon { width: 1.25em; height: 1.25em; }

.btn {
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-brand {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  border: 0;
  box-shadow: 0 8px 22px rgba(7, 111, 190, .25);
}
.btn-brand:hover, .btn-brand:focus { color: var(--white); box-shadow: 0 12px 28px rgba(7, 111, 190, .34); }
.btn-header { padding: .75rem 1.05rem; margin-left: .75rem; font-size: .86rem; }
.btn-header i { margin-right: .35rem; }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 820px;
  isolation: isolate;
  color: var(--white);
  background: var(--blue-950);
  overflow: hidden;
}
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -3; }
.hero-media img { object-fit: cover; object-position: center center; }
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 27, 52, .98) 0%, rgba(3, 27, 52, .95) 33%, rgba(3, 27, 52, .78) 48%, rgba(3, 27, 52, .24) 65%, rgba(3, 27, 52, .04) 82%),
    linear-gradient(0deg, rgba(2, 24, 46, .52), transparent 40%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -30% 30%;
  z-index: -1;
  height: 440px;
  background: radial-gradient(circle, rgba(6, 175, 231, .27), transparent 66%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding-top: 118px; padding-bottom: 110px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  color: var(--blue-700);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow {
  padding: .5rem .8rem;
  color: #d8f6ff;
  background: rgba(6, 175, 231, .15);
  border: 1px solid rgba(132, 225, 255, .26);
  border-radius: 999px;
}
.hero h1 {
  max-width: 760px;
  margin: 0 0 1.35rem;
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-lead { max-width: 650px; margin-bottom: 1.6rem; color: rgba(255, 255, 255, .84); font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.65; }
.hero-hours { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.7rem; }
.hero-hours > i { display: grid; width: 48px; height: 48px; color: var(--cyan-500); background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .15); border-radius: 14px; place-items: center; }
.hero-hours strong, .hero-hours span { display: block; }
.hero-hours span { color: rgba(255, 255, 255, .75); font-size: .92rem; }
.btn-cta { padding: 1rem 1.35rem; color: var(--white); background: var(--green); border: 0; box-shadow: 0 12px 32px rgba(9, 118, 68, .33); }
.btn-cta:hover, .btn-cta:focus { color: var(--white); background: #119558; box-shadow: 0 16px 38px rgba(9, 118, 68, .4); }
.btn-cta i { margin-right: .45rem; }
.hero-note { display: block; margin-top: .7rem; color: rgba(255, 255, 255, .63); }
.scroll-hint { position: absolute; left: 50%; bottom: 24px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 2px; color: rgba(255, 255, 255, .75); font-size: .72rem; text-decoration: none; transform: translateX(-50%); }
.scroll-hint i { animation: scrollBounce 1.8s infinite; }

.section { position: relative; padding: 110px 0; }
.section h2, .final-cta h2 { margin-bottom: 1.25rem; color: var(--blue-950); font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.12; font-weight: 800; letter-spacing: -.045em; text-wrap: balance; }
.section h3 { color: var(--blue-950); }
.section-lead { color: #34475c; font-size: 1.16rem; line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: .55rem; margin-top: .5rem; color: var(--blue-700); font-weight: 800; text-decoration: none; }
.text-link i { transition: transform .2s ease; }
.text-link:hover i { transform: translateX(5px); }

.intro-section { background: linear-gradient(180deg, #fff, #f8fbfe); }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.feature-card { padding: 26px; background: var(--white); border: 1px solid #e5edf5; border-radius: 20px; box-shadow: var(--shadow-sm); }
.feature-card:nth-child(2), .feature-card:nth-child(4) { transform: translateY(24px); }
.icon-box { display: grid; width: 52px; height: 52px; margin-bottom: 1.3rem; color: var(--blue-700); background: var(--cyan-100); border-radius: 15px; font-size: 1.35rem; place-items: center; }
.feature-card h3 { margin-bottom: .55rem; font-size: 1.05rem; font-weight: 800; }
.feature-card p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.65; }

.location-section { padding-bottom: 145px; color: rgba(255, 255, 255, .83); background: linear-gradient(135deg, var(--blue-950), var(--blue-800)); overflow: hidden; }
.location-section h2, .location-section h3 { color: var(--white); }
.location-section .section-lead { color: rgba(255, 255, 255, .92); }
.section-kicker.light { color: #8be4ff; }
.location-accent { position: absolute; top: -190px; right: -130px; width: 520px; height: 520px; border: 85px solid rgba(6, 175, 231, .1); border-radius: 50%; }
.btn-light-cta { margin-top: .75rem; padding: .9rem 1.2rem; color: var(--blue-950); background: var(--white); border: 0; }
.btn-light-cta:hover { color: var(--blue-700); background: #eaf9ff; }
.location-visual { position: relative; max-width: 560px; margin-left: auto; padding-bottom: 125px; }
.location-visual picture { display: block; overflow: hidden; border: 1px solid rgba(255, 255, 255, .18); border-radius: 28px; box-shadow: var(--shadow-lg); }
.location-visual picture img { display: block; width: 100%; height: 555px; object-fit: cover; object-position: center 62%; }
.location-card { position: absolute; right: 28px; bottom: 0; left: -34px; display: flex; align-items: flex-start; gap: 18px; padding: 25px; background: rgba(3, 27, 52, .91); border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius); box-shadow: var(--shadow-lg); backdrop-filter: blur(15px); overflow: hidden; }
.location-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--cyan-500), #72e2ff); }
.location-pin { display: grid; flex: 0 0 auto; width: 52px; height: 52px; color: var(--blue-950); background: var(--cyan-500); border-radius: 15px; font-size: 1.3rem; place-items: center; }
.small-label { color: #92ddf7; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.location-card h3 { margin: .25rem 0 .4rem; font-size: 1.18rem; font-weight: 800; }
.location-card p { margin-bottom: .6rem; font-size: .84rem; line-height: 1.55; }
.location-time { padding: .55rem 0; margin: .55rem 0; border-top: 1px solid rgba(255, 255, 255, .13); border-bottom: 1px solid rgba(255, 255, 255, .13); font-size: .8rem; }
.location-time i { margin-right: .5rem; color: var(--cyan-500); }
.location-card a { color: var(--white); font-weight: 700; text-decoration: none; }
.location-card a i { margin-left: .35rem; font-size: .8rem; }

.benefits-section { background: var(--surface); }
.section-heading { max-width: 760px; margin: 0 auto 2.5rem; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.benefit-card { position: relative; padding: 32px 27px; background: var(--white); border: 1px solid #e4edf6; border-radius: 20px; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(4, 51, 92, .14); }
.benefit-card > i { display: block; margin-bottom: 1.35rem; color: var(--blue-600); font-size: 2rem; }
.benefit-card h3 { font-size: 1.08rem; font-weight: 800; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .93rem; }
.benefit-number { position: absolute; top: 15px; right: 20px; color: #e3edf7; font-size: 2.6rem; font-weight: 800; line-height: 1; }

.tv-section { background: var(--white); }
.tv-shell { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(45px, 7vw, 105px); padding: clamp(28px, 5vw, 72px); background: linear-gradient(145deg, #eaf7ff, #f9fcff); border: 1px solid #d9ecf8; border-radius: 32px; }
.tv-visual { display: flex; flex-direction: column; align-items: center; }
.tv-screen { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; aspect-ratio: 4 / 3; padding: 25px; color: var(--white); background: radial-gradient(circle at 70% 15%, #0785dc, transparent 35%), linear-gradient(145deg, var(--blue-950), var(--blue-800)); border: 11px solid #15273a; border-radius: 22px; box-shadow: 0 28px 50px rgba(3, 27, 52, .24); overflow: hidden; }
.tv-screen::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 42%, rgba(255, 255, 255, .12) 43%, transparent 65%); pointer-events: none; }
.tv-screen > i { color: #84ddfa; font-size: clamp(2.2rem, 5vw, 4rem); }
.tv-screen strong { font-size: clamp(1rem, 2vw, 1.35rem); }
.tv-screen small { color: rgba(255, 255, 255, .66); }
.tv-live { position: absolute; top: 18px; left: 19px; padding: .3rem .55rem; background: rgba(255, 255, 255, .1); border-radius: 999px; font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.tv-live i { margin-right: .3rem; color: #ff5b62; font-size: .45rem; }
.tv-stand { width: 38%; height: 15px; background: #15273a; border-radius: 0 0 12px 12px; }
.tv-copy h2 { font-size: clamp(1.9rem, 3.3vw, 3rem); }
.check-list { display: grid; gap: .65rem; padding: 0; margin: 1.6rem 0; list-style: none; }
.check-list i { margin-right: .55rem; color: var(--green); }
.btn-outline-brand { padding: .85rem 1.1rem; color: var(--blue-700); background: var(--white); border: 2px solid var(--blue-700); }
.btn-outline-brand:hover { color: var(--white); background: var(--blue-700); }

.trust-section { background: #f8fbfe; }
.trust-mark { position: relative; display: flex; align-items: center; justify-content: center; min-height: 390px; background: var(--white); border: 1px solid #e4edf5; border-radius: 32px; box-shadow: var(--shadow-sm); }
.trust-mark > img { width: 235px; height: 235px; object-fit: contain; }
.years-badge { position: absolute; right: 22px; bottom: 22px; display: flex; align-items: center; gap: .55rem; padding: .8rem 1rem; color: var(--white); background: linear-gradient(135deg, var(--blue-700), var(--cyan-500)); border-radius: 16px; box-shadow: 0 12px 24px rgba(7, 93, 184, .24); }
.years-badge strong { font-size: 1.6rem; line-height: 1; }
.years-badge span { font-size: .72rem; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.trust-points { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.trust-points span { padding: .65rem .85rem; color: var(--blue-900); background: var(--white); border: 1px solid #dfeaf4; border-radius: 10px; font-size: .84rem; font-weight: 700; }
.trust-points i { margin-right: .35rem; color: var(--blue-600); }

.final-cta { position: relative; padding: 100px 0; color: rgba(255, 255, 255, .82); background: linear-gradient(135deg, var(--blue-800), var(--blue-950)); overflow: hidden; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; border: 70px solid rgba(6, 175, 231, .09); border-radius: 50%; }
.final-cta::before { width: 430px; height: 430px; top: -240px; left: -150px; }
.final-cta::after { width: 560px; height: 560px; right: -260px; bottom: -370px; }
.final-cta-inner { position: relative; z-index: 2; max-width: 850px; margin: auto; text-align: center; }
.final-cta h2 { color: var(--white); font-size: clamp(2.6rem, 6vw, 5.1rem); }
.final-cta p { max-width: 720px; margin: 0 auto 1.8rem; font-size: 1.12rem; }

.faq-section { background: var(--white); }
.accordion { --bs-accordion-border-color: #e1eaf2; --bs-accordion-btn-focus-box-shadow: none; }
.accordion-item { border-bottom: 1px solid #e1eaf2; }
.accordion-button { padding: 1.4rem .35rem; color: var(--blue-950); background: transparent; font-size: 1rem; font-weight: 800; box-shadow: none !important; }
.accordion-button:not(.collapsed) { color: var(--blue-700); background: transparent; }
.accordion-button::after { padding: 14px; background-color: #edf7fd; background-position: center; border-radius: 50%; }
.accordion-body { padding: .15rem .35rem 1.45rem; color: var(--muted); }

.site-footer { padding: 65px 0 24px; color: rgba(255, 255, 255, .7); background: #02182d; }
.footer-main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; padding-bottom: 38px; }
.footer-brand img { width: 74px; height: 74px; padding: 4px; background: var(--white); border-radius: 16px; object-fit: contain; }
.footer-main p { max-width: 360px; margin: 0; }
.footer-contact { display: grid; gap: .45rem; }
.footer-contact a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.footer-contact a:hover { color: var(--cyan-500); }
.footer-contact i { width: 24px; color: var(--cyan-500); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .78rem; }
.footer-bottom a { color: inherit; text-decoration: none; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 1040; display: flex; align-items: center; gap: .55rem; padding: .82rem 1rem; color: var(--white); background: var(--green); border: 3px solid var(--white); border-radius: 999px; box-shadow: 0 12px 30px rgba(6, 79, 46, .35); font-size: .86rem; font-weight: 800; text-decoration: none; transition: transform .2s ease, background-color .2s ease; }
.whatsapp-float:hover { color: var(--white); background: #119558; transform: translateY(-3px); }
.whatsapp-float i { font-size: 1.2rem; }
.whatsapp-float::before { content: ""; position: absolute; inset: -4px; z-index: -1; border: 2px solid rgba(22, 168, 102, .4); border-radius: inherit; animation: whatsappPulse 2.4s infinite; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease var(--delay, 0ms), transform .7s ease var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@keyframes whatsappPulse { 0% { opacity: .8; transform: scale(1); } 75%, 100% { opacity: 0; transform: scale(1.2); } }

@media (max-width: 991.98px) {
  .navbar-collapse { margin-top: .55rem; padding: .7rem .25rem .3rem; border-top: 1px solid rgba(3, 27, 52, .1); }
  .navbar-nav { align-items: stretch !important; }
  .nav-link { padding: .6rem .55rem !important; }
  .btn-header { width: 100%; margin: .5rem 0 0; }
  .hero { min-height: 780px; }
  .hero-media img { object-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3, 27, 52, .97) 0%, rgba(3, 27, 52, .91) 43%, rgba(3, 27, 52, .42) 72%, rgba(3, 27, 52, .08)), linear-gradient(0deg, rgba(2, 24, 46, .67), transparent 53%); }
  .section { padding: 84px 0; }
  .feature-grid { margin-top: 10px; }
  .location-section { padding-bottom: 84px; }
  .location-visual { max-width: 650px; margin: 18px auto 0; }
  .location-card { right: 6%; left: 6%; }
  .tv-shell { grid-template-columns: 1fr; }
  .tv-visual { max-width: 470px; margin: auto; }
  .trust-mark { max-width: 520px; min-height: 330px; margin: auto; }
  .footer-main { grid-template-columns: auto 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 575.98px) {
  .site-header { padding: 8px 0; }
  .header-shell { min-height: 60px; padding: 5px 8px 5px 12px; border-radius: 14px; }
  .brand img { width: 52px; height: 52px; }
  .btn-header { padding: .67rem .88rem; font-size: .82rem; }
  .hero { display: block; min-height: auto; background: var(--blue-950); }
  .hero::after { display: none; }
  .hero-media { position: relative; inset: auto; z-index: 0; display: block; height: 360px; }
  .hero-media img { object-position: center 62%; }
  .hero-shade { top: 0; right: 0; bottom: auto; left: 0; z-index: 1; height: 360px; background: linear-gradient(0deg, var(--blue-950) 0%, rgba(3, 27, 52, .68) 24%, rgba(3, 27, 52, .12) 58%, rgba(3, 27, 52, .08) 100%); }
  .hero-inner { padding-top: 18px; padding-bottom: 58px; }
  .hero h1 { font-size: clamp(2.05rem, 10.5vw, 3rem); }
  .hero-lead { font-size: 1rem; }
  .btn-cta { width: 100%; padding: .95rem 1rem; font-size: .97rem; }
  .scroll-hint { display: none; }
  .section { padding: 70px 0; }
  .section h2 { font-size: 2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:nth-child(2), .feature-card:nth-child(4) { transform: none; }
  .location-visual { padding-bottom: 0; }
  .location-visual picture img { height: 430px; object-position: center 66%; }
  .location-card { position: relative; right: auto; bottom: auto; left: auto; display: block; margin: -34px 14px 0; padding: 25px 22px; }
  .location-pin { margin-bottom: 1rem; }
  .tv-shell { padding: 25px 18px 34px; border-radius: 22px; }
  .tv-screen { border-width: 8px; }
  .trust-mark { min-height: 280px; }
  .trust-mark > img { width: 180px; height: 180px; }
  .years-badge { right: 14px; bottom: 14px; }
  .trust-points { display: grid; }
  .final-cta { padding: 78px 0; }
  .footer-main { display: flex; flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 58px; height: 58px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float i { font-size: 1.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
