/* ===== A5 Capital — BTG Pactual Brand Compliant ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --btg-logo: #001E62;
  --btg-dark: #05132A;
  --btg-navy: #0B2859;
  --btg-primary: #195AB4;
  --btg-medium: #307AE0;
  --btg-light: #549CFF;
  --btg-lighter: #87BAFF;
  --btg-pale: #D2E5FF;
  --white: #FFFFFF;
  --gray-100: #F2F2F2;
  --gray-200: #E5E5E5;
  --gray-400: #9A9A9A;
  --gray-600: #626262;
  --gray-800: #373737;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --font: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(5,19,42,0.10);
  --shadow-lg: 0 12px 48px rgba(5,19,42,0.18);
  --transition: 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-slow: 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-fast: 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font); color: var(--gray-800); background: var(--btg-dark); overflow-x: hidden; -webkit-font-smoothing: antialiased; width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 300; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
p { line-height: 1.7; }

.text-bold { font-weight: 700; }
.text-medium { font-weight: 500; }
.text-primary { color: var(--btg-primary); }
.text-white { color: var(--white); }
.text-dark { color: var(--btg-dark); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--dark { background: var(--btg-dark); color: var(--white); }
.section--navy { background: var(--btg-navy); color: var(--white); }
.section--light { background: var(--gray-100); }

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--btg-primary); background: rgba(25,90,180,0.1);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--btg-primary); flex-shrink: 0; }
.section--dark .badge, .section--navy .badge { color: var(--btg-lighter); background: rgba(135,186,255,0.15); }
.section--dark .badge::before, .section--navy .badge::before { background: var(--btg-lighter); }

/* ===== STRIPE DECORATIONS (BTG brand element) ===== */
.stripe-deco {
  position: absolute; overflow: hidden; pointer-events: none; z-index: 0;
}
.stripe-deco::before, .stripe-deco::after {
  content: ''; position: absolute;
  background: linear-gradient(135deg, var(--btg-primary) 0%, var(--btg-medium) 40%, var(--btg-light) 70%, var(--btg-lighter) 100%);
  opacity: 0.08; border-radius: 4px;
  transform: rotate(-35deg);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); opacity: 0; transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(1px); transition-duration: 0.1s; }

.btn--primary {
  background: var(--btg-primary); color: var(--white);
  box-shadow: 0 4px 20px rgba(25,90,180,0.35);
}
.btn--primary:hover { box-shadow: 0 8px 32px rgba(25,90,180,0.50); }

.btn--outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--outline-dark {
  background: transparent; color: var(--btg-primary);
  border: 2px solid var(--btg-primary);
}
.btn--outline-dark:hover { background: var(--btg-primary); color: var(--white); }

.btn--white {
  background: var(--white); color: var(--btg-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--white:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.25); }

/* Arrow icon in button */
.btn svg { transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(5,19,42,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.navbar__logo img { height: 54px; width: auto; transition: var(--transition); }
#navbar.scrolled .navbar__logo img { height: 44px; }
.navbar__nav { display: flex; align-items: center; gap: 32px; }
.navbar__nav a {
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
  transition: var(--transition); position: relative;
}
.navbar__nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--btg-light); transform: scaleX(0); transition: var(--transition);
}
.navbar__nav a:hover { color: var(--white); }
.navbar__nav a:hover::after { transform: scaleX(1); }
.navbar__cta {
  padding: 10px 22px !important;
  background: var(--btg-primary); color: var(--white) !important;
  border-radius: var(--radius); font-weight: 600 !important;
}
.navbar__cta::after { display: none !important; }
.navbar__cta:hover { background: var(--btg-medium) !important; }

