:root {
  --bsc-blue: #008fd3;
  --bsc-blue-dark: #003b5c;
  --bsc-yellow: #ffd400;
  --bsc-green: #b8d832;
  --bsc-black: #101820;
  --bsc-white: #ffffff;
  --bsc-light: #f5f7fa;
  --bsc-gray: #6c757d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--bsc-black);
  line-height: 1.65;
  background: var(--bsc-white);
}
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.1;
}
a {
  color: var(--bsc-blue);
}
a:hover {
  color: var(--bsc-blue-dark);
}
.bsc-navbar {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.08);
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.navbar-scrolled {
  box-shadow: 0 14px 30px rgba(16, 24, 32, 0.14);
}
.brand-logo {
  width: 58px;
  height: auto;
}
.brand-text {
  color: var(--bsc-blue-dark);
  font-size: 1rem;
}
.nav-link {
  font-weight: 700;
  color: var(--bsc-blue-dark) !important;
}
.nav-link.active,
.nav-link:hover {
  color: var(--bsc-blue) !important;
}
.dropdown-menu {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.btn-bsc-yellow,
.btn-bsc-primary,
.btn-bsc-outline {
  font-weight: 800;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-bsc-yellow {
  background: var(--bsc-yellow);
  color: var(--bsc-black);
  border: 2px solid var(--bsc-yellow);
}
.btn-bsc-yellow:hover {
  background: #e6bf00;
  border-color: #e6bf00;
  color: var(--bsc-black);
}
.btn-bsc-primary {
  background: var(--bsc-blue);
  color: var(--bsc-white);
  border: 2px solid var(--bsc-blue);
}
.btn-bsc-primary:hover {
  background: var(--bsc-blue-dark);
  border-color: var(--bsc-blue-dark);
  color: var(--bsc-white);
}
.btn-bsc-outline {
  background: transparent;
  color: var(--bsc-blue-dark);
  border: 2px solid var(--bsc-blue-dark);
}
.btn-bsc-outline:hover {
  background: var(--bsc-blue-dark);
  color: var(--bsc-white);
}
.btn-bsc-outline.light {
  border-color: var(--bsc-white);
  color: var(--bsc-white);
}
.btn-bsc-outline.light:hover {
  background: var(--bsc-white);
  color: var(--bsc-blue-dark);
}
.header-whatsapp {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}
.home-hero,
.page-hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(0, 59, 92, 0.9), rgba(0, 59, 92, 0.55)),
    var(--hero-image) center/cover no-repeat;
  color: var(--bsc-white);
  overflow: hidden;
}
.home-hero:after,
.page-hero:after {
  content: "";
  position: absolute;
  inset: auto -8% -20% auto;
  width: 360px;
  height: 360px;
  background: var(--bsc-yellow);
  border-radius: 50%;
  opacity: 0.18;
}
.min-vh-100 {
  min-height: 100vh;
}
.min-vh-60 {
  min-height: 62vh;
}
.home-hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}
.home-hero h1,
.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 6rem);
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}
.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.section-padding {
  padding: 80px 0;
}
.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}
.section-kicker {
  display: inline-block;
  color: var(--bsc-blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}
.text-yellow {
  color: var(--bsc-yellow) !important;
}
.bg-light {
  background: var(--bsc-light) !important;
}
.bg-blue {
  background: var(--bsc-blue-dark);
}
.bsc-card {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.bsc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.bsc-card img {
  height: 220px;
  object-fit: cover;
}
.card-cta {
  font-weight: 800;
  text-decoration: none;
}
.season-section {
  background: linear-gradient(135deg, var(--bsc-yellow), #fff3a3);
}
.info-card,
.feature-box,
.panel-card,
.testimonial {
  height: 100%;
  padding: 1.4rem;
  border-radius: 20px;
  background: var(--bsc-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.info-card span {
  display: block;
  color: var(--bsc-blue-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.info-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
}
.feature-box {
  border-top: 5px solid var(--bsc-green);
}
.rounded-img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--bsc-green);
  color: var(--bsc-blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.testimonial {
  font-size: 1.05rem;
}
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--bsc-blue-dark);
  font-style: normal;
}
.final-cta {
  padding: 72px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bsc-blue-dark), var(--bsc-blue));
  color: var(--bsc-white);
}
.final-cta p {
  max-width: 720px;
  margin: 0 auto 1.5rem;
}
.map-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}
.page-content {
  padding-top: 150px;
}
.narrow {
  max-width: 820px;
  margin: auto;
}
.site-footer {
  background: var(--bsc-blue-dark);
  color: var(--bsc-white);
  padding: 64px 0 24px;
}
.site-footer a {
  color: var(--bsc-white);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--bsc-yellow);
}
.footer-logo {
  width: 92px;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
}
.footer-title {
  color: var(--bsc-yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.4rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 2rem;
  padding-top: 1.2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-weight: 900;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
}
:focus-visible {
  outline: 3px solid var(--bsc-yellow);
  outline-offset: 3px;
}
@media (max-width: 991px) {
  .navbar-collapse {
    padding: 1rem 0;
  }
  .min-vh-100 {
    min-height: 86vh;
  }
  .home-hero,
  .page-hero {
    padding-top: 82px;
  }
  .brand-logo {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 56px 0;
  }
  .home-hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }
  .hero-actions .btn-bsc-yellow,
  .hero-actions .btn-bsc-primary,
  .hero-actions .btn-bsc-outline {
    width: 100%;
  }
  .bsc-card img {
    height: 190px;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
  .page-content {
    padding-top: 120px;
  }
}
