/*
Theme Name:  AE Consultores
Theme URI:   https://aeconsultores.net
Author:      Alcequiez Estévez Consultores
Author URI:  https://aeconsultores.net
Description: Tema oficial de AE Consultores — Asesoría Financiera y Tecnológica, República Dominicana.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ae-consultores
Tags:        consulting, finance, technology, single-page, navy, spanish
*/

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --ink:        #0B2540;
  --ink-2:      #143A5C;
  --ink-3:      #3F5E7E;
  --ink-4:      #7C93AB;
  --paper:      #FFFFFF;
  --paper-2:    #F2F6F9;
  --paper-3:    #E4EEF3;
  --line:       rgba(11,37,64,.14);
  --line-2:     rgba(11,37,64,.07);
  --amber:      #2EB5C2;
  --amber-2:    #1B8A99;
  --terra:      #1B8A99;
  --green:      #2EB5C2;
  --white:      #FFFFFF;
  --radius:     2px;
  --r-card:     4px;
  --display:    'Newsreader', 'Times New Roman', serif;
  --sans:       'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --mono:       'Inter', 'Helvetica Neue', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  animation: pageIn .6s ease both;
}
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 720px) { .wrap { padding: 0 24px; } }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--ink-3); }

.display { font-family: var(--display); font-weight: 400; letter-spacing: -.015em; line-height: 1.02; }
.display em { font-style: italic; color: var(--ink-2); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .01em;
  font-weight: 500;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-primary  { background: var(--amber); color: #fff; }
.btn-primary:hover { background: var(--amber-2); transform: translateY(-1px); }
.btn-dark     { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }
.btn-outline  { border: 1px solid currentColor; color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { border: 1px solid rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn .arr { width: 14px; height: 14px; display: inline-block; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left  { transform: translate3d(-40px,0,0); }
.reveal-right { transform: translate3d(40px,0,0); }
.reveal-scale { transform: scale(.96); }
.reveal-blur  { filter: blur(8px); }
.reveal-blur.in { filter: blur(0); }

[data-stagger] > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
[data-stagger].in > * { opacity: 1; transform: none; }

/* ============================================================
   NAVY HERO (includes header inside)
   ============================================================ */
.hero-navy {
  background:
    radial-gradient(ellipse 60% 50% at 85% 35%, rgba(46,181,194,.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(46,181,194,.10), transparent 55%),
    linear-gradient(135deg, #061a30 0%, #0B2540 50%, #102d4a 100%);
  color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  min-height: 640px;
}
.hero-navy::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 25%, rgba(46,181,194,.20), transparent 50%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { opacity: .7; transform: translate(0,0); }
  100% { opacity: 1;  transform: translate(-20px,10px); }
}
.hero-navy .bg-monogram {
  position: absolute;
  right: -80px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-weight: 700;
  font-size: 520px; line-height: 1;
  color: rgba(255,255,255,.025);
  letter-spacing: -.04em;
  pointer-events: none; user-select: none;
  z-index: 1;
  animation: monogramFloat 12s ease-in-out infinite alternate;
}
@keyframes monogramFloat {
  0%   { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-48%) translateX(-18px); }
}
.hero-navy .bg-streak {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(115deg, transparent 35%, rgba(46,181,194,.08) 50%, transparent 65%);
  animation: streakSweep 9s ease-in-out infinite alternate;
}
@keyframes streakSweep {
  0%   { transform: translateX(-8%); }
  100% { transform: translateX(8%); }
}
.hero-navy .header-on-navy {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 56px;
}
.hero-navy .header-on-navy .brand { color: #fff; }
.hero-navy .header-on-navy .brand .name {
  color: #fff; font-size: 24px; font-weight: 600;
  letter-spacing: .04em; font-family: var(--sans);
}
.hero-navy .header-on-navy .brand img {
  height: 38px; width: auto; filter: brightness(0) invert(1);
}
.hero-navy .header-on-navy nav.primary {
  display: flex; gap: 32px;
}
.hero-navy .header-on-navy nav.primary a {
  color: rgba(255,255,255,.85); font-size: 15px; padding: 6px 4px;
  position: relative;
}
.hero-navy .header-on-navy nav.primary a:hover { color: #fff; }
.hero-navy .header-on-navy nav.primary a.active { color: #fff; }
.hero-navy .header-on-navy nav.primary a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  height: 2px; width: 0; background: var(--amber); border-radius: 2px;
  transition: width .45s cubic-bezier(.2,.7,.2,1);
}
.hero-navy .header-on-navy nav.primary a:hover::after,
.hero-navy .header-on-navy nav.primary a.active::after { width: 100%; }
.hero-navy .header-on-navy .btn-primary { background: var(--amber); }

/* Hero body */
.hero-navy .hero-body {
  position: relative; z-index: 4;
  padding: 64px 56px 90px;
  max-width: 980px;
}
.hero-navy .eyebrow {
  color: rgba(255,255,255,.85); font-size: 15px; letter-spacing: 0;
  text-transform: none; font-family: var(--sans);
  opacity: 0; transform: translateY(14px);
  animation: heroIn .8s cubic-bezier(.2,.7,.2,1) forwards .05s;
}
.hero-navy .eyebrow::before { display: none; }
.hero-navy .lede {
  color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.5;
  margin-top: 12px; max-width: 520px;
  opacity: 0; transform: translateY(14px);
  animation: heroIn .8s cubic-bezier(.2,.7,.2,1) forwards .18s;
}
.hero-navy h1.big {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(54px, 7.4vw, 108px);
  line-height: .98; letter-spacing: -.02em;
  color: #fff; margin-top: 28px; text-transform: uppercase;
}
.hero-navy h1.big .word {
  display: inline-block;
  opacity: 0; transform: translateY(28px);
  animation: heroWordIn .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-navy h1.big .word.w1 { animation-delay: .35s; }
.hero-navy h1.big .word.w2 { animation-delay: .5s; }
.hero-navy h1.big .word.w3 { animation-delay: .7s; }
@keyframes heroWordIn { to { opacity: 1; transform: translateY(0); } }
.hero-navy h1.big .underline {
  display: inline-block; position: relative; padding-bottom: 10px;
}
.hero-navy h1.big .underline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 4px; background: var(--amber); border-radius: 2px; width: 100%;
  transform-origin: left; transform: scaleX(0);
  animation: underlineGrow .9s cubic-bezier(.2,.7,.2,1) forwards 1.1s;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }
.hero-navy .cta-row {
  margin-top: 44px;
  opacity: 0; transform: translateY(14px);
  animation: heroIn .8s cubic-bezier(.2,.7,.2,1) forwards 1.4s;
}
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* Nav entrance animation */
.hero-navy .header-on-navy .brand,
.hero-navy .header-on-navy nav.primary a,
.hero-navy .header-on-navy .btn {
  opacity: 0; transform: translateY(-10px);
  animation: navIn .6s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-navy .header-on-navy .brand                          { animation-delay: .05s; }
.hero-navy .header-on-navy nav.primary a:nth-child(1)      { animation-delay: .15s; }
.hero-navy .header-on-navy nav.primary a:nth-child(2)      { animation-delay: .22s; }
.hero-navy .header-on-navy nav.primary a:nth-child(3)      { animation-delay: .29s; }
.hero-navy .header-on-navy nav.primary a:nth-child(4)      { animation-delay: .36s; }
.hero-navy .header-on-navy .btn                            { animation-delay: .45s; }
@keyframes navIn { to { opacity: 1; transform: translateY(0); } }

.hero-navy .btn-primary {
  box-shadow: 0 0 0 0 rgba(46,181,194,.6);
  animation: ctaPulse 2.6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(46,181,194,.45); }
  50%      { box-shadow: 0 0 0 14px rgba(46,181,194,0); }
}

/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: background .25s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255,255,255,.16); }
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-nav {
  position: relative; z-index: 4;
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 24px 28px;
  background: rgba(6,26,48,.97);
  border-top: 1px solid rgba(255,255,255,.1);
  animation: mobileNavIn .3s cubic-bezier(.2,.7,.2,1) both;
}
.mobile-nav[hidden] { display: none; }
@keyframes mobileNavIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav a {
  color: rgba(255,255,255,.85); font-size: 17px;
  padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.08);
  display: block;
  transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a:hover { color: #fff; }
.mobile-nav a.btn { border-bottom: 0; padding: 13px 26px; }

@media (max-width: 780px) {
  .hero-navy .header-on-navy { padding: 18px 20px; }
  .hero-navy .header-on-navy nav.primary { display: none; }
  .hero-navy .header-on-navy .desktop-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-navy .hero-body { padding: 36px 20px 56px; }
  .hero-navy .bg-monogram { font-size: 240px; right: -40px; }
}

@media (max-width: 420px) {
  .hero-navy .header-on-navy { padding: 14px 16px; }
  .hero-navy .hero-body { padding: 28px 16px 48px; }
  .hero-navy .bg-monogram { font-size: 160px; right: -20px; }
  .reasons { margin: 0 8px; padding: 48px 0; }
  .cta-band { margin: 0 8px 48px; padding: 24px 20px; }
}

/* ============================================================
   WHY BEST SECTION
   ============================================================ */
.why-best { padding: 100px 0; }
.why-best .grid {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px;
  align-items: center;
}
.why-best .photo {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3.2;
  background: var(--paper-3);
  box-shadow: 0 20px 50px -25px rgba(11,37,64,.3);
}
.why-best .photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.why-best h2 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(36px, 4.2vw, 56px);
  letter-spacing: -.02em; line-height: 1.05; color: var(--ink);
}
.why-best h2 em { font-style: normal; color: var(--amber-2); }
.why-best .twocol {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 36px;
}
.why-best .twocol h4 {
  font-family: var(--sans); font-weight: 600; font-size: 17px;
  color: var(--ink); margin-bottom: 10px;
}
.why-best .twocol p { color: var(--ink-3); font-size: 15px; line-height: 1.55; }
.why-best .cta-row { margin-top: 36px; }
@media (max-width: 880px) {
  .why-best .grid  { grid-template-columns: 1fr; gap: 36px; }
  .why-best .twocol { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   STATS WITH ICONS
   ============================================================ */
.stats-icons {
  background: #fff; padding: 80px 0;
  border-top: 1px solid var(--line);
}
.stats-icons .grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  max-width: 1100px; margin: 0 auto;
}
.stats-icons .item { text-align: left; }
.stats-icons .ico { width: 44px; height: 44px; color: var(--ink); margin-bottom: 18px; }
.stats-icons .num {
  font-family: var(--sans); font-weight: 700;
  font-size: 48px; line-height: 1; color: var(--ink); letter-spacing: -.02em;
}
.stats-icons .num .pct { color: var(--amber-2); }
.stats-icons .lab { margin-top: 10px; font-size: 14px; color: var(--ink-3); line-height: 1.4; }
@media (max-width: 780px) { .stats-icons .grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* ============================================================
   REASONS (navy band with white cards)
   ============================================================ */
.reasons {
  background: linear-gradient(135deg, #0B2540 0%, #143A5C 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
  border-radius: 24px;
  margin: 0 28px;
}
.reasons::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 80%, rgba(46,181,194,.16), transparent 50%);
  pointer-events: none; border-radius: 24px;
}
.reasons .grid {
  position: relative; display: grid;
  grid-template-columns: .9fr 1.4fr; gap: 64px; align-items: start;
}
.reasons h2 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(36px,4vw,52px); line-height: 1.05;
  letter-spacing: -.02em; color: #fff;
}
.reasons .lede {
  color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.6;
  margin-top: 22px; max-width: 380px;
}
.reasons .cta-row { margin-top: 32px; }
.reasons .cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.reasons .card {
  background: #fff; color: var(--ink);
  border-radius: 14px; padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.reasons .card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.4); }
.reasons .card .top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
.reasons .card h4 {
  font-family: var(--sans); font-weight: 600; font-size: 18px;
  color: var(--ink); line-height: 1.2; max-width: 200px;
}
.reasons .card .ico { width: 34px; height: 34px; color: var(--amber-2); flex-shrink: 0; }
.reasons .card p { color: var(--ink-3); font-size: 14px; line-height: 1.55; margin-top: 18px; }
@media (max-width: 980px) {
  .reasons { margin: 0 12px; padding: 64px 0; }
  .reasons .grid   { grid-template-columns: 1fr; gap: 36px; }
  .reasons .cards  { grid-template-columns: 1fr; }
}

/* ============================================================
   THREE STEPS
   ============================================================ */
.three-steps { padding: 100px 0; background: #fff; }
.three-steps .title { text-align: center; margin-bottom: 48px; }
.three-steps .title h2 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(32px,3.6vw,48px); line-height: 1.1;
  letter-spacing: -.02em; color: var(--ink);
}
.three-steps .cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.three-steps .scard {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 32px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.three-steps .scard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -25px rgba(11,37,64,.18);
  border-color: var(--amber);
}
.three-steps .scard .n {
  font-family: var(--sans); font-weight: 700; font-size: 36px;
  color: var(--amber-2); letter-spacing: -.02em;
}
.three-steps .scard h4 {
  font-family: var(--sans); font-weight: 700; font-size: 20px;
  color: var(--ink); margin-top: 14px;
}
.three-steps .scard p {
  color: var(--ink-3); font-size: 14.5px; line-height: 1.55; margin-top: 12px;
}
@media (max-width: 880px) { .three-steps .cards { grid-template-columns: 1fr; } }

/* ============================================================
   PHOTO SERVICE CARDS
   ============================================================ */
.photo-services { padding: 100px 0; background: #fff; }
.photo-services .title { text-align: center; margin-bottom: 48px; }
.photo-services .title h2 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(32px,3.6vw,48px); color: var(--ink); letter-spacing: -.02em;
}
.photo-services .cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  max-width: 1200px; margin: 0 auto;
}
.photo-services .pcard {
  position: relative; overflow: hidden;
  border-radius: 14px; aspect-ratio: 4/4.4;
  background: var(--ink); cursor: pointer; isolation: isolate;
}
.photo-services .pcard img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 14px; z-index: 0;
}
.photo-services .pcard::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,37,64,0) 30%, rgba(11,37,64,.85) 100%);
  z-index: 1;
}
.photo-services .pcard .body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px; color: #fff; z-index: 2;
}
.photo-services .pcard h4 {
  font-family: var(--sans); font-weight: 700; font-size: 24px;
  line-height: 1.15; color: #fff;
}
.photo-services .pcard p { color: rgba(255,255,255,.85); font-size: 14px; margin-top: 8px; }
.photo-services .pcard .arr {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--amber); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 16px; transition: transform .3s ease;
}
.photo-services .pcard:hover .arr { transform: translateX(6px); }
.photo-services .cta-row { text-align: center; margin-top: 44px; }
@media (max-width: 880px) { .photo-services .cards { grid-template-columns: 1fr; } }

