/* ============================================================
   AATP – Associação dos Advogados Trabalhistas de Pernambuco
   Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #1C2B5E;
  --navy-dark:   #131E43;
  --navy-light:  #2D3F7A;
  --red:         #C1202B;
  --red-dark:    #9E1A23;
  --red-light:   #D93545;
  --white:       #FFFFFF;
  --light:       #F5F7FA;
  --light2:      #EEF0F5;
  --gray:        #6C757D;
  --gray-light:  #ADB5BD;
  --dark:        #212529;
  --border:      #DEE2E6;
  --shadow:      0 2px 20px rgba(28,43,94,.10);
  --shadow-hover:0 8px 30px rgba(28,43,94,.18);
  --radius:      6px;
  --transition:  .3s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  line-height: 1.3;
  color: var(--navy);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { margin-bottom: 1rem; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--light); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { position: relative; display: inline-block; padding-bottom: .75rem; }
.section-header h2::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  border-radius: 2px;
}
.section-header p { color: var(--gray); max-width: 600px; margin: 1rem auto 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; font-family: 'Open Sans', sans-serif;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red); color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(193,32,43,.35); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-navy {
  background: var(--navy); color: var(--white);
  border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-1px); }

.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .8rem; }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: .4rem 0;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.topbar-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-info span { display: flex; align-items: center; gap: .4rem; }
.topbar-social { display: flex; gap: .75rem; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--white);
  transition: background var(--transition);
}
.topbar-social a:hover { background: var(--red); }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 0; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo img { height: 56px; width: auto; }
.logo-text { line-height: 1.2; }
.logo-text .sigla {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--navy); letter-spacing: -.5px;
}
.logo-text .nome {
  font-size: .62rem; font-weight: 600; color: var(--gray);
  text-transform: uppercase; letter-spacing: .5px;
  max-width: 180px;
}

/* Nav */
.main-nav ul { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  font-size: .88rem; font-weight: 600; color: var(--dark);
  padding: .5rem .8rem; border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--navy); background: var(--light); }

.nav-associe {
  background: var(--red) !important; color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: .5rem 1rem !important;
}
.nav-associe:hover { background: var(--red-dark) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 30px; padding: .25rem; cursor: pointer;
}
.hamburger span { height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  min-height: 520px;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: var(--red);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 600px; padding: 4rem 0; color: var(--white); }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white); font-size: .8rem; font-weight: 600;
  padding: .35rem .9rem; border-radius: 20px;
  margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .8px;
}
.hero-content h1 { color: var(--white); margin-bottom: 1rem; font-size: clamp(2rem, 4.5vw, 3rem); }
.hero-content h1 span { color: #FFCF40; }
.hero-content p { font-size: 1.05rem; opacity: .9; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero pages (inner pages) */
.hero-page {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--red) 100%);
  padding: 4rem 0;
  color: var(--white);
  text-align: center;
}
.hero-page h1 { color: var(--white); margin-bottom: .5rem; }
.hero-page p { opacity: .85; max-width: 500px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; font-size: .85rem; opacity: .75; margin-top: .75rem;
}
.breadcrumb a { color: var(--white); }
.breadcrumb span { opacity: .5; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.cards-grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* News card */
.news-card .card-img {
  height: 190px; overflow: hidden;
  background: linear-gradient(135deg, var(--light2), var(--border));
  display: flex; align-items: center; justify-content: center;
}
.news-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img-placeholder {
  width: 60px; height: 60px; opacity: .3;
  fill: var(--navy);
}
.news-card .card-body { padding: 1.5rem; }
.card-category {
  display: inline-block;
  background: var(--light2); color: var(--navy);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
  padding: .2rem .7rem; border-radius: 3px;
  margin-bottom: .75rem;
}
.card-category.red { background: rgba(193,32,43,.08); color: var(--red); }
.news-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.news-card h3 a:hover { color: var(--red); }
.card-meta { font-size: .8rem; color: var(--gray-light); display: flex; gap: 1rem; flex-wrap: wrap; }
.card-meta span { display: flex; align-items: center; gap: .3rem; }

/* ── Highlights / features ──────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem; color: var(--white);
}
.feature-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.feature-card p { font-size: .88rem; color: var(--gray); margin: 0; }

/* ── Stats ───────────────────────────────────────────────────── */
.stats-section { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-item { color: var(--white); }
.stat-number {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900; line-height: 1;
  color: #FFCF40;
  display: block;
}
.stat-label { font-size: .88rem; opacity: .8; margin-top: .5rem; text-transform: uppercase; letter-spacing: .5px; }

/* ── Events ──────────────────────────────────────────────────── */
.event-list { display: flex; flex-direction: column; gap: 1.25rem; }
.event-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 1.25rem; border: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
  transition: all var(--transition);
}
.event-item:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.event-date {
  min-width: 60px; text-align: center;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: .6rem .4rem;
  flex-shrink: 0;
}
.event-date .day { font-family: 'Merriweather', serif; font-size: 1.5rem; font-weight: 900; line-height: 1; }
.event-date .month { font-size: .65rem; text-transform: uppercase; letter-spacing: .5px; opacity: .85; }
.event-date .year  { font-size: .65rem; opacity: .7; }
.event-info h4 { font-size: .95rem; margin-bottom: .25rem; }
.event-info p  { font-size: .82rem; color: var(--gray); margin: 0; }
.event-tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  padding: .15rem .6rem; border-radius: 3px;
  margin-bottom: .4rem;
}
.tag-future  { background: rgba(28,43,94,.08); color: var(--navy); }
.tag-past    { background: var(--light2); color: var(--gray); }
.tag-soon    { background: rgba(193,32,43,.08); color: var(--red); }