.navbar__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.navbar__toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--btg-dark); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  opacity: 0.35; filter: saturate(0.6);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,19,42,0.97) 0%, rgba(11,40,89,0.88) 45%, rgba(25,90,180,0.4) 100%);
}
/* BTG Stripes decoration */
.hero__stripes {
  position: absolute; right: -100px; top: -80px; bottom: -80px; width: 600px;
  z-index: 1; pointer-events: none; overflow: hidden;
}
.hero__stripes::before, .hero__stripes::after {
  content: ''; position: absolute; width: 8px; height: 200%; border-radius: 4px;
  background: linear-gradient(180deg, transparent 0%, var(--btg-primary) 30%, var(--btg-medium) 60%, var(--btg-light) 80%, transparent 100%);
  opacity: 0.4; transform: rotate(-35deg); transform-origin: top;
}
.hero__stripes::before { left: 60px; top: -20%; opacity: 0.3; height: 250%; }
.hero__stripes::after { left: 100px; top: -40%; opacity: 0.2; }
.hero__stripe-1 { position: absolute; width: 6px; height: 200%; left: 30px; top: -30%; background: linear-gradient(180deg, transparent, var(--gold), transparent); opacity: 0.12; border-radius: 3px; animation: stripeDrift 12s ease-in-out infinite; }
.hero__stripe-2 { position: absolute; width: 120px; height: 200%; left: 140px; top: -20%; background: linear-gradient(180deg, transparent, rgba(84,156,255,0.15), transparent); opacity: 1; transform: rotate(-35deg); border-radius: 4px; animation: stripeDrift 18s ease-in-out infinite reverse; }
.hero__stripe-3 { position: absolute; width: 60px; height: 200%; left: 280px; top: -10%; background: linear-gradient(180deg, transparent, rgba(25,90,180,0.2), transparent); opacity: 1; transform: rotate(-35deg); border-radius: 4px; animation: stripeDrift 22s ease-in-out infinite 3s; }

@keyframes stripeDrift {
  0%,100% { transform: rotate(-35deg) translateY(0); }
  50%      { transform: rotate(-35deg) translateY(-50px); }
}

.hero__content {
  position: relative; z-index: 2; max-width: 700px;
  padding: 210px 0 80px;
  margin: 0 auto; text-align: left;
}
.hero__btg-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 32px;
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}
.hero__btg-badge img { height: 20px; width: auto; }
.hero__btg-badge span { color: rgba(255,255,255,0.5); margin: 0 4px; }

.hero__headline {
  font-size: clamp(2rem, 3.8vw, 3.6rem); font-weight: 300;
  color: var(--gold-light); line-height: 1.1; margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero__headline strong { font-weight: 700; display: block; color: var(--gold); }

.hero__sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.7;
  max-width: 560px; margin-bottom: 40px; font-weight: 300;
}

.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll svg { opacity: 0.5; }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== TRADINGVIEW TICKER ===== */
.ticker-strip {
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  z-index: 998;
  height: 46px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: top 0.35s cubic-bezier(0.4,0,0.2,1),
              background 0.35s cubic-bezier(0.4,0,0.2,1),
              border-color 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.ticker-strip.scrolled {
  background: rgba(5,19,42,0.97);
  border-bottom-color: rgba(201,168,76,0.25);
  backdrop-filter: blur(20px);
}
.ticker-strip .tradingview-widget-container {
  height: 46px;
  width: 100%;
}
.ticker-strip .tradingview-widget-container__widget {
  height: 46px !important;
  width: 100% !important;
}

/* ===== ABOUT ===== */
#sobre { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.about__img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 320px;
}
.about__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.about__img-wrap:hover img { transform: scale(1.03); }
.about__img-wrap::before {
  content: ''; position: absolute; bottom: -24px; left: -24px;
  width: 160px; height: 160px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--btg-primary), var(--btg-medium));
  z-index: -1;
}
.about__img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(25,90,180,0.35) 0%, rgba(11,40,89,0.2) 50%, transparent 100%);
  pointer-events: none;
}
.about__content { }
.about__text { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 16px; }
.about__items { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.about__item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius);
  background: var(--gray-100); transition: var(--transition);
}
.about__item { transition: background var(--transition), transform var(--transition-slow), border-color var(--transition-slow); }
.about__item:hover { background: rgba(25,90,180,0.06); transform: translateX(8px); }
.about__item-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--btg-primary), var(--btg-medium));
  display: flex; align-items: center; justify-content: center;
}
.about__item-icon svg { color: var(--white); }
.about__item h4 { font-size: 1rem; font-weight: 700; color: var(--btg-dark); margin-bottom: 4px; }
.about__item p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* ===== NUMBERS ===== */
#numeros {
  background: linear-gradient(135deg, var(--btg-dark) 0%, var(--btg-navy) 100%);
  position: relative; overflow: hidden;
}
#numeros::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(25,90,180,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.numbers__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; max-width: 900px; margin: 0 auto; }
.number__item { text-align: center; padding: 40px 20px; position: relative; }
.number__item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.number__value {
  font-size: clamp(1.1rem, 3.5vw, 2.6rem); font-weight: 700;
  color: var(--white); margin-bottom: 8px; line-height: 1;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--white), var(--btg-lighter));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.number__label { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 400; }

