/* b.canton Theme - Main CSS */
/* Google Fonts are loaded via functions.php */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --bg: hsl(240,53%,10%);
  --bg-gradient: linear-gradient(145deg, hsl(260,50%,18%) 0%, hsl(230,60%,8%) 100%);
  --fg: hsl(0,0%,100%);
  --primary: hsl(42,82%,53%);
  --primary-fg: hsl(240,53%,10%);
  --secondary: hsl(240,40%,18%);
  --muted-fg: hsl(230,20%,70%);
  --border: hsl(240,30%,22%);
  --card: hsl(240,40%,13%);
  --glass-bg: hsla(0,0%,100%,0.05);
  --glass-border: hsla(0,0%,100%,0.1);
  --gradient-accent: linear-gradient(135deg, hsl(42,82%,53%) 0%, hsl(38,90%,60%) 100%);
  --gradient-purple-blue: linear-gradient(135deg, hsl(260,60%,35%) 0%, hsl(220,70%,25%) 100%);
  --whatsapp: hsl(142,70%,49%);
  --radius: 0.75rem;
  --container: 1400px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--fg);
  min-height: 100vh;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   UTILITIES
   ============================================ */
.bc-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.bc-section { padding: 4rem 1rem; }
@media(min-width:768px) { .bc-section { padding: 6rem 2rem; } }
@media(min-width:1024px) { .bc-section { padding: 8rem 2rem; } }

