/* =========================================================
   MOSCAMED THEME
   ========================================================= */

/* =========================
   1. TOKENS
   ========================= */
:root {
  --ink: #262425;
  --green: #329c37;
  --gray: #717379;
  --purple: #2d275e;
  --white: #ffffff;
  --bg: #f7f7f8;
  --border: rgba(38, 36, 37, 0.08);
  --shadow: 0 18px 60px rgba(38, 36, 37, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1240px;
  --transition: 0.28s ease;
}

/* =========================
   2. RESET E BASE
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* =========================
   3. SEÇÕES E TIPOGRAFIA
   ========================= */
.section {
  padding: 110px 0;
  position: relative;
}

.section.soft {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
}

.section.ink {
  background: var(--ink);
  color: var(--white);
}

.section-header {
  max-width: 820px;
  margin-bottom: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.85;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 16px;
}

.section-text {
  color: var(--gray);
  font-size: 1.02rem;
  max-width: 760px;
}

.section.ink .section-text,
.section.ink .muted {
  color: rgba(255, 255, 255, 0.72);
}

/* =========================
   4. BOTÕES
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: #27812d;
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--purple);
  color: var(--white);
}

.btn-dark:hover {
  background: #231f49;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(38, 36, 37, 0.14);
}

.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* =========================
   5. HEADER E NAVEGAÇÃO
   ========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.header-wrap {
  height: 78px;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 46px;
  max-width: none;
  max-height: 46px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.nav-list > li {
  position: relative;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

/* redes do header */
.header-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

/* redes do footer */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-social a,
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.header-social a {
  color: var(--ink);
  border: 1px solid rgba(38, 36, 37, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.header-social a:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.footer-social a {
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.footer-social a:hover {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(38, 36, 37, 0.12);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: var(--transition);
}

/* =========================
   6. SUBMENU / DROPDOWN
   ========================= */
.has-submenu {
  position: relative;
}

.submenu-head {
  display: flex;
  align-items: center;
  gap: 6px;
}

.has-submenu .top-link {
  padding-right: 0;
}

.submenu-toggle {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.submenu-toggle:hover {
  color: var(--green);
}

.submenu-arrow {
  font-size: 0.72rem;
  line-height: 1;
  transition: var(--transition);
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 230px;
  padding: 12px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 20;
}

.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.submenu a:hover,
.submenu a.active {
  background: rgba(45, 39, 94, 0.06);
  color: var(--purple);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-submenu:hover .submenu-arrow,
.has-submenu:focus-within .submenu-arrow,
.has-submenu.open .submenu-arrow {
  transform: rotate(180deg);
}

.has-submenu .top-link.active,
.has-submenu .submenu-toggle.active,
.has-submenu.has-active .top-link,
.has-submenu.has-active .submenu-toggle {
  color: var(--green);
}

.has-submenu.has-active .submenu-arrow {
  transform: rotate(180deg);
}

/* =========================
   7. HERO
   ========================= */
.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 160px 0 100px;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.09) 0 2px, transparent 3px);
  background-size: 34px 34px, 42px 42px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.00;
  letter-spacing: 0.00em;
  font-weight: 900;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-title span {
  color: #b6ff9e;
}

.hero-text {
  max-width: 660px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-side {
  display: grid;
  gap: 18px;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 390px;
}

/* =========================
   8. CARDS DE VIDRO
   ========================= */
.glass-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.glass-card strong {
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.glass-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
}

/* =========================
   9. GRIDS
   ========================= */
.grid-2,
.grid-3,
.grid-4,
.gallery-grid,
.footer-grid,
.doc-grid,
.profile-grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4,
.doc-grid,
.profile-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* =========================
   10. CARDS GENÉRICOS
   ========================= */
.story-card,
.panel,
.doc-card,
.profile-card,
.info-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.story-card p + p,
.panel p + p,
.doc-card p + p,
.profile-card p + p,
.info-card p + p {
  margin-top: 14px;
}

.story-card h3,
.doc-card h3,
.profile-card h3,
.info-card h3 {
  font-size: 1.4rem;
  line-height: 1.14;
  margin-bottom: 14px;
  font-weight: 800;
}

.story-card p,
.doc-card p,
.profile-card p,
.info-card p {
  color: var(--gray);
}

/* =========================
   11. PAINEL ESCURO
   ========================= */
.panel-dark {
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--purple), #433b8d);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(45, 39, 94, 0.2);
  position: relative;
  overflow: hidden;
}

.panel-dark::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.panel-dark h3,
.panel-dark p,
.panel-dark li {
  position: relative;
  z-index: 1;
}

.panel-dark h3 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.panel-dark p,
.panel-dark li {
  color: rgba(255, 255, 255, 0.82);
}

/* =========================
   12. LISTAS E STATS
   ========================= */
.check-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list li::before {
  content: "•";
  color: #b6ff9e;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: -2px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #f8f8fa;
  border: 1px solid rgba(45, 39, 94, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 4px;
}

.stat span {
  color: var(--gray);
  font-size: 0.92rem;
  font-weight: 600;
}

/* =========================
   13. TIMELINE
   ========================= */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.timeline-item {
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--purple));
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(50, 156, 55, 0.1);
  color: var(--green);
  font-weight: 900;
  font-size: 0.86rem;
  margin-bottom: 16px;
}

.timeline-item h3 {
  font-size: 1.08rem;
  line-height: 1.15;
  margin-bottom: 12px;
  font-weight: 800;
}

.timeline-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* =========================
   14. IMAGENS / GALERIA
   ========================= */
.image-panel {
  min-height: 100%;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(38, 36, 37, 0.14) 0%, rgba(38, 36, 37, 0.58) 100%),
    var(--image, linear-gradient(135deg, var(--purple), #40398a));
  background-size: cover;
  background-position: center;
  padding: 34px;
  display: flex;
  align-items: end;
  color: var(--white);
  box-shadow: var(--shadow);
}

.image-panel h3 {
  font-size: 1.6rem;
  line-height: 1.08;
  margin-bottom: 12px;
}

.image-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.gallery-item {
  border-radius: var(--radius-xl);
  min-height: 280px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(38, 36, 37, 0.08) 0%, rgba(38, 36, 37, 0.26) 100%),
    var(--image, linear-gradient(135deg, #ddd, #bbb));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
}

.gallery-caption {
  width: 100%;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(38, 36, 37, 0) 0%, rgba(38, 36, 37, 0.64) 100%);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}

/* =========================
   15. TAGS E PILLS
   ========================= */
.kicker,
.role {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(50, 156, 55, 0.1);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}

.role {
  font-size: 0.84rem;
}

.pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(45, 39, 94, 0.08);
  color: var(--purple);
  font-weight: 700;
  font-size: 0.82rem;
}

/* =========================
   16. CAIXAS DE APOIO
   ========================= */
.note-box {
  padding: 24px;
  border-radius: 20px;
  border: 1px dashed rgba(50, 156, 55, 0.38);
  background: rgba(50, 156, 55, 0.05);
  color: var(--gray);
  margin-top: 18px;
}

/* =========================
   17. ORGANOGRAMA
   ========================= */
.organogram {
  display: grid;
  gap: 26px;
}

.org-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.org-node {
  position: relative;
  min-width: 220px;
  max-width: 280px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.org-node.primary {
  background: linear-gradient(135deg, var(--purple), #433b8d);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(45, 39, 94, 0.18);
}

.org-node.secondary {
  background: linear-gradient(135deg, #ffffff, #f4fbf5);
}

.org-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(50, 156, 55, 0.1);
  color: var(--green);
  margin-bottom: 12px;
}

.org-node.primary .org-label {
  background: rgba(255, 255, 255, 0.12);
  color: #b6ff9e;
}

.org-node h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
  line-height: 1.15;
}

.org-node p {
  font-size: 0.92rem;
  color: var(--gray);
}

.org-node.primary p {
  color: rgba(255, 255, 255, 0.78);
}

.org-connect {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26px;
}

.org-connect::before {
  content: "";
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(50, 156, 55, 0.6), rgba(45, 39, 94, 0.4));
}

/* =========================
   18. TABELAS
   ========================= */
.table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.table th,
.table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(38, 36, 37, 0.08);
}

.table th {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: #fbfbfc;
}

.table td {
  color: var(--gray);
}

/* =========================
   19. FOOTER
   ========================= */
.footer {
  background: #1d1b1c;
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 34px;
}

.footer-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.95fr 0.8fr;
  margin-bottom: 30px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: var(--transition);
}

.footer-links a:hover {
  color: #b6ff9e;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.56);
}

/* =========================
   20. RESPONSIVO
   ========================= */
@media (max-width: 1180px) {
  .nav {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(38, 36, 37, 0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list,
  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-list > li {
    width: 100%;
  }

  .submenu-head {
    width: 100%;
    justify-content: space-between;
  }

  .submenu {
    position: static;
    min-width: 100%;
    padding: 10px 0 0 14px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    display: none;
  }

  .has-submenu.open .submenu {
    display: grid;
  }

  .submenu a {
    padding: 6px 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-wrap,
  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .footer-grid,
  .doc-grid,
  .profile-grid,
  .timeline-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    justify-self: start;
    max-width: 100%;
  }

  .org-row {
    flex-direction: column;
    align-items: center;
  }

  .org-node {
    width: min(100%, 420px);
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 82px 0;
  }

  .hero {
    padding: 138px 0 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2.4rem, 13vw, 4.3rem);
  }

  .brand img {
    width: 76px;
    height: 76px;
    object-fit: contain;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .story-card,
  .panel,
  .panel-dark,
  .doc-card,
  .profile-card,
  .info-card {
    padding: 26px;
  }
}

  .whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.28);
    z-index: 1200;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  }

  .whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.34);
    background: #1ebe5b;
  }

  .whatsapp-float:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, 0.28);
    animation: whatsappPulse 2s ease-out infinite;
  }

  @keyframes whatsappPulse {
    0% {
      transform: scale(0.92);
      opacity: 0.8;
    }
    70% {
      transform: scale(1.18);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }

  @media (max-width: 700px) {
    .whatsapp-float {
      right: 16px;
      bottom: 16px;
      width: 58px;
      height: 58px;
    }

    .whatsapp-float svg {
      width: 27px;
      height: 27px; 
    }
  }

  .header-social,
  .footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .header-social a,
  .footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
  }

  .header-social a {
    color: var(--ink);
    border: 1px solid rgba(38, 36, 37, 0.12);
    background: rgba(255, 255, 255, 0.7);
  }

  .header-social a:hover {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-2px);
  }

  .footer-social a {
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
  }

  .footer-social a:hover {
    color: #ffffff;
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-2px);
  }

  .header-social i,
  .footer-social i {
    font-size: 1rem;
  }

  @media (max-width: 1180px) {
    .header-social {
      width: 100%;
    }
  }