/* Em Breve badge */
.badge-soon {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(193,32,43,.08); color: var(--red);
  border: 1px solid rgba(193,32,43,.2);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  padding: .25rem .75rem; border-radius: 20px;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--red-dark), var(--red), #E84060);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '§';
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  font-size: 20rem; opacity: .04; font-family: 'Merriweather', serif;
  line-height: 1;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.cta-section p  { opacity: .9; max-width: 500px; margin: 0 auto 2rem; }
.cta-actions    { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── About snippet ───────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: var(--white);
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-image img {
  max-width: 260px;
  width: 80%;
  object-fit: contain;
}

.about-image::before {
  content: '';
  position: absolute; top: -1rem; left: -1rem;
  width: 60%; height: 60%;
  border-top: 4px solid var(--red);
  border-left: 4px solid var(--red);
  border-radius: 4px 0 0 0;
}
.about-image::after {
  content: '';
  position: absolute; bottom: -1rem; right: -1rem;
  width: 60%; height: 60%;
  border-bottom: 4px solid var(--navy);
  border-right: 4px solid var(--navy);
  border-radius: 0 0 4px 0;
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p  { color: var(--gray); }
.divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  border-radius: 2px; margin-bottom: 1.5rem;
}

/* ── Mission/Vision/Values ──────────────────────────────────── */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.mvv-card {
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--navy);
  transition: transform var(--transition);
}
.mvv-card:nth-child(2) { border-top-color: var(--red); }
.mvv-card:nth-child(3) { border-top-color: #2D8A5A; }
.mvv-card:hover { transform: translateY(-4px); }
.mvv-icon { font-size: 2rem; margin-bottom: 1rem; }
.mvv-card h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.mvv-card p  { font-size: .9rem; color: var(--gray); margin: 0; }

/* ── Diretoria ───────────────────────────────────────────────── */
.board-section-title {
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  border-left: 4px solid var(--red);
  padding-left: 1rem; margin: 3rem 0 1.5rem;
}
.board-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.board-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden; text-align: center;
  transition: transform var(--transition);
}
.board-card:hover { transform: translateY(-4px); }
.board-photo {
  height: 160px; background: var(--light2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: var(--gray-light);
}
.board-info { padding: 1.1rem 1rem; }
.board-info .cargo { font-size: .75rem; text-transform: uppercase; letter-spacing: .6px; color: var(--red); font-weight: 700; margin-bottom: .25rem; }
.board-info .nome { font-size: .92rem; font-weight: 700; color: var(--navy); }
.board-info .oab  { font-size: .78rem; color: var(--gray-light); margin-top: .15rem; }

/* ── Estatuto ────────────────────────────────────────────────── */
.doc-download {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; border-left: 5px solid var(--navy); flex-wrap: wrap;
}
.doc-info { display: flex; align-items: center; gap: 1.25rem; }
.doc-icon { font-size: 2.5rem; }
.doc-info h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.doc-info p  { font-size: .85rem; color: var(--gray); margin: 0; }

/* ── Contato ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius); padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; align-items: flex-start; }
.contact-item-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-item-text .label { font-size: .75rem; opacity: .7; text-transform: uppercase; letter-spacing: .5px; }
.contact-item-text .value { font-size: .92rem; font-weight: 600; }
.social-links { display: flex; gap: .75rem; margin-top: 2rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .9rem;
  transition: background var(--transition);
}
.social-link:hover { background: var(--red); }

/* Form */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif; font-size: .9rem;
  color: var(--dark); background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(28,43,94,.08); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Map placeholder ─────────────────────────────────────────── */
.map-placeholder {
  background: var(--light2); border-radius: var(--radius);
  height: 280px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; color: var(--gray); border: 1px solid var(--border);
  margin-top: 2rem;
}
.map-placeholder .icon { font-size: 2.5rem; opacity: .5; }

/* ── Associe-se page ─────────────────────────────────────────── */
.beneficios-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.beneficio-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.beneficio-item:hover { border-color: var(--navy); }
.beneficio-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
}
.beneficio-item h4 { font-size: .92rem; margin-bottom: .25rem; }
.beneficio-item p  { font-size: .82rem; color: var(--gray); margin: 0; }

