/* =================================================================
   MAKAIROS COMUNICAÇÕES — style.css
   Paleta: Azul Marinho (#071A3D) · Branco (#FFFFFF) · Dourado (#D4AF37)
   Estrutura: Variáveis > Reset > Tipografia > Utilitários > Componentes
              > Seções > Animações > Responsividade
================================================================= */

/* -----------------------------------------------------------------
   1. VARIÁVEIS GLOBAIS
----------------------------------------------------------------- */
:root {
  /* Cores principais */
  --navy: #071A3D;
  --navy-700: #0A2149;
  --navy-600: #0D2657;
  --navy-500: #123568;
  --gold: #D4AF37;
  --gold-light: #F1D375;
  --gold-dark: #A8842A;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --ink: #0B1220;
  --muted: #5B6472;
  --border-light: #E6E8EC;

  /* Tipografia */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaçamento e forma */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container-width: 1180px;
  --section-padding: 120px;

  /* Movimento */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: 0.2s ease;
  --t-med: 0.5s var(--ease);
}

/* -----------------------------------------------------------------
   2. RESET
----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Compensa a navbar fixa ao navegar por âncoras */
section[id] { scroll-margin-top: 90px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
svg { display: block; }

/* Respeita usuários que preferem menos animação */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* -----------------------------------------------------------------
   3. TIPOGRAFIA
----------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

em { font-style: italic; color: var(--gold-dark); }

p { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.eyebrow--gold { color: var(--gold); }

/* -----------------------------------------------------------------
   4. UTILITÁRIOS DE LAYOUT
----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-head--light .section-title,
.section-title--light { color: var(--white); }
.section-desc--light { color: rgba(255,255,255,0.7); }

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.05rem;
  max-width: 52ch;
}

/* -----------------------------------------------------------------
   5. BOTÕES (com efeito ripple via JS)
----------------------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 8px 24px -8px rgba(212, 175, 55, 0.55);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(212, 175, 55, 0.7);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(2.6); opacity: 0; }
}

/* -----------------------------------------------------------------
   6. NAVBAR
----------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 22px;
  background: transparent;
  transition: background var(--t-med), padding var(--t-med), box-shadow var(--t-med), backdrop-filter var(--t-med);
}
.navbar--scrolled {
  background: rgba(7, 26, 61, 0.92);
  backdrop-filter: blur(14px);
  padding-block: 12px;
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.4);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar__brand-logo {
  height: 40px;
  width: auto;
  background: rgba(255, 255, 255, 0.94);
  padding: 6px 14px;
  border-radius: 10px;
  transition: transform var(--t-fast);
}
.navbar__brand:hover .navbar__brand-logo { transform: scale(1.03); }

.navbar__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.navbar__nav ul {
  display: flex;
  gap: 34px;
}
.navbar__nav a {
  position: relative;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  padding-block: 6px;
  transition: color var(--t-fast);
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--t-fast);
}
.navbar__nav a:hover { color: var(--white); }
.navbar__nav a:hover::after { width: 100%; }

.navbar__cta { flex-shrink: 0; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.navbar__toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -----------------------------------------------------------------
   7. HERO
----------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  background: radial-gradient(ellipse at 20% 0%, var(--navy-500) 0%, var(--navy) 55%, #051227 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.hero__glow--1 {
  width: 480px; height: 480px;
  background: var(--gold);
  top: -160px; right: -120px;
  opacity: 0.18;
}
.hero__glow--2 {
  width: 380px; height: 380px;
  background: #3E5F9E;
  bottom: -140px; left: -80px;
  opacity: 0.35;
}
.hero__blade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .eyebrow { color: var(--gold-light); justify-content: center; }
.hero .eyebrow::before { background: var(--gold-light); }

.hero__title {
  color: var(--white);
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  max-width: 16ch;
  margin-bottom: 26px;
  font-weight: 500;
}
.hero__title em { color: var(--gold-light); font-style: italic; }

.hero__subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  max-width: 56ch;
  margin-bottom: 42px;
}

.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 72px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 28px 42px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
}
.hero__stat { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 130px; }
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 600;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}
.hero__stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero__scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll-cue span {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scroll-cue 1.8s ease infinite;
}
@keyframes scroll-cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
  100% { opacity: 0; }
}

/* -----------------------------------------------------------------
   8. CARDS (base compartilhada)
----------------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 34px 28px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -20px rgba(7, 26, 61, 0.22);
  border-color: transparent;
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.card p { font-size: 0.94rem; }

/* -----------------------------------------------------------------
   9. SERVIÇOS
----------------------------------------------------------------- */
.services { padding-block: var(--section-padding); background: var(--off-white); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card--service .card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-500));
  color: var(--gold-light);
  margin-bottom: 20px;
  transition: transform var(--t-med);
}
.card--service .card__icon svg { width: 24px; height: 24px; }
.card--service:hover .card__icon { transform: rotate(-6deg) scale(1.06); }