/* ============================================================
   NAVY CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #0B2540 0%, #143A5C 100%);
  color: #fff;
  border-radius: 18px;
  margin: 0 28px 80px;
  padding: 44px 60px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
}
.cta-band h3 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(20px,2.2vw,28px); line-height: 1.25;
  color: #fff; max-width: 640px;
}
@media (max-width: 880px) {
  .cta-band { flex-direction: column; align-items: flex-start; padding: 32px; margin: 0 12px 64px; }
}

/* ============================================================
   BOTTOM PAIR PANELS
   ============================================================ */
.bottom-pair { padding: 40px 0 100px; }
.bottom-pair .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.bottom-pair .panel {
  background: var(--paper-2); border-radius: 18px;
  padding: 48px; text-align: center;
}
.bottom-pair .panel h3 {
  font-family: var(--sans); font-weight: 700;
  font-size: 26px; line-height: 1.2; color: var(--ink);
}
.bottom-pair .panel p {
  margin-top: 14px; color: var(--ink-3); font-size: 14.5px; line-height: 1.6;
  max-width: 380px; margin-left: auto; margin-right: auto;
}
.bottom-pair .panel .cta-row { margin-top: 24px; }
@media (max-width: 780px) {
  .bottom-pair .grid  { grid-template-columns: 1fr; }
  .bottom-pair .panel { padding: 32px; }
}