.planos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.plano-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform var(--transition);
}
.plano-card:hover { transform: translateY(-4px); }
.plano-header { padding: 1.5rem; background: var(--navy); color: var(--white); text-align: center; }
.plano-header h3 { color: var(--white); margin-bottom: .25rem; }
.plano-price { font-family: 'Merriweather', serif; font-size: 2rem; font-weight: 900; color: #FFCF40; }
.plano-price span { font-size: .85rem; opacity: .8; font-family: 'Open Sans', sans-serif; font-weight: 400; }
.plano-body { padding: 1.5rem; }
.plano-features li { font-size: .88rem; padding: .4rem 0; border-bottom: 1px solid var(--border); color: var(--gray); }
.plano-features li:last-child { border: none; }
.plano-features li::before { content: '✓ '; color: var(--navy); font-weight: 700; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text .sigla { color: var(--white); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: .5rem; }
.footer-social { display: flex; gap: .5rem; margin-top: 1.25rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--white);
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--red); }
.footer-col h4 {
  color: var(--white); font-size: .9rem;
  font-family: 'Merriweather', serif; margin-bottom: 1.25rem;
  padding-bottom: .6rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { font-size: .87rem; opacity: .75; transition: opacity var(--transition); }
.footer-col ul a:hover { opacity: 1; color: #FFCF40; }
.footer-contact-item { display: flex; gap: .75rem; margin-bottom: .9rem; font-size: .87rem; align-items: flex-start; }
.footer-contact-item .icon { opacity: .6; margin-top: .1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; opacity: .55; flex-wrap: wrap; gap: .5rem;
}

/* ── Utilities ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-navy   { color: var(--navy); }
.text-red    { color: var(--red); }
.text-gray   { color: var(--gray); }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; } .gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.w-100 { width: 100%; }

.view-all { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { height: 280px; }
  .about-image::before, .about-image::after { display: none; }
  .mvv-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .hamburger { display: flex; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); box-shadow: var(--shadow);
    padding: 1rem;
  }
  .main-nav.open { display: block; }
  .main-nav ul   { flex-direction: column; gap: .25rem; }
  .main-nav a    { display: block; }
  .hero-content  { padding: 3rem 0; }
  .hero::before  { display: none; }
  .mvv-grid    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row    { grid-template-columns: 1fr; }
  .board-grid  { grid-template-columns: repeat(2, 1fr); }
  .section     { padding: 3.5rem 0; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .board-grid  { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cards-grid  { grid-template-columns: 1fr; }
  .planos-grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: 1fr; text-align: center; }
  .doc-download { flex-direction: column; }
  .cta-actions  { flex-direction: column; align-items: center; }
}