.numbers__btg-block {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.2);
  text-align: center;
}
.numbers__btg-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 8px;
}
.numbers__btg-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  margin-top: 0;
}
.number__value--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* ===== SERVICES ===== */
#servicos { background: var(--white); }
.services__header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.services__header .badge { margin: 0 auto 20px; display: flex; width: fit-content; }
.services__sub { font-size: 1.05rem; color: var(--gray-600); margin-top: 16px; }
.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  padding: 36px 28px; border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200); background: var(--white);
  transition: var(--transition); position: relative; overflow: hidden; cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--btg-primary), var(--btg-medium));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card { transition: border-color var(--transition), transform var(--transition-slow), box-shadow var(--transition-slow); }
.service-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-10px); box-shadow: 0 24px 64px rgba(5,19,42,0.35), 0 0 0 1px rgba(201,168,76,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 24px;
  background: rgba(25,90,180,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.service-card:hover .service-card__icon { background: linear-gradient(135deg, var(--btg-primary), var(--btg-medium)); }
.service-card:hover .service-card__icon svg { color: var(--white); }
.service-card__icon svg { color: var(--btg-primary); transition: var(--transition); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--btg-dark); margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.65; }
.service-card__arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--btg-primary);
  margin-top: 20px; transition: var(--transition);
}
.service-card:hover .service-card__arrow { gap: 10px; }

/* ===== CARTÕES BTG ===== */
.cards-btg {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cards-btg__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cards-btg__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cards-btg__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(5,19,42,0.82) 0%,
    rgba(5,19,42,0.88) 50%,
    rgba(5,19,42,0.92) 100%);
}
.cards-btg__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cards-btg__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.cards-btg__tab {
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  font-family: var(--font);
}
.cards-btg__tab.active {
  background: var(--gold);
  color: #07101F;
}
.cards-btg__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cards-btg__title span {
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.cards-btg__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 28px;
}
.cards-btg__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  align-items: center;
  text-align: left;
  width: 100%;
}
.cards-btg__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.cards-btg__benefits li svg {
  color: var(--gold);
  flex-shrink: 0;
}
.cards-btg__btn {
  background: var(--gold);
  color: #07101F;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.cards-btg__btn:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201,168,76,0.55);
  transform: translateY(-2px);
}
.cards-btg__btn::after { display: none; }
.cards-btg__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.cards-btg__info.hidden {
  display: none;
}
.cards-btg__info.fading {
  opacity: 0;
}

/* Credit card service cards — gold accent */
.service-card--gold::before {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}
.service-card--gold:hover { border-color: rgba(201,168,76,0.4); }
.service-card--gold .service-card__icon { background: rgba(201,168,76,0.10); }
.service-card--gold:hover .service-card__icon { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.service-card--gold .service-card__icon svg { color: var(--gold-dark); }
.service-card--gold:hover .service-card__icon svg { color: var(--white); }
.service-card--gold .service-card__arrow { color: var(--gold-dark); }
.service-card--gold .card-badge-gold {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-dark);
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 14px;
}

