/* X Global Brasil — Static site styles */

:root {
  --black-deep: oklch(0.12 0 0);
  --petrol: oklch(0.28 0.03 260);
  --executive: oklch(0.38 0.04 260);
  --wine: oklch(0.48 0.18 25);
  --gold: oklch(0.58 0.20 25);
  --light-gray: oklch(0.92 0.003 250);
  --background: oklch(1 0 0);
  --foreground: var(--black-deep);
  --muted-foreground: oklch(0.45 0.01 250);
  --border: oklch(0.91 0.005 250);

  --gradient-hero: linear-gradient(135deg, oklch(0.10 0 0 / 0.95) 0%, oklch(0.15 0.02 260 / 0.88) 60%, oklch(0.20 0.05 25 / 0.55) 100%);
  --gradient-dark: linear-gradient(160deg, var(--black-deep) 0%, oklch(0.18 0.02 260) 100%);
  --gradient-accent: linear-gradient(135deg, var(--petrol) 0%, var(--wine) 100%);
  --shadow-elegant: 0 30px 60px -20px oklch(0.12 0 0 / 0.35);
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: "Montserrat", "Inter", sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
img { display: block; max-width: 100%; }

.text-gradient-gold {
  background: linear-gradient(135deg, oklch(0.65 0.22 25), oklch(0.50 0.20 20));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes fade-up { from { opacity:0; transform: translateY(24px);} to { opacity:1; transform: translateY(0);} }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.animate-fade-up { animation: fade-up .8s var(--transition-smooth) both; }
.animate-fade-in { animation: fade-in .8s ease-out both; }
.animate-ping { animation: ping 1.4s cubic-bezier(0,0,0.2,1) infinite; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--transition-smooth), transform .9s var(--transition-smooth); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ------ Layout primitives ------ */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }
.container-sm { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container-sm { padding: 0 2.5rem; } }

.section { padding: 6rem 0; }
@media (min-width: 1024px) { .section { padding: 10rem 0; } }

.eyebrow { font-size: .75rem; text-transform: uppercase; letter-spacing: .3em; color: var(--executive); font-weight: 500; }
.eyebrow.gold { color: var(--gold); }

.h-section { font-family: "Montserrat", sans-serif; font-size: 2.25rem; font-weight: 300; line-height: 1.15; color: var(--black-deep); margin-top: 1.5rem; }
@media (min-width: 768px) { .h-section { font-size: 3rem; } }
.h-section strong { font-weight: 700; }
.h-section.on-dark { color: #fff; }

.lead { margin-top: 1.5rem; color: var(--muted-foreground); font-size: 1.125rem; }
.lead.on-dark { color: rgba(255,255,255,0.7); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .75rem; padding: 1rem 2rem; border-radius: 2px; font-weight: 500; letter-spacing: .025em; transition: all .3s; cursor: pointer; }
.btn .arrow { transition: transform .3s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: #fff; color: var(--black-deep); }
.btn-primary:hover { background: rgba(255,255,255,0.9); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.6); }
.btn-outline-dark { border: 1px solid var(--black-deep); color: var(--black-deep); }
.btn-outline-dark:hover { background: var(--black-deep); color: #fff; }

/* ====== Header ====== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all .5s; background: transparent; }
.header.scrolled { background: oklch(0.12 0 0 / 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.header-inner { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; height: 6rem; display: flex; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .header-inner { height: 7rem; } }
@media (min-width: 1024px) { .header-inner { padding: 0 2.5rem; } }
.header-logo img { height: 4rem; width: auto; }
@media (min-width: 768px) { .header-logo img { height: 6rem; } }
.header-nav { display: none; gap: 2rem; }
.header-nav a { font-size: .875rem; color: rgba(255,255,255,0.8); letter-spacing: .025em; transition: color .2s; }
.header-nav a:hover { color: #fff; }
.header-cta { display: none; }
@media (min-width: 1024px) {
  .header-nav { display: flex; align-items: center; }
  .header-cta { display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 500; background: #fff; color: var(--black-deep); padding: .625rem 1.25rem; border-radius: 2px; }
  .header-cta:hover { background: rgba(255,255,255,0.9); }
}
.menu-toggle { color: #fff; display: inline-flex; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.mobile-menu { display: none; background: var(--black-deep); border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,0.8); padding: .5rem 0; }
.mobile-menu .btn-primary { display: flex; margin-top: 1rem; }

/* ====== Hero ====== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero); }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, var(--black-deep), transparent 60%); }
.hero-content { position: relative; z-index: 10; max-width: 80rem; margin: 0 auto; padding: 8rem 1.5rem 6rem; width: 100%; }
@media (min-width: 1024px) { .hero-content { padding: 8rem 2.5rem 6rem; } }
.hero-eyebrow { font-size: .75rem; text-transform: uppercase; letter-spacing: .25em; color: rgba(255,255,255,0.8); }
.hero h1 { font-family: "Montserrat", sans-serif; font-size: 2.5rem; font-weight: 300; line-height: 1.05; color: #fff; margin-top: 2rem; max-width: 56rem; }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero h1 .line2 { display: block; font-weight: 700; margin-top: .5rem; }
.hero h1 em { font-style: italic; font-weight: 300; }
.hero p { margin-top: 2rem; font-size: 1.125rem; color: rgba(255,255,255,0.75); max-width: 48rem; line-height: 1.6; }
@media (min-width: 768px) { .hero p { font-size: 1.25rem; } }
.hero-ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

/* ====== Card grid ====== */
.grid-cards { display: grid; gap: 1px; background: var(--border); }
.grid-cards.cols-2 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-cards.cols-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-cards.cols-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-cards.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-cards.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-cards.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-cards.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-cards.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-cards.on-dark { background: rgba(255,255,255,0.05); }

.card { background: var(--background); padding: 2rem; transition: background .5s; }
@media (min-width: 1024px) { .card { padding: 2.5rem; } }
.card svg { width: 1.75rem; height: 1.75rem; color: var(--executive); transition: color .3s; stroke-width: 1.5; }
.card h3 { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 600; color: var(--black-deep); transition: color .3s; }
.card p { margin-top: .75rem; font-size: .875rem; line-height: 1.6; color: var(--muted-foreground); transition: color .3s; }
.card:hover, .card:active { background: var(--black-deep); }
.card:hover svg, .card:active svg { color: var(--gold); }
.card:hover h3, .card:active h3 { color: #fff; }
.card:hover p, .card:active p { color: rgba(255,255,255,0.7); }

.card-small { padding: 1.75rem; }
.card-small svg { width: 1.5rem; height: 1.5rem; }
.card-small h3 { margin-top: 1.25rem; font-size: 1rem; line-height: 1.3; }

.card-dark { background: oklch(0.15 0.01 260); padding: 2rem; border: 1px solid rgba(255,255,255,0.05); transition: background .5s; }
@media (min-width: 1024px) { .card-dark { padding: 2.5rem; } }
.card-dark svg { width: 1.75rem; height: 1.75rem; color: var(--gold); stroke-width: 1.5; }
.card-dark h3 { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 600; color: #fff; }
.card-dark p { margin-top: .75rem; font-size: .875rem; line-height: 1.6; color: rgba(255,255,255,0.65); }
.card-dark:hover { background: var(--black-deep); }

/* ====== Section backgrounds ====== */
.bg-light { background: var(--light-gray); }
.bg-dark { background: var(--gradient-dark); position: relative; overflow: hidden; }
.dot-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 32px 32px; pointer-events: none; }

/* ====== Modelo (timeline) ====== */
.modelo-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .modelo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .modelo-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.modelo-line { display: none; }
@media (min-width: 1024px) { .modelo-line { display: block; position: absolute; top: 2.5rem; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(193,135,49,0.4), transparent); } }
.modelo-step .icon-circle { position: relative; z-index: 10; width: 5rem; height: 5rem; border-radius: 9999px; background: var(--black-deep); border: 1px solid rgba(193,135,49,0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: border-color .3s; }
.modelo-step .icon-circle:hover { border-color: var(--gold); }
.modelo-step svg { width: 1.75rem; height: 1.75rem; color: var(--gold); stroke-width: 1.5; }
.modelo-step .num { font-family: "Montserrat", sans-serif; font-size: .75rem; letter-spacing: .3em; color: rgba(193,135,49,0.7); }
.modelo-step h3 { margin-top: .5rem; font-size: 1.25rem; font-weight: 600; color: #fff; }
.modelo-step p { margin-top: .75rem; font-size: .875rem; line-height: 1.6; color: rgba(255,255,255,0.6); }

/* ====== Visão ====== */
.visao-glow-a { position: absolute; top: -10rem; right: -10rem; width: 28rem; height: 28rem; border-radius: 9999px; opacity: 0.2; filter: blur(60px); background: radial-gradient(circle, var(--gold) 0%, transparent 70%); }
.visao-glow-b { position: absolute; bottom: -10rem; left: -10rem; width: 28rem; height: 28rem; border-radius: 9999px; opacity: 0.1; filter: blur(60px); background: radial-gradient(circle, var(--executive) 0%, transparent 70%); }
.visao-eyebrow { display: flex; align-items: center; gap: 1rem; }
.visao-eyebrow span:first-child { height: 1px; width: 3rem; background: rgba(193,135,49,0.6); }
.visao-h { font-family: "Montserrat", sans-serif; font-weight: 300; color: #fff; font-size: 2.25rem; line-height: 1.05; margin-top: 2rem; }
@media (min-width: 768px) { .visao-h { font-size: 3.75rem; } }
@media (min-width: 1024px) { .visao-h { font-size: 4.25rem; } }
.visao-h .b { display: block; margin-top: .75rem; font-weight: 700; }
.visao-h em { font-style: italic; font-weight: 300; }
.visao-grid { margin-top: 5rem; display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .visao-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.visao-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .3em; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.visao-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.visao-list li { display: flex; align-items: baseline; gap: 1.25rem; }
.visao-list .n { font-family: "Montserrat"; font-size: .75rem; letter-spacing: .2em; color: rgba(193,135,49,0.7); width: 2rem; flex-shrink: 0; }
.visao-list .t { font-family: "Montserrat"; font-size: 1.25rem; font-weight: 300; color: #fff; line-height: 1.4; transition: color .3s; }
@media (min-width: 768px) { .visao-list .t { font-size: 1.5rem; } }
.visao-list li:hover .t { color: var(--gold); }
.visao-manifesto { color: rgba(255,255,255,0.75); font-weight: 300; font-size: 1rem; line-height: 1.65; display: flex; flex-direction: column; gap: 1.75rem; }
@media (min-width: 768px) { .visao-manifesto { font-size: 1.125rem; } }
@media (min-width: 1024px) { .visao-manifesto { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 4rem; } }
.visao-manifesto .b { display: block; margin-top: .5rem; color: #fff; font-weight: 400; }
.visao-manifesto em { font-style: italic; color: var(--gold); }
.visao-divider { height: 1px; width: 4rem; background: rgba(193,135,49,0.4); margin: 2.5rem 0; }
.visao-pilares { margin-top: 6rem; display: grid; gap: 1px; background: rgba(255,255,255,0.1); }
@media (min-width: 768px) { .visao-pilares { grid-template-columns: repeat(3, 1fr); } }
.visao-pilar { padding: 2rem; background: var(--gradient-dark); }
@media (min-width: 1024px) { .visao-pilar { padding: 2.5rem; } }
.visao-pilar h4 { font-family: "Montserrat"; font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.3; }
.visao-pilar p { margin-top: .75rem; font-size: .875rem; line-height: 1.6; color: rgba(255,255,255,0.65); }
.visao-final { margin-top: 5rem; text-align: center; font-family: "Montserrat"; font-style: italic; font-weight: 300; color: #fff; max-width: 48rem; margin-left: auto; margin-right: auto; line-height: 1.5; font-size: 1.25rem; }
@media (min-width: 768px) { .visao-final { font-size: 1.875rem; } }
.visao-final .em { font-style: normal; font-weight: 400; }

/* ====== Fundador ====== */
.founder-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .founder-grid { grid-template-columns: 4fr 8fr; gap: 5rem; } }
.founder-photo { position: relative; max-width: 20rem; margin: 0 auto; }
.founder-photo img { width: 100%; height: auto; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow-elegant); }
.founder-photo .deco { display: none; }
@media (min-width: 768px) { .founder-photo .deco { display: block; position: absolute; bottom: -1.25rem; right: -1.25rem; width: 5rem; height: 5rem; border: 2px solid rgba(193,135,49,0.4); border-radius: 2px; z-index: -1; } }
.founder-name { font-family: "Montserrat"; font-size: 1.5rem; font-weight: 700; color: var(--black-deep); margin-top: 2rem; }
.founder-role { margin-top: .25rem; font-size: .875rem; text-transform: uppercase; letter-spacing: .2em; color: var(--executive); }
.founder-bio { margin-top: 2rem; color: var(--muted-foreground); line-height: 1.7; display: flex; flex-direction: column; gap: 1.25rem; }

/* ====== Depoimentos ====== */
.depo-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .depo-grid { grid-template-columns: repeat(3, 1fr); } }
.depo-card { background: oklch(0.15 0.01 260); border: 1px solid rgba(255,255,255,0.05); padding: 2rem; border-radius: 2px; }
@media (min-width: 1024px) { .depo-card { padding: 2.5rem; } }
.depo-stars { display: flex; gap: .25rem; color: var(--gold); }
.depo-stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.depo-card .q { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(255,255,255,0.9); line-height: 1.6; font-weight: 300; font-style: italic; }
.depo-card .a { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: .875rem; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,0.6); }

/* ====== FAQ ====== */
.faq { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; text-align: left; }
.faq-q .label { font-family: "Montserrat"; font-size: 1.125rem; font-weight: 500; color: var(--black-deep); transition: color .2s; }
@media (min-width: 768px) { .faq-q .label { font-size: 1.25rem; } }
.faq-q:hover .label { color: var(--executive); }
.faq-q .toggle { flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 9999px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--executive); transition: border-color .2s; }
.faq-q:hover .toggle { border-color: var(--executive); }
.faq-q .toggle svg { width: 1rem; height: 1rem; }
.faq-q .icon-minus { display: none; }
.faq-item.open .faq-q .icon-plus { display: none; }
.faq-item.open .faq-q .icon-minus { display: block; }
.faq-a { display: grid; grid-template-rows: 0fr; opacity: 0; transition: all .5s; }
.faq-item.open .faq-a { grid-template-rows: 1fr; opacity: 1; padding-bottom: 1.5rem; }
.faq-a-inner { overflow: hidden; }
.faq-a p { color: var(--muted-foreground); line-height: 1.7; padding-right: 3rem; }

/* ====== CTA Box ====== */
.cta-box { position: relative; overflow: hidden; border-radius: 2px; padding: 3rem 1.5rem; text-align: center; background: var(--gradient-accent); }
@media (min-width: 768px) { .cta-box { padding: 5rem 3rem; } }
.cta-box .dot-pattern-2 { position: absolute; inset: 0; opacity: 0.06; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 24px 24px; }
.cta-box h2 { position: relative; font-family: "Montserrat"; font-size: 1.875rem; font-weight: 300; color: #fff; line-height: 1.15; }
@media (min-width: 768px) { .cta-box h2 { font-size: 3rem; } }
.cta-box h2 em { font-style: italic; font-weight: 700; }
.cta-box p { position: relative; margin: 1.5rem auto 0; color: rgba(255,255,255,0.85); max-width: 42rem; font-size: 1.125rem; }
.cta-box .btn { position: relative; margin-top: 2.5rem; padding: 1rem 2.5rem; }

/* ====== Contato ====== */
.contato-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .contato-grid { grid-template-columns: repeat(2, 1fr); gap: 6rem; } }
.info-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.info-row { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon { width: 2.75rem; height: 2.75rem; border-radius: 2px; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.info-icon svg { width: 1.25rem; height: 1.25rem; color: var(--executive); transition: color .2s; stroke-width: 1.5; }
a.info-row:hover .info-icon { background: var(--executive); }
a.info-row:hover .info-icon svg { color: #fff; }
.info-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-foreground); }
.info-value { margin-top: .25rem; font-weight: 500; color: var(--black-deep); transition: color .2s; }
a.info-row:hover .info-value { color: var(--executive); }

/* Form */
.form { background: #fff; padding: 2rem; border-radius: 2px; box-shadow: var(--shadow-elegant); display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 1024px) { .form { padding: 2.5rem; } }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form label { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-foreground); display: block; margin-bottom: .5rem; }
.form input, .form textarea { width: 100%; background: #fff; border: 1px solid var(--border); padding: .875rem 1rem; font-size: .875rem; color: var(--foreground); font-family: inherit; border-radius: 2px; transition: border-color .2s, box-shadow .2s; }
.form input:focus, .form textarea:focus { outline: 0; border-color: var(--executive); box-shadow: 0 0 0 1px var(--executive); }
.form textarea { resize: none; }
.form-submit { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: .75rem; background: var(--black-deep); color: #fff; padding: 1rem; border-radius: 2px; font-weight: 500; transition: background .3s; }
.form-submit:hover { background: var(--executive); }
.form .legal { font-size: .75rem; color: var(--muted-foreground); text-align: center; }
.form-success { background: #fff; padding: 2.5rem; border-radius: 2px; box-shadow: var(--shadow-elegant); min-height: 400px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.form-success svg { width: 3.5rem; height: 3.5rem; color: var(--executive); stroke-width: 1.5; }
.form-success h3 { margin-top: 1.5rem; font-family: "Montserrat"; font-size: 1.5rem; font-weight: 600; color: var(--black-deep); }
.form-success p { margin-top: .75rem; color: var(--muted-foreground); max-width: 24rem; }

/* ====== Footer ====== */
.footer { background: var(--black-deep); color: #fff; padding: 4rem 0; position: relative; overflow: hidden; }
.footer .dot-pattern { opacity: 0.03; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr; align-items: start; } }
.footer-logo img { height: 5rem; width: auto; }
.footer ul.bullets { margin: 1.5rem 0 0; padding: 0; list-style: none; display: grid; gap: .5rem; max-width: 36rem; }
@media (min-width: 640px) { .footer ul.bullets { grid-template-columns: 1fr 1fr; gap: .5rem 1.5rem; } }
.footer ul.bullets li { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: rgba(255,255,255,0.8); }
.footer ul.bullets li::before { content: ""; margin-top: .5rem; width: 4px; height: 4px; border-radius: 9999px; background: var(--gold); flex-shrink: 0; }
.footer-about { margin-top: 1.5rem; font-size: .875rem; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 36rem; }
.footer-right { text-align: left; }
@media (min-width: 768px) { .footer-right { text-align: right; } }
.footer-section-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .3em; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.social-row { display: flex; gap: .75rem; }
@media (min-width: 768px) { .social-row { justify-content: flex-end; } }
.social-link { width: 2.75rem; height: 2.75rem; border-radius: 2px; border: 1px solid rgba(255,255,255,0.15); display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
.social-link:hover { background: #fff; color: var(--black-deep); }
.social-link svg { width: 1rem; height: 1rem; stroke-width: 1.5; }
.footer-nav { margin-top: 2rem; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; }
.footer-nav a { color: rgba(255,255,255,0.75); transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; font-size: .75rem; color: rgba(255,255,255,0.4); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .upper { text-transform: uppercase; letter-spacing: .1em; }

/* ====== Floating WhatsApp ====== */
.wa-float { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 50; width: 3.5rem; height: 3.5rem; border-radius: 9999px; background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px -5px rgba(37,211,102,0.55); transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 1.75rem; height: 1.75rem; stroke-width: 1.8; }
.wa-float .pulse { position: absolute; inset: 0; border-radius: 9999px; background: rgba(37,211,102,0.4); animation: ping 1.4s cubic-bezier(0,0,0.2,1) infinite; }

/* Headline meta */
.hflex-end { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .hflex-end { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.hflex-end .lead { max-width: 28rem; margin-top: 0; }
.section-head { margin-bottom: 4rem; max-width: 48rem; }
.center-cta { margin-top: 3.5rem; text-align: center; }
