/* ═══════════════════════════════════════════════════════════════════════════
   Banco Abn Amro Clearing S.A. — Folha de Estilos Principal
   Design: Dark + Azul/Verde | Glassmorphism | Gradiente Moderno
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg:          #050d1a;
  --color-bg-2:        #071225;
  --color-surface:     rgba(10, 25, 50, 0.75);
  --color-surface-2:   rgba(15, 35, 65, 0.85);
  --color-border:      rgba(0, 160, 220, 0.18);
  --color-primary:     #00a8e8;
  --color-primary-d:   #0077b6;
  --color-accent:      #00d4a0;
  --color-accent-d:    #00a87a;
  --color-text:        #e2eaf4;
  --color-text-muted:  #7a9bbf;
  --color-white:       #ffffff;
  --color-danger:      #e05252;
  --color-success:     #2dd4a0;
  --gradient-hero:     linear-gradient(135deg, #050d1a 0%, #071e3d 50%, #0a2a4a 100%);
  --gradient-btn:      linear-gradient(135deg, #00a8e8 0%, #00d4a0 100%);
  --gradient-btn-h:    linear-gradient(135deg, #0077b6 0%, #00a87a 100%);
  --gradient-card:     linear-gradient(145deg, rgba(10,30,60,0.9) 0%, rgba(5,20,45,0.95) 100%);
  --shadow-card:       0 8px 32px rgba(0, 168, 232, 0.12);
  --shadow-btn:        0 4px 20px rgba(0, 168, 232, 0.35);
  --radius-sm:         8px;
  --radius-md:         14px;
  --radius-lg:         22px;
  --radius-xl:         32px;
  --font-main:         'Inter', 'Segoe UI', system-ui, sans-serif;
  --transition:        0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:         1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── TIPOGRAFIA ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-white);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--color-text); margin-bottom: 1rem; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
strong { color: var(--color-white); }

.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.text-center { text-align: center; }

/* ─── LAYOUT ────────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ─── GLASSMORPHISM ─────────────────────────────────────────────────────────── */
.glass {
  background: var(--color-surface);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.glass-2 {
  background: var(--color-surface-2);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(0, 212, 160, 0.15);
  border-radius: var(--radius-md);
}

/* ─── BOTÕES ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--gradient-btn-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 168, 232, 0.45);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* ─── HEADER / NAV ──────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 13, 26, 0.92);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(5, 13, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-btn);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-menu a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-white);
  background: rgba(0, 168, 232, 0.12);
}
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(0, 168, 232, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(0, 212, 160, 0.08) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 168, 232, 0.12);
  border: 1px solid rgba(0, 168, 232, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title { margin-bottom: 1.5rem; }
.hero-title .highlight {
  background: var(--gradient-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-float {
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-btn);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.hero-card-info h4 { color: var(--color-white); margin-bottom: 0.15rem; }
.hero-card-info p { color: var(--color-text-muted); font-size: 0.82rem; margin: 0; }
.hero-card-items { display: flex; flex-direction: column; gap: 0.75rem; }
.hero-card-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 168, 232, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 168, 232, 0.1);
}
.hero-card-item-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 212, 160, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hero-card-item-text { font-size: 0.85rem; color: var(--color-text); }

/* ─── SECTION HEADER ────────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(0, 168, 232, 0.1);
  border: 1px solid rgba(0, 168, 232, 0.25);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── CARDS DE SERVIÇOS ─────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-btn);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 232, 0.35);
  box-shadow: var(--shadow-card);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.2), rgba(0, 212, 160, 0.1));
  border: 1px solid rgba(0, 168, 232, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
  box-shadow: inset 0 0 12px rgba(0, 168, 232, 0.1);
  position: relative;
}
.service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 8px 20px rgba(0, 168, 232, 0.3);
  border-color: transparent;
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.service-card p { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }

/* ─── TRUST SECTION ─────────────────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.trust-item {
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
}
.trust-item:hover { transform: translateY(-4px); }
.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 168, 232, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-accent);
  transition: all var(--transition);
  border: 1px solid rgba(0, 212, 160, 0.2);
}
.trust-item:hover .trust-icon {
  background: var(--color-accent);
  color: #fff;
  transform: rotateY(180deg);
}
.trust-item h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.trust-item p { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }

/* ─── ABOUT SECTION ─────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card-main {
  padding: 2rem;
}
.about-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}
.about-info-row:last-child { border-bottom: none; }
.about-info-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 110px;
  flex-shrink: 0;
}
.about-info-value {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}
.about-badge-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 212, 160, 0.1);
  border: 1px solid rgba(0, 212, 160, 0.25);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

/* ─── FORMULÁRIO DE CONTATO ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 168, 232, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-info-text p, .contact-info-text a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(10, 25, 50, 0.8);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.9rem;
  font-family: var(--font-main);
  transition: all var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--color-primary);
  background: rgba(10, 25, 60, 0.9);
  box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.12);
}
.form-control::placeholder { color: var(--color-text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--color-primary); }
.form-feedback {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: none;
}
.form-feedback.success {
  background: rgba(45, 212, 160, 0.1);
  border: 1px solid rgba(45, 212, 160, 0.3);
  color: var(--color-success);
  display: block;
}
.form-feedback.error {
  background: rgba(224, 82, 82, 0.1);
  border: 1px solid rgba(224, 82, 82, 0.3);
  color: var(--color-danger);
  display: block;
}

/* ─── LOGIN ─────────────────────────────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  padding: 2rem 1rem;
}
.login-card {
  width: 100%;
  max-width: 440px;
  padding: 2.5rem;
}
.login-logo {
  text-align: center;
  margin-bottom: 2rem;
}
.login-logo-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-btn);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 1rem;
}
.login-logo h2 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.login-logo p { font-size: 0.82rem; color: var(--color-text-muted); margin: 0; }
.login-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.login-security-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

/* ─── PAGE HERO (páginas internas) ──────────────────────────────────────────── */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0, 168, 232, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--color-text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--color-primary); }
.breadcrumb-sep { color: var(--color-border); }