/* ===== TEAM ===== */
#equipe { background: var(--gray-100); }
.team__header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.team__header .badge { margin: 0 auto 20px; display: flex; width: fit-content; }
.team__photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.team__photo img { width: 100%; max-height: 500px; object-fit: cover; object-position: center 15%; }
.team__photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, rgba(5,19,42,0.7), transparent);
}
.team__photo-caption {
  position: absolute; bottom: 32px; left: 32px; right: 32px; z-index: 1;
  color: var(--white);
}
.team__photo-caption h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.team__photo-caption p { font-size: 0.9rem; opacity: 0.8; }

/* ===== BLOG ===== */
#blog { background: var(--white); }
.blog__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.blog__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--gray-200); background: var(--white);
  transition: var(--transition);
}
.blog-card { transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition); }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 24px 64px rgba(5,19,42,0.3); border-color: rgba(201,168,76,0.25); }
.blog-card__img {
  overflow: hidden; height: 200px;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 24px; }
.blog-card__cat {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--btg-primary); margin-bottom: 10px; display: block;
}
.blog-card__title {
  font-size: 1.05rem; font-weight: 700; color: var(--btg-dark);
  line-height: 1.4; margin-bottom: 10px;
}
.blog-card__excerpt { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.blog-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--gray-400); padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.blog-card__read {
  font-weight: 600; color: var(--btg-primary); display: flex; align-items: center; gap: 4px;
  transition: var(--transition);
}
.blog-card:hover .blog-card__read { gap: 8px; }

/* ===== CONTACT ===== */
#contato {
  background: linear-gradient(135deg, var(--btg-dark) 0%, var(--btg-navy) 100%);
  position: relative; overflow: hidden;
}
#contato::before {
  content: ''; position: absolute; bottom: -20%; left: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(48,122,224,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.contact__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact__info { color: var(--white); }
.contact__info h2 { margin-bottom: 16px; }
.contact__info p { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 1.05rem; line-height: 1.7; }
.contact__items { display: flex; flex-direction: column; gap: 20px; }
.contact__item {
  display: flex; gap: 14px; align-items: flex-start;
}
.contact__item-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.contact__item-icon svg { color: var(--btg-lighter); }
.contact__item-text strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 2px; font-weight: 500; }
.contact__item-text span { color: var(--white); font-size: 0.95rem; }

.contact__form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-lg);
}
.contact__form h3 { font-size: 1.3rem; font-weight: 700; color: var(--btg-dark); margin-bottom: 6px; }
.contact__form > p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--btg-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--gray-200); font-size: 0.95rem;
  transition: var(--transition); background: var(--gray-100); color: var(--gray-800);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--btg-primary); background: var(--white);
  box-shadow: 0 0 0 3px rgba(25,90,180,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 15px; margin-top: 8px; }