/* -----------------------------------------------------------------
   10. DIFERENCIAIS (why)
----------------------------------------------------------------- */
.why {
  position: relative;
  padding-block: var(--section-padding);
  background: linear-gradient(180deg, var(--navy) 0%, #061530 100%);
  overflow: hidden;
}
.hero__blade--why {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 49.6%, var(--gold) 49.85%, var(--gold) 50.15%, transparent 50.4%);
  opacity: 0.12;
  pointer-events: none;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}

.card--why {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
}
.card--why:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.45);
}
.card--why h3 { color: var(--white); }
.card--why p { color: rgba(255,255,255,0.65); }
.card__check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

/* -----------------------------------------------------------------
   10.1 FUNDADORES
----------------------------------------------------------------- */
.founders { padding-block: var(--section-padding); background: var(--off-white); }

.founders__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 820px;
  margin-inline: auto;
}

.founder-card {
  text-align: center;
  background: var(--white);
  padding: 44px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -20px rgba(7, 26, 61, 0.18);
}

.founder-card__photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 22px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
}
.founder-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  border: 3px solid var(--white);
}

.founder-card__name {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.founder-card__role {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.founder-card__bio {
  font-size: 0.94rem;
  max-width: 30ch;
  margin-inline: auto;
}

/* -----------------------------------------------------------------
   11. RESULTADOS
----------------------------------------------------------------- */
.results { padding-block: var(--section-padding); background: var(--white); }

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.result-stat {
  text-align: center;
  padding: 44px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.result-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -22px rgba(7,26,61,0.18);
}
.result-stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--navy);
  font-weight: 600;
}
.result-stat__number--text { font-size: clamp(1.5rem, 2.6vw, 1.9rem); }
.result-stat__label {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.result-stat__desc { font-size: 0.92rem; max-width: 30ch; }

/* -----------------------------------------------------------------
   12. CASOS DE SUCESSO
----------------------------------------------------------------- */
.cases { padding-block: var(--section-padding); background: var(--off-white); }

.cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.case-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 44px 38px 34px;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(7,26,61,0.2);
}
.case-card__quote-mark {
  position: absolute;
  top: 18px; left: 30px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
}
.case-card__text {
  position: relative;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 26px;
}
.case-card__text strong { color: var(--gold-dark); }
.case-card__footer {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}
.case-card__name { font-weight: 700; color: var(--navy); }
.case-card__role { font-size: 0.85rem; color: var(--muted); }

/* -----------------------------------------------------------------
   13. CONTATO / CTA
----------------------------------------------------------------- */
.contact {
  padding-block: var(--section-padding);
  background: radial-gradient(ellipse at 50% 0%, var(--navy-500) 0%, var(--navy) 60%, #051227 100%);
  text-align: center;
}
.contact__inner { display: flex; flex-direction: column; align-items: center; }
.contact .eyebrow { justify-content: center; }
.contact__title {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  max-width: 18ch;
  margin-bottom: 18px;
}
.contact__desc {
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.contact__actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.contact__hours {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

/* -----------------------------------------------------------------
   14. FOOTER
----------------------------------------------------------------- */
.footer { background: #051227; padding-top: 72px; }

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  margin-top: 18px;
  max-width: 34ch;
}
.footer__logo {
  display: inline-block;
  height: 40px;
  width: auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 18px;
  border-radius: 12px;
  margin-bottom: 4px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__nav ul, .footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a, .footer__contact a, .footer__contact li {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: color var(--t-fast);
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--gold-light); }

.footer__bottom { padding-block: 24px; }
.footer__bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  text-align: center;
}

/* -----------------------------------------------------------------
   15. SCROLL REVEAL (fade in + slide up)
----------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Atraso escalonado para elementos irmãos dentro da mesma seção */
.services__grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.25s; }
.services__grid .reveal:nth-child(7) { transition-delay: 0.3s; }
.services__grid .reveal:nth-child(8) { transition-delay: 0.35s; }
.services__grid .reveal:nth-child(9) { transition-delay: 0.4s; }
.why__grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.why__grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.why__grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.why__grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.why__grid .reveal:nth-child(6) { transition-delay: 0.25s; }
.founders__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.cases__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.results__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.results__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* -----------------------------------------------------------------
   16. RESPONSIVIDADE
----------------------------------------------------------------- */

/* Notebook / telas médias */
@media (max-width: 1080px) {
  :root { --section-padding: 96px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Tablet */
@media (max-width: 860px) {
  .navbar__nav { display: none; }
  .navbar__toggle { display: flex; }

  .navbar__nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(7, 26, 61, 0.98);
    backdrop-filter: blur(14px);
    padding: 24px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .navbar__nav.is-open ul { flex-direction: column; gap: 6px; }
  .navbar__nav.is-open a { display: block; padding: 12px 8px; }

  .navbar__cta { display: none; }

  .results__grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 20px; padding: 28px; }
  .hero__stat-divider { width: 40px; height: 1px; }
}

/* Celular */
@media (max-width: 560px) {
  :root { --section-padding: 72px; }
  .container { padding-inline: 20px; }

  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .founders__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .hero { padding-top: 120px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }

  .contact__actions { flex-direction: column; width: 100%; }
  .contact__actions .btn { width: 100%; }

  .case-card { padding: 36px 26px 28px; }
}