/* ─── LEGAL PAGES ───────────────────────────────────────────────────────────── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.legal-content h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-primary);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.75rem 0 0.75rem;
}
.legal-content p { font-size: 0.92rem; color: var(--color-text-muted); }
.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}
.legal-update {
  display: inline-block;
  background: rgba(0, 168, 232, 0.1);
  border: 1px solid rgba(0, 168, 232, 0.2);
  color: var(--color-primary);
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: #030a15;
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(0, 168, 232, 0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: rgba(0, 168, 232, 0.2);
  color: var(--color-primary);
  border-color: rgba(0, 168, 232, 0.3);
}
.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.87rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.footer-contact-item span:first-child { flex-shrink: 0; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-left {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-bottom-right a {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.footer-bottom-right a:hover { color: var(--color-primary); }
.footer-disclaimer {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(122, 155, 191, 0.7);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── WHATSAPP FLOAT ────────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
  color: #fff;
}
.whatsapp-float svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.65); }
}

/* ─── ALERTAS E BADGES ──────────────────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.alert-info {
  background: rgba(0, 168, 232, 0.08);
  border: 1px solid rgba(0, 168, 232, 0.2);
  color: var(--color-primary);
}
.alert-warning {
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.2);
  color: #ffc107;
}
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(45, 212, 160, 0.08);
  border: 1px solid rgba(45, 212, 160, 0.2);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

/* ─── ANIMAÇÕES ─────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fadeInUp { animation: fadeInUp 0.7s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ─── RESPONSIVO ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(5, 13, 26, 0.98);
    backdrop-filter: blur(24px);
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    gap: 0.25rem;
  }
  .nav-menu.open a { display: block; padding: 0.75rem 1rem; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 1rem; border-radius: 50%; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ─── UTILITÁRIOS ───────────────────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.w-100 { width: 100%; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