/* ============================================================
   FOOTER V2 (navy)
   ============================================================ */
.footer-v2 {
  background: linear-gradient(135deg, #0B2540 0%, #143A5C 100%);
  color: rgba(255,255,255,.85);
  padding: 72px 0 36px;
}
.footer-v2 .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-v2 .brand img { height: 44px; filter: brightness(0) invert(1); }
.footer-v2 .brand-block p {
  margin-top: 20px; font-size: 14px;
  color: rgba(255,255,255,.65); line-height: 1.6; max-width: 340px;
}
.footer-v2 .social { display: flex; gap: 14px; margin-top: 24px; }
.footer-v2 .social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: background .25s, border-color .25s;
}
.footer-v2 .social a:hover { background: var(--amber); border-color: var(--amber); }
.footer-v2 h5 {
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  color: #fff; margin-bottom: 20px;
}
.footer-v2 ul { list-style: none; }
.footer-v2 ul li { margin-bottom: 12px; }
.footer-v2 ul a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-v2 ul a:hover { color: #fff; }
.footer-v2 .contact-row {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,.78);
}
.footer-v2 .contact-row svg { flex-shrink: 0; margin-top: 2px; color: var(--amber); }
.footer-v2 .contact-row a { color: rgba(255,255,255,.78); }
.footer-v2 .contact-row a:hover { color: #fff; }

/* Newsletter form in footer */
.footer-v2 .news h5 { max-width: 280px; margin-bottom: 8px; }
.footer-v2 .news .blurb {
  color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.55;
  margin-bottom: 16px; max-width: 280px;
}
.footer-v2 .news form {
  display: flex; align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; padding: 4px 4px 4px 16px;
  height: 44px; max-width: 320px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.footer-v2 .news form:hover   { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.09); }
.footer-v2 .news form:focus-within {
  border-color: var(--amber);
  background: rgba(46,181,194,.08);
  box-shadow: 0 0 0 4px rgba(46,181,194,.18);
}
.footer-v2 .news input {
  flex: 1; min-width: 0; width: 100%;
  background: transparent; border: 0; outline: none;
  color: #fff; font-family: var(--sans); font-size: 13.5px;
}
.footer-v2 .news input::placeholder { color: rgba(255,255,255,.42); }
.footer-v2 .news button {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px;
  height: 100%; background: var(--amber); color: #fff;
  border-radius: 999px; padding: 0 16px;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600;
  transition: background .25s, transform .25s;
}
.footer-v2 .news button:hover { background: var(--amber-2); }
.footer-v2 .news button svg { width: 11px; height: 11px; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.footer-v2 .news button:hover svg { transform: translateX(3px); }
.footer-v2 .news .ok {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px; font-size: 12.5px; color: rgba(255,255,255,.7);
}
.footer-v2 .news .ok svg { color: var(--amber); flex-shrink: 0; }
.footer-v2 .news .ok[hidden] { display: none; }
@media (max-width: 520px) { .footer-v2 .news form { max-width: 100%; } }

.footer-v2 .copy {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,.5);
}
@media (max-width: 980px) { .footer-v2 .grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 620px) { .footer-v2 .grid { grid-template-columns: 1fr; } }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px 14px 14px;
  background: #1F8A4C; color: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 40px -12px rgba(31,138,76,.5);
  font-size: 14px; font-weight: 500;
  transition: transform .25s;
}
.wa:hover { transform: translateY(-2px); }
.wa .icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: grid; place-items: center;
}
.wa .icon svg { width: 16px; height: 16px; }
.wa-label { display: flex; flex-direction: column; line-height: 1.1; }
.wa-label small {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .16em; opacity: .8; text-transform: uppercase;
}
@media (max-width: 600px) { .wa-label { display: none; } .wa { padding: 12px; } }