.form-success {
  display: none; text-align: center; padding: 24px;
  background: rgba(20,154,90,0.08); border-radius: var(--radius);
  border: 1.5px solid rgba(20,154,90,0.2); color: #149A5A;
  font-weight: 600; margin-top: 16px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--transition); cursor: pointer;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); animation: none; }
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ===== FOOTER ===== */
#footer { background: var(--btg-dark); color: var(--white); padding: 60px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px; }
.footer__logo { height: 38px; width: auto; margin-bottom: 16px; }
.footer__desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer__social a:hover { border-color: var(--btg-lighter); color: var(--white); background: rgba(255,255,255,0.08); }
.footer__col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer__col ul a:hover { color: var(--white); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer__btg { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer__btg img { height: 22px; opacity: 0.5; }
.footer__disclaimer {
  margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.7;
}
.footer__disclaimer a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer__disclaimer a:hover { color: rgba(255,255,255,0.8); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity 1s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 1s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .navbar { padding: 14px 0; }
  .navbar__logo img { height: 38px; }
  #navbar.scrolled .navbar__logo img { height: 32px; }
  .navbar__nav { display: none; position: fixed; inset: 0; background: var(--btg-dark); flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 999; }
  .navbar__nav.open { display: flex; }
  .navbar__nav a { font-size: 1.3rem; }
  .navbar__toggle { display: flex; z-index: 1000; }
  .navbar__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .navbar__toggle.open span:nth-child(2) { opacity: 0; }
  .navbar__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .navbar__nav .btn { font-size: 1.1rem !important; padding: 14px 32px !important; }

  /* Ticker no mobile — JS define o top dinamicamente */
  .ticker-strip { height: 58px; }
  .ticker-strip .tradingview-widget-container,
  .ticker-strip .tradingview-widget-container__widget { height: 58px !important; }

  /* Hero com padding ajustado para navbar+ticker menores */
  .hero__content { padding: 120px 0 60px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 0; }
  .about__img-wrap { order: -1; height: 320px; margin-bottom: 48px; }
  .about__img-wrap img { position: absolute; height: 100%; }
  .services__grid { grid-template-columns: repeat(2,1fr); }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .cards-btg__center { max-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
  .blog__header { flex-direction: column; align-items: flex-start; }

  /* Números — 3 colunas compactas em mobile */
  .numbers__grid {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 100%;
    gap: 0;
  }
  .numbers__btg-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .number__item { padding: 28px 8px; }
  .number__item::after { display: none; }
  .number__label { font-size: 0.75rem; }

  /* Cards BTG em coluna no mobile */
  .cards-btg { padding: 80px 0; }
  .cards-btg__tab { padding: 8px 16px; font-size: 0.8rem; }
  .cards-btg__title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .cards-btg__desc { font-size: 0.92rem; }

  /* Números BTG */
  .numbers__btg-block { margin-top: 28px; padding-top: 24px; }
  .numbers__btg-label { font-size: 0.62rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .number__value { font-size: clamp(0.95rem, 4.5vw, 1.4rem); }
  .number__label { font-size: 0.7rem; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .container { padding: 0 20px; }

  /* Hero compacto */
  .hero__content { padding: 110px 0 48px; }

  /* About */
  .about__img-wrap { height: 260px; }

  /* FAQ compacto */
  .faq__question { font-size: 0.95rem; padding: 18px 16px; }

  /* Contato compacto */
  .contact__info { gap: 20px; }

  /* Footer logo menor */
  .footer__logo { height: 30px; }
}

/* ===== BLOG POST PAGE ===== */
.post__hero {
  background: var(--btg-dark); padding: 140px 0 60px;
  position: relative; overflow: hidden;
}
.post__hero .badge { margin-bottom: 16px; }
.post__hero h1 { color: var(--white); font-size: clamp(1.8rem,4vw,3rem); max-width: 800px; font-weight: 700; margin-bottom: 16px; }
.post__meta { display: flex; gap: 24px; color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.post__body { max-width: 780px; margin: 0 auto; padding: 60px 24px; }
.post__body h2 { font-size: 1.6rem; font-weight: 700; color: var(--btg-dark); margin: 36px 0 16px; }
.post__body p { color: var(--gray-600); margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; }
.post__img { border-radius: var(--radius-lg); overflow: hidden; margin: 36px 0; }
.post__img img { width: 100%; height: 400px; object-fit: cover; }

/* ===== BLUE PHOTO FILTER (BTG brand — azul dominante) ===== */
.img-blue-filter {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
}
.img-blue-filter img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.img-blue-filter:hover img { transform: scale(1.04); }
.img-blue-filter::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg,
    rgba(25,90,180,0.45) 0%,
    rgba(11,40,89,0.25) 50%,
    transparent 100%);
  transition: opacity var(--transition);
}
.img-blue-filter:hover::after { opacity: 0.7; }

/* Gallery layout */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  height: 420px;
}
.gallery-img-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-img-col .gallery-img { flex: 1; }

/* Gallery photo filter */
.gallery-img {
  overflow: hidden; border-radius: var(--radius); position: relative;
}
.gallery-img--tall { height: 100%; }
.gallery-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-img:hover img { transform: scale(1.06); }
.gallery-img::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(25,90,180,0.45) 0%, rgba(11,40,89,0.15) 50%, transparent 100%);
  transition: opacity 0.4s ease;
}
.gallery-img:hover::after { opacity: 0.6; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    height: auto;
  }
  .gallery-img-col { display: contents; }
  .gallery-img { height: 100%; }
  .gallery-img--tall { height: 100%; }
}