.bc-glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px hsla(0,0%,0%,0.3);
}
.bc-gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bc-gradient-text--purple {
  background: linear-gradient(135deg, hsl(260,60%,60%), hsl(220,70%,60%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bc-label {
  display: block;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.bc-label--purple { color: hsl(260,60%,65%); }
.bc-section__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media(min-width:768px) { .bc-section__title { font-size: 2.5rem; } }
.bc-section__title--white { color: #fff; }
.bc-section__title--purple { color: #fff; }
.bc-icon--primary { color: var(--primary); flex-shrink: 0; }
.bc-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media(max-width:767px) { .bc-parallax { background-attachment: scroll; } }

/* ============================================
   BUTTONS
   ============================================ */
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  transition: opacity .2s, transform .2s;
  cursor: pointer;
  text-decoration: none;
}
.bc-btn:hover { opacity: .9; }
.bc-btn--primary { background: var(--primary); color: var(--primary-fg); }
.bc-btn--secondary { background: var(--secondary); border: 1px solid hsla(0,0%,100%,.1); color: var(--fg); }
.bc-btn--whatsapp { background: var(--whatsapp); color: #fff; }
.bc-btn--maps { background: var(--fg); color: var(--bg); }
.bc-btn--waze { background: #37cffe; color: #0a0a1a; }
.bc-btn--full { width: 100%; }
.bc-btn__icon { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }

/* ============================================
   HEADER
   ============================================ */
.bc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 1rem 0;
}
.bc-header.scrolled {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px hsla(0,0%,0%,.3);
  padding: .5rem 0;
}
.bc-header__inner { display: flex; align-items: center; justify-content: space-between; }
.bc-header__logo { height: 2rem; }
@media(min-width:768px) { .bc-header__logo { height: 2.5rem; } }
.bc-header__nav--desktop { display: none; align-items: center; gap: 2rem; }
@media(min-width:1024px) { .bc-header__nav--desktop { display: flex; } }
.bc-nav-link { font-size: .875rem; color: var(--muted-fg); transition: color .3s; font-family: 'Inter', sans-serif; }
.bc-nav-link:hover { color: var(--fg); }
.bc-header__toggle { display: flex; flex-direction: column; gap: 5px; padding: .25rem; }
@media(min-width:1024px) { .bc-header__toggle { display: none; } }
.bc-hamburger { display: flex; flex-direction: column; gap: 5px; }
.bc-hamburger span { display: block; width: 24px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .3s, opacity .3s; }
.bc-header__mobile-menu { display: none; margin: .5rem 1rem; border-radius: var(--radius); overflow: hidden; }
.bc-header__mobile-menu.open { display: block; animation: fadeUp .3s ease; }
.bc-header__nav--mobile { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 1.5rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 8px 32px hsla(0,0%,0%,.4); }

/* ============================================
   HERO
   ============================================ */
.bc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}
.bc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.bc-hero__bg--desktop { display: none; }
.bc-hero__bg--mobile { display: block; background-attachment: scroll; }
@media(min-width:768px) {
  .bc-hero__bg--desktop { display: block; }
  .bc-hero__bg--mobile { display: none; }
}
.bc-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, hsla(260,60%,20%,.5), hsla(220,60%,15%,.5), hsla(240,53%,10%,.9));
}
.bc-hero__content { position: relative; z-index: 10; text-align: center; padding: 8rem 1rem; }
.bc-hero__title { font-weight: 900; font-size: 2rem; line-height: 1.1; margin-bottom: 1.5rem; }
@media(min-width:768px) { .bc-hero__title { font-size: 3.5rem; } }
@media(min-width:1024px) { .bc-hero__title { font-size: 5rem; } }
.bc-hero__sub { color: var(--muted-fg); font-size: 1rem; max-width: 42rem; margin: 0 auto 2.5rem; line-height: 1.7; }
@media(min-width:768px) { .bc-hero__sub { font-size: 1.125rem; } }
.bc-hero__btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
@media(min-width:640px) { .bc-hero__btns { flex-direction: row; } }
.bc-hero__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.bc-badge {
  background: hsla(0,0%,100%,.1);
  backdrop-filter: blur(12px);
  border: 1px solid hsla(0,0%,100%,.2);
  display: flex; align-items: center; gap: .625rem;
  padding: .625rem 1.25rem;
  border-radius: 9999px;
  font-size: .8rem; color: #fff; font-weight: 500;
}
@media(min-width:768px) { .bc-badge { font-size: .875rem; padding: .75rem 1.5rem; } }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.bc-animate-fade-up { animation: fadeUp .8s cubic-bezier(.22,1,.36,1) both; }
.bc-animate-fade-in { animation: fadeIn .6s ease both; }

/* ============================================
   ABOUT
   ============================================ */
.bc-about__grid { display: grid; gap: 3rem; align-items: center; }
@media(min-width:768px) { .bc-about__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.bc-about__img-wrap { position: relative; }
.bc-about__img-inner { border-radius: var(--radius); overflow: hidden; }
.bc-about__img { width: 100%; height: 25rem; object-fit: cover; transition: transform .7s; }
.bc-about__img:hover { transform: scale(1.05); }
@media(min-width:768px) { .bc-about__img { height: 31rem; } }
.bc-about__badge-wrap {
  position: absolute; bottom: -1.5rem; right: -1.5rem; z-index: 10;
  padding: 4px; border-radius: 9999px;
  background: linear-gradient(135deg, hsl(220,70%,55%), hsl(260,60%,55%));
  box-shadow: 0 10px 30px hsla(0,0%,0%,.3);
}
.bc-about__badge { width: 6rem; height: 6rem; object-fit: contain; border-radius: 9999px; background: var(--bg); padding: 4px; }
@media(min-width:768px) { .bc-about__badge { width: 8rem; height: 8rem; } }
.bc-about__body { display: flex; flex-direction: column; gap: 1rem; color: var(--muted-fg); font-size: .875rem; line-height: 1.8; }
.bc-about__body strong { color: var(--fg); }
.bc-about__quote { color: var(--primary); font-family: 'Plus Jakarta Sans', sans-serif; font-style: italic; font-weight: 600; }

/* ============================================
   STATS
   ============================================ */
.bc-stats { padding: 5rem 0; }
.bc-stats__overlay { position: absolute; inset: 0; background: hsla(240,53%,10%,.85); }
.bc-stats__inner { position: relative; z-index: 10; }
.bc-stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; max-width: 56rem; margin: 2.5rem auto 0; }
@media(min-width:768px) { .bc-stats__grid { gap: 2rem; } }
.bc-stat-card { padding: 1.5rem 1rem; border-radius: var(--radius); text-align: center; }
@media(min-width:768px) { .bc-stat-card { padding: 2.5rem; } }
.bc-stat-card__icon { width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: hsla(42,82%,53%,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto .75rem; }
@media(min-width:768px) { .bc-stat-card__icon { width: 3.5rem; height: 3.5rem; margin-bottom: 1rem; } }
.bc-stat-card__value { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 2rem; color: var(--primary); }
@media(min-width:768px) { .bc-stat-card__value { font-size: 3.5rem; } }
.bc-stat-card__label { color: var(--muted-fg); font-size: .7rem; margin-top: .5rem; }
@media(min-width:768px) { .bc-stat-card__label { font-size: .875rem; } }

/* ============================================
   EXPERTISE
   ============================================ */
.bc-expertise { max-width: 48rem; margin: 0 auto; text-align: center; }
.bc-expertise__body { display: flex; flex-direction: column; gap: 1rem; color: var(--muted-fg); font-size: .9rem; line-height: 1.8; }
.bc-expertise__body strong { color: var(--fg); }
.bc-expertise__quote { color: var(--primary); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; }

/* ============================================
   TIMELINE
   ============================================ */
.bc-timeline__container { max-width: 64rem; }
.bc-timeline { position: relative; display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }
.bc-timeline__line {
  position: absolute; left: 12px; top: 1rem; bottom: 1rem; width: 2px;
  background: linear-gradient(to bottom, hsl(230,60%,45%), hsl(260,60%,55%), hsl(230,60%,45%));
  opacity: .6;
}
@media(min-width:768px) {
  .bc-timeline { gap: 6rem; margin-top: 6rem; }
  .bc-timeline__line { left: 50%; transform: translateX(-50%); }
}
.bc-timeline__item { position: relative; display: flex; align-items: center; gap: .5rem; width: 100%; }
@media(min-width:768px) { .bc-timeline__item { align-items: flex-start; gap: 0; } }
.bc-timeline__item--left { flex-direction: row; }
.bc-timeline__item--right { flex-direction: row; }
@media(min-width:768px) {
  .bc-timeline__item--left { flex-direction: row; }
  .bc-timeline__item--right { flex-direction: row-reverse; }
}
.bc-spacer { display: none; }
@media(min-width:768px) { .bc-spacer { display: block; width: 50%; } }
.bc-timeline__dot {
  position: relative; z-index: 10; flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, hsl(230,60%,45%), hsl(260,60%,55%));
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 0 20px hsla(230,60%,50%,.5);
  border: 2px solid var(--bg);
  margin-left: 2px;
}
@media(min-width:768px) {
  .bc-timeline__dot {
    position: absolute; left: 50%; transform: translateX(-50%) translateY(-50%);
    top: 50%; width: 4rem; height: 4rem; margin-left: 0;
    border-width: 3px;
    box-shadow: 0 0 30px hsla(230,60%,50%,.5);
  }
}
.bc-timeline__card {
  flex: 1;
  background: #141416; border: 1px solid #27272a;
  border-radius: var(--radius); padding: 1rem 1.25rem;
  transition: border-color .5s;
}
.bc-timeline__card:hover { border-color: hsla(260,60%,55%,.3); }
@media(min-width:768px) {
  .bc-timeline__card { width: 50%; border-radius: 1.5rem; padding: 2.5rem; flex: none; }
}
.bc-timeline__card h3 { font-weight: 700; font-size: .9rem; margin-bottom: .5rem; color: #fff; }
@media(min-width:768px) { .bc-timeline__card h3 { font-size: 1.25rem; margin-bottom: 1rem; } }
.bc-timeline__card p { color: #a1a1aa; font-size: .8rem; line-height: 1.7; }
@media(min-width:768px) { .bc-timeline__card p { font-size: .9375rem; } }

/* ============================================
   SERVICES
   ============================================ */
.bc-services__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2.5rem; }
.bc-services__tab {
  display: flex; align-items: center; gap: .5rem;
  padding: .625rem 1rem; border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500; font-size: .8rem;
  color: var(--muted-fg); background: var(--glass-bg); border: 1px solid var(--glass-border);
  transition: all .3s; cursor: pointer;
}
.bc-services__tab:hover { color: var(--fg); }
.bc-services__tab--active { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.bc-tab-full { display: none; }
.bc-tab-short { display: inline; }
@media(min-width:640px) { .bc-tab-full { display: inline; } .bc-tab-short { display: none; } }
.bc-services__panel { border-radius: var(--radius); padding: 1.5rem; max-width: 48rem; margin: 0 auto; }
@media(min-width:768px) { .bc-services__panel { padding: 2.5rem; } }
.bc-services__panel-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.bc-services__panel-icon { width: 3rem; height: 3rem; border-radius: 9999px; background: hsla(42,82%,53%,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bc-services__panel h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.1rem; }
.bc-services__list { display: grid; gap: .75rem; list-style: none; }
@media(min-width:640px) { .bc-services__list { grid-template-columns: 1fr 1fr; } }
.bc-services__list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--muted-fg); line-height: 1.5; }
.bc-services__list li::before { content: '✓'; color: var(--primary); flex-shrink: 0; font-weight: 700; margin-top: .05rem; }
.bc-services__tools { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.bc-services__tools p { font-size: .75rem; color: var(--muted-fg); margin-bottom: .5rem; }
.bc-services__tool-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.bc-services__tool-tags span { padding: .25rem .75rem; border-radius: 9999px; background: var(--secondary); font-size: .75rem; color: var(--muted-fg); }

/* ============================================
   PROJECTS
   ============================================ */
.bc-projects__grid { display: grid; gap: 2rem; }
@media(min-width:640px) { .bc-projects__grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .bc-projects__grid { grid-template-columns: 1fr 1fr 1fr; } }
.bc-project-card { background: hsla(0,0%,100%,.03); border: 1px solid hsla(0,0%,100%,.1); border-radius: 1rem; overflow: hidden; display: flex; flex-direction: column; transition: border-color .5s; }
.bc-project-card:hover { border-color: hsla(42,82%,53%,.5); }
.bc-project-card__img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.bc-project-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.bc-project-card:hover .bc-project-card__img { transform: scale(1.1); }
.bc-project-card__hover-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsla(0,0%,0%,.6), transparent); opacity: 0; transition: opacity .5s; }
.bc-project-card:hover .bc-project-card__hover-overlay { opacity: 1; }
.bc-status-badge { position: absolute; top: 1.25rem; left: 1.25rem; z-index: 10; padding: .375rem 1rem; border-radius: 9999px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.bc-badge--gold { background: var(--primary); color: var(--primary-fg); box-shadow: 0 0 15px hsla(42,82%,53%,.4); }
.bc-badge--green { background: hsl(152,69%,47%); color: #fff; box-shadow: 0 0 15px hsla(152,69%,47%,.3); }
.bc-badge--indigo { background: hsl(239,68%,56%); color: #fff; box-shadow: 0 0 15px hsla(239,68%,56%,.3); }
.bc-badge--dark { background: var(--secondary); color: var(--fg); }
.bc-project-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.bc-project-card__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.25rem; color: #fff; margin-bottom: .25rem; }
.bc-project-card__location { display: flex; align-items: center; gap: .375rem; color: #9ca3af; font-size: .875rem; margin-bottom: 1.5rem; }
.bc-project-card__details { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.bc-project-card__detail { display: flex; align-items: center; gap: .75rem; color: #d1d5db; font-size: .875rem; }
.bc-project-card__detail-dot { width: .5rem; height: .5rem; border-radius: 9999px; background: var(--primary); flex-shrink: 0; }
.bc-project-card .bc-btn { margin-top: auto; border-radius: .75rem; padding: .875rem; font-weight: 700; }
.bc-project-card .bc-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px hsla(0,0%,0%,.3); }

/* ============================================
   VIP FORM
   ============================================ */
.bc-vipform { padding: 4rem 0; }
@media(min-width:768px) { .bc-vipform { padding: 7rem 0; } }
.bc-vipform__overlay-desktop { position: absolute; inset: 0; background: hsla(240,53%,10%,.9); display: none; }
.bc-vipform__overlay-mobile { position: absolute; inset: 0; background: hsla(0,0%,0%,.4); }
@media(min-width:768px) { .bc-vipform__overlay-desktop { display: block; } .bc-vipform__overlay-mobile { display: none; } }
.bc-vipform__inner { position: relative; z-index: 10; }
.bc-vipform__card { background: var(--card); border: 1px solid hsla(0,0%,100%,.1); border-radius: 1rem; padding: 1.5rem; max-width: 32rem; margin: 0 auto; box-shadow: 0 25px 50px hsla(0,0%,0%,.4); }
@media(min-width:768px) { .bc-vipform__card { padding: 2.5rem; } }
.bc-vipform__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.25rem; margin-bottom: .5rem; }
@media(min-width:768px) { .bc-vipform__title { font-size: 1.5rem; } }
.bc-vipform__sub { color: var(--muted-fg); font-size: .875rem; line-height: 1.6; }
.bc-vipform__form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.bc-field { display: flex; flex-direction: column; gap: .25rem; }
.bc-field label { font-size: .75rem; color: var(--muted-fg); }
.bc-field input {
  width: 100%; padding: .75rem 1rem; border-radius: var(--radius);
  background: var(--secondary); border: 1px solid var(--border);
  color: var(--fg); font-size: .875rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .3s;
}
.bc-field input:focus { border-color: var(--primary); }
.bc-field input::placeholder { color: var(--muted-fg); }

/* ============================================
   GALLERY
   ============================================ */
.bc-gallery__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 40rem; margin: 0 auto; }
@media(min-width:768px) { .bc-gallery__grid { grid-template-columns: 1fr 1fr; max-width: none; gap: 2rem; } }
.bc-carousel { position: relative; aspect-ratio: 1; border-radius: 1rem; overflow: hidden; cursor: pointer; border: 1px solid hsla(0,0%,100%,.05); }
.bc-carousel__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s; }
.bc-carousel__slide--active { opacity: 1; }
.bc-gallery__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(min-width:768px) { .bc-gallery__pair { aspect-ratio: 1; gap: 2rem; } }
.bc-gallery__quad { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; }
@media(min-width:768px) { .bc-gallery__quad { aspect-ratio: 1; gap: 2rem; } }
.bc-gallery__photo { border-radius: 1rem; overflow: hidden; border: 1px solid hsla(0,0%,100%,.05); aspect-ratio: 1; }
.bc-gallery__img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform .5s; }
.bc-gallery__img:hover { transform: scale(1.03); }
.bc-gallery__carousel--wide { aspect-ratio: 21/9; }
@media(min-width:768px) { .bc-gallery__carousel--wide { grid-column: span 2; } }

/* VIDEOS */
.bc-videos__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:1024px) { .bc-videos__grid { grid-template-columns: 1fr 2fr; gap: 2.5rem; } }
.bc-videos__sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media(min-width:768px) { .bc-videos__sub-grid { gap: 2.5rem; } }
.bc-video-card {
  position: relative; border-radius: 1rem; overflow: hidden;
  border: 1px solid hsla(0,0%,100%,.1); cursor: pointer;
  box-shadow: 0 20px 40px hsla(0,0%,0%,.4);
}
.bc-video-card--tall { aspect-ratio: 9/16; }
@media(min-width:1024px) { .bc-video-card--tall { aspect-ratio: auto; height: 100%; } }
.bc-video-card__video { width: 100%; display: block; object-fit: cover; }
.bc-video-card--tall .bc-video-card__video { height: 100%; position: absolute; inset: 0; }
.bc-video-card__label { position: absolute; top: 1rem; left: 1rem; z-index: 20; background: hsla(0,0%,0%,.5); backdrop-filter: blur(8px); padding: .25rem .75rem; border-radius: 9999px; font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #fff; border: 1px solid hsla(0,0%,100%,.1); }
.bc-video-card__play { position: absolute; inset: 0; z-index: 10; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; pointer-events: none; }
.bc-video-card:hover .bc-video-card__play { opacity: 1; }
.bc-video-card__play svg { background: hsla(42,82%,53%,.9); padding: .75rem; border-radius: 9999px; color: var(--primary-fg); width: 4rem; height: 4rem; }
.bc-video-card__mute { position: absolute; bottom: 1rem; right: 1rem; z-index: 20; background: hsla(0,0%,0%,.5); backdrop-filter: blur(8px); padding: .5rem; border-radius: 9999px; color: #fff; border: 1px solid hsla(0,0%,100%,.1); transition: background .3s; }
.bc-video-card__mute:hover { background: hsla(0,0%,0%,.7); }
.bc-video-card__overlay { position: absolute; inset: 0; background: hsla(0,0%,0%,.2); pointer-events: none; transition: background .3s; }
.bc-video-card:hover .bc-video-card__overlay { background: hsla(0,0%,0%,.4);}
.bc-instagram-btn { display: flex; align-items: center; justify-content: center; gap: .75rem; width: 100%; padding: 1.25rem; border-radius: 1rem; background: #fff; color: #000; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .875rem; transition: all .3s; box-shadow: 0 10px 30px hsla(0,0%,0%,.3); }
@media(min-width:768px) { .bc-instagram-btn { font-size: 1rem; } }
.bc-instagram-btn:hover { background: hsla(0,0%,100%,.9); transform: translateY(-2px); }

/* LIGHTBOX */
.bc-lightbox { display: none; position: fixed; inset: 0; z-index: 60; background: hsla(0,0%,0%,.95); backdrop-filter: blur(4px); align-items: center; justify-content: center; }
.bc-lightbox.open { display: flex; }
.bc-lightbox--video { background: hsla(0,0%,0%,.98); backdrop-filter: blur(10px); }
.bc-lightbox__close { position: absolute; top: 1.5rem; right: 1.5rem; color: hsla(0,0%,100%,.7); font-size: 2rem; width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: hsla(0,0%,100%,.1); display: flex; align-items: center; justify-content: center; transition: color .3s; z-index: 70; }
.bc-lightbox__close:hover { color: #fff; }
.bc-lightbox__prev, .bc-lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); color: hsla(0,0%,100%,.7); font-size: 2.5rem; width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: hsla(0,0%,100%,.1); display: flex; align-items: center; justify-content: center; z-index: 70; transition: color .3s; }
.bc-lightbox__prev { left: 1rem; }
.bc-lightbox__next { right: 1rem; }
@media(min-width:768px) { .bc-lightbox__prev { left: 2rem; } .bc-lightbox__next { right: 2rem; } }
.bc-lightbox__prev:hover, .bc-lightbox__next:hover { color: #fff; }
.bc-lightbox__content { padding: 1rem; }
@media(min-width:768px) { .bc-lightbox__content { padding: 3rem; } }
.bc-lightbox__img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 1rem; box-shadow: 0 20px 60px hsla(0,0%,0%,.5); }
.bc-lightbox__content--video { width: 100%; max-width: 64rem; }
.bc-lightbox__video { width: 100%; max-height: 80vh; border-radius: 1rem; border: 1px solid hsla(0,0%,100%,.1); }
.bc-lightbox__video-label { position: absolute; top: 1.5rem; left: 1.5rem; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.1rem; z-index: 70; display: none; }
@media(min-width:768px) { .bc-lightbox__video-label { display: block; } }

/* ============================================
   PORTAL
   ============================================ */
.bc-portal { max-width: 40rem; margin: 0 auto; text-align: center; padding: 3rem 2rem; border-radius: 1rem; }
.bc-portal__icon { width: 4rem; height: 4rem; border-radius: 9999px; background: hsla(42,82%,53%,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.bc-portal__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.5rem; margin-bottom: .75rem; }
@media(min-width:768px) { .bc-portal__title { font-size: 2rem; } }
.bc-portal__sub { color: var(--muted-fg); font-size: .875rem; margin-bottom: 2rem; line-height: 1.7; }

/* ============================================
   MAP
   ============================================ */
.bc-map__wrapper { width: 96%; margin: 0 auto 2rem; border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 40px hsla(0,0%,0%,.3); border: 1px solid hsla(0,0%,100%,.05); }
@media(min-width:768px) { .bc-map__wrapper { width: 100%; max-width: var(--container); } }
.bc-map__btns { display: flex; flex-direction: column; gap: .75rem; justify-content: center; padding: 0 1rem; }
@media(min-width:640px) { .bc-map__btns { flex-direction: row; } }

/* ============================================
   CTA FINAL
   ============================================ */
.bc-cta { padding: 5rem 0; }
@media(min-width:768px) { .bc-cta { padding: 8rem 0; } }
.bc-cta__overlay-desktop { position: absolute; inset: 0; background: hsla(240,53%,10%,.85); display: none; }
.bc-cta__overlay-mobile { position: absolute; inset: 0; background: hsla(0,0%,0%,.4); background-size: cover; background-position: center; }
@media(min-width:768px) { .bc-cta__overlay-desktop { display: block; } .bc-cta__overlay-mobile { display: none; } }
.bc-cta__inner { position: relative; z-index: 10; text-align: center; }
.bc-cta__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
@media(min-width:768px) { .bc-cta__title { font-size: 2.5rem; } }
@media(min-width:1024px) { .bc-cta__title { font-size: 3.25rem; } }
.bc-cta__sub { color: #d1d5db; font-size: .875rem; max-width: 36rem; margin: 0 auto 2rem; line-height: 1.7; }
.bc-cta__btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media(min-width:640px) { .bc-cta__btns { flex-direction: row; } }

/* ============================================
   FOOTER
   ============================================ */
.bc-footer { border-top: 1px solid var(--border); padding: 3rem 1rem; }
.bc-footer__grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media(min-width:768px) { .bc-footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; } }
.bc-footer__logo { height: 2rem; margin-bottom: 1rem; }
.bc-footer__tagline { color: var(--muted-fg); font-size: .875rem; margin-bottom: 1.5rem; }
.bc-footer__award { height: 4rem; object-fit: contain; opacity: .8; transition: opacity .3s; }
@media(min-width:768px) { .bc-footer__award { height: 5rem; } }
.bc-footer__award:hover { opacity: 1; }
.bc-footer__heading { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: .875rem; margin-bottom: .75rem; }
.bc-footer__contact-item { display: flex; align-items: center; gap: .5rem; color: var(--muted-fg); font-size: .875rem; margin-bottom: .75rem; transition: color .3s; }
.bc-footer__contact-link:hover { color: var(--fg); }
.bc-footer__social { display: flex; gap: .75rem; margin-top: .5rem; }
.bc-social-btn { width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: var(--secondary); display: flex; align-items: center; justify-content: center; transition: background .3s; flex-shrink: 0; }
.bc-social-btn:hover { background: hsla(42,82%,53%,.1); }
.bc-social-btn__img { width: 1.25rem; height: 1.25rem; object-fit: contain; }
.bc-footer__bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; display: flex; flex-direction: column; gap: .25rem; }
.bc-footer__copy { font-size: .75rem; color: var(--muted-fg); }
.bc-footer__dev-link { color: var(--primary); }
.bc-footer__dev-link:hover { text-decoration: underline; }

/* WhatsApp Float */
.bc-whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px hsla(142,70%,49%,.4);
  transition: transform .3s, box-shadow .3s;
}
.bc-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px hsla(142,70%,49%,.5); }
.bc-whatsapp-float img { width: 1.75rem; height: 1.75rem; object-fit: contain; }

/* ============================================
   CONTATO PAGE
   ============================================ */
.bc-contato { padding-top: 7rem; padding-bottom: 4rem; }
.bc-contato__header { text-align: center; margin-bottom: 3rem; }
.bc-contato__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 2rem; margin-bottom: 1rem; }
@media(min-width:768px) { .bc-contato__title { font-size: 3rem; } }
.bc-contato__sub { color: var(--muted-fg); }
.bc-contato__card { padding: 2rem; border-radius: 1rem; max-width: 48rem; margin: 0 auto; }
@media(min-width:768px) { .bc-contato__card { padding: 3rem; } }
.bc-contato__logo-wrap { display: flex; justify-content: center; margin-bottom: 2rem; }
.bc-contato__logo { height: 2.5rem; }
.bc-contato__grid { display: grid; gap: 1rem; margin-bottom: 2rem; }
@media(min-width:640px) { .bc-contato__grid { grid-template-columns: 1fr 1fr; } }
.bc-contact-item { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: var(--radius); text-decoration: none; transition: border-color .3s; }
.bc-contact-item:hover { border-color: hsla(42,82%,53%,.3); }
.bc-contact-item__icon { width: 3rem; height: 3rem; border-radius: 9999px; background: hsla(42,82%,53%,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bc-contact-item__label { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: .875rem; margin-bottom: .25rem; }
.bc-contact-item__value { color: var(--muted-fg); font-size: .875rem; }
.bc-contato__social { text-align: center; }
.bc-contato__social-label { color: var(--muted-fg); font-size: .875rem; margin-bottom: 1rem; }
.bc-contato__social .bc-footer__social { justify-content: center; }