/* ===== FAQ SECTION (GEO otimizado) ===== */
#faq { background: var(--gray-100); }
.faq__grid { max-width: 800px; margin: 0 auto; }
.faq__item {
  border-radius: var(--radius); background: var(--white);
  border: 1.5px solid var(--gray-200); margin-bottom: 12px;
  overflow: hidden; transition: var(--transition);
}
.faq__item:hover { border-color: rgba(25,90,180,0.25); }
.faq__question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-size: 1rem;
  font-weight: 600; color: var(--btg-dark); gap: 16px;
  background: none; width: 100%; text-align: left;
}
.faq__question:hover { color: var(--btg-primary); }
.faq__icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--transition);
}
.faq__item.open .faq__icon { background: var(--btg-primary); transform: rotate(45deg); }
.faq__item.open .faq__icon svg { color: var(--white); }
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.65s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.5s ease;
  padding: 0 24px;
}
.faq__item.open .faq__answer { max-height: 400px; padding: 0 24px 20px; }
.faq__answer p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; }
.faq__header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.faq__header .badge { margin: 0 auto 20px; display: flex; width: fit-content; }

/* ===== GOLD ACCENTS — detalhes dourados em todo o site ===== */

/* Navbar — underline dos links em dourado */
.navbar__nav a::after { background: var(--gold); }
.navbar__nav a:hover { color: var(--gold-light) !important; }
.navbar__nav a.active { color: var(--gold-light); }
.navbar__nav a.active::after { transform: scaleX(1); }

/* Navbar CTA — borda dourada sutil */
.navbar__cta { border: 1.5px solid rgba(201,168,76,0.35) !important; }
.navbar__cta:hover { border-color: var(--gold) !important; }

/* Hero badge — borda dourada */
.hero__btg-badge {
  border-color: rgba(201,168,76,0.3) !important;
}

/* Hero — stripe diagonal dourada adicional */
.hero__stripe-1 {
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.12 !important;
}

/* Hero scroll indicator — dourado */
.hero__scroll { color: rgba(201,168,76,0.6); }
.hero__scroll svg { opacity: 0.7; color: var(--gold); }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* Badges em seções escuras — dourado */
.section--dark .badge, .section--navy .badge {
  color: var(--gold-light) !important;
  background: rgba(201,168,76,0.12) !important;
  border: 1px solid rgba(201,168,76,0.25);
}
.section--dark .badge::before, .section--navy .badge::before { background: var(--gold) !important; }

/* Números — separadores dourados e valor com toque dourado */
.number__item:not(:last-child)::after { background: rgba(201,168,76,0.25); }
.number__value {
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 60%, var(--white) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Seção Sobre — item hover com borda esquerda dourada */
.about__item:hover { border-left: 3px solid var(--gold); padding-left: 17px; }

/* Seção Sobre — ícone dourado no hover */
.about__item:hover .about__item-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
}

/* Service cards — barra superior em dourado no hover */
.service-card::before {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--btg-primary));
}

/* Service card arrow — dourado no hover */
.service-card:hover .service-card__arrow { color: var(--gold-dark); }

/* FAQ — open state com dourado */
.faq__item:hover { border-color: rgba(201,168,76,0.3); }
.faq__item.open { border-color: rgba(201,168,76,0.45); }
.faq__item.open .faq__icon { background: var(--gold) !important; }
.faq__item.open .faq__question { color: var(--gold-dark); }

/* Contato — ícones com borda dourada */
.contact__item-icon {
  border-color: rgba(201,168,76,0.3) !important;
}
.contact__item-icon svg { color: var(--gold-light) !important; }

/* Links de "Ler mais" e "Saiba mais" — dourado no hover */
.blog-card__read:hover { color: var(--gold-dark); }

/* Footer — título das colunas dourado */
.footer__col h4 { color: var(--gold) !important; }

/* Footer — links hover dourado */
.footer__col ul a:hover { color: var(--gold-light); }

/* Footer — social hover dourado */
.footer__social a:hover {
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
  background: rgba(201,168,76,0.08) !important;
}

/* Footer — divisor superior dourado */
.footer__top { border-bottom-color: rgba(201,168,76,0.15) !important; }

/* Footer — parceiro logo text dourado */
.footer__btg { color: rgba(201,168,76,0.5) !important; }

/* Loader — logo com brilho dourado */
@keyframes loaderPulse {
  0%,100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 0px var(--gold)); }
  50% { opacity: 0.7; transform: scale(0.97); filter: drop-shadow(0 0 12px var(--gold)); }
}


/* Botões hero — detalhes dourados */
.btn--primary {
  border: 1.5px solid rgba(201,168,76,0.35);
  box-shadow: 0 4px 20px rgba(25,90,180,0.35), 0 0 0 0 rgba(201,168,76,0);
}
.btn--primary:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(25,90,180,0.50), 0 0 16px rgba(201,168,76,0.2);
}

.btn--outline {
  border-color: rgba(201,168,76,0.5) !important;
  color: var(--gold-light) !important;
}
.btn--outline:hover {
  border-color: var(--gold) !important;
  background: rgba(201,168,76,0.08) !important;
  color: var(--gold-light) !important;
}

/* CTA banner — texto accent dourado */
.cta-gold-accent { color: var(--gold-light); }

/* ===== LOADING ===== */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--btg-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader__logo { height: 50px; animation: loaderPulse 1.5s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.95)} }

/* ===== ENHANCED INTERACTIONS ===== */

/* Navbar links — transição mais suave */
.navbar__nav a { transition: color var(--transition-slow); }
.navbar__nav a::after { transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }

/* Navbar logo — scale no hover */
.navbar__logo:hover img { transform: scale(1.04); }

/* Botões — glow dourado no hover */
.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(25,90,180,0.4), 0 0 20px rgba(201,168,76,0.15);
}
.cards-btg__btn:hover {
  box-shadow: 0 8px 40px rgba(201,168,76,0.5);
}

/* Numbers — entrada com glow */
.number__item { transition: transform var(--transition-slow); }
.number__item:hover { transform: translateY(-4px); }
.number__value--gold { transition: filter var(--transition-slow); }
.number__item:hover .number__value--gold {
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.5));
}

/* About image — transição mais lenta */
.about__img-wrap img { transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94); }
.about__img-wrap:hover img { transform: scale(1.04); }

/* Service card icon — rotate suave no hover */
.service-card__icon { transition: transform var(--transition-slow), background var(--transition); }
.service-card:hover .service-card__icon { transform: rotate(-6deg) scale(1.1); }

/* Service card top bar — expand mais lento */
.service-card::before { transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }

/* Blog card image zoom mais lento */
.blog-card__img img { transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94); }
.blog-card:hover .blog-card__img img { transform: scale(1.07); }

/* FAQ question — transição de cor suave */
.faq__question { transition: color var(--transition-slow); }
.faq__icon { transition: background var(--transition), transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94) !important; }

/* Contact icons — pulse sutil no hover */
.contact__item { transition: transform var(--transition-slow); }
.contact__item:hover { transform: translateX(6px); }
.contact__item-icon { transition: border-color var(--transition), box-shadow var(--transition-slow) !important; }
.contact__item:hover .contact__item-icon {
  box-shadow: 0 0 16px rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.5) !important;
}

/* Footer links — underline deslizando */
.footer__col ul a {
  display: inline-block;
  transition: color var(--transition), transform var(--transition-slow);
}
.footer__col ul a:hover { transform: translateX(4px); }

/* Footer social — escala no hover */
.footer__social a { transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition-slow) !important; }
.footer__social a:hover { transform: translateY(-3px); }

/* Cards BTG tab — transição suave */
.cards-btg__tab { transition: background var(--transition-slow), color var(--transition-slow); }

/* Whatsapp float — transição mais suave */
.whatsapp-float { transition: transform var(--transition-slow), box-shadow var(--transition-slow) !important; }

/* Scroll reveal — aumenta distância para revelar com mais drama */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}
