/* ==========================================================================
   AMPARE SAÚDE INTEGRATIVA — Design System
   Paleta oficial: White Smoke #F6F6F2 · Verde Sea Green #006C43
   Dourado #CB9A28 · Dourado Escuro #BB8327
   Tipografia: Gilda Display (títulos) · Cormorant Garamond (destaques)
   Montserrat (texto e UI)
   ========================================================================== */

:root{
  --bg: #F6F6F2;
  --bg-alt: #EFEEE6;
  --white: #FFFFFF;
  --green: #006C43;
  --green-dark: #004C2F;
  --green-soft: #E4EFE9;
  --gold: #CB9A28;
  --gold-dark: #BB8327;
  --ink: #2B2B26;
  --ink-soft: #5B5B52;
  --line: #E1DFD3;

  --font-display: "Gilda Display", "Times New Roman", serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", -apple-system, Segoe UI, sans-serif;

  --radius: 10px;
  --radius-lg: 22px;
  --shadow: 0 18px 45px -22px rgba(43, 43, 38, .35);
  --shadow-soft: 0 10px 30px -18px rgba(43, 43, 38, .25);
  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; width: 100%; max-width: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 400;
}
h1{ font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2{ font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3{ font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4{ font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-dark);
}
.lede{
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.6;
}
p{ color: var(--ink-soft); }
.section-head{
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head.left{ margin: 0 0 40px; text-align: left; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-primary{
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 26px -12px rgba(203,154,40,.65);
}
.btn-primary:hover{ background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  border-color: rgba(0,108,67,.35);
  color: var(--green-dark);
}
.btn-outline:hover{ background: var(--green); border-color: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-light{
  background: var(--white);
  color: var(--green-dark);
}
.btn-light:hover{ transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-block{ width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,246,242,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{ height: 62px; width: auto; }
.brand-word{ font-family: var(--font-display); font-size: 1.25rem; color: var(--green-dark); }
.brand-word small{ display: block; font-family: var(--font-body); font-size: .58rem; letter-spacing: .22em; color: var(--gold-dark); font-weight: 600; }

.main-nav ul{ display: flex; gap: 34px; align-items: center; }
.main-nav a{
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after{
  content:"";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after{ transform: scaleX(1); }
.main-nav a.active{ color: var(--green-dark); }

.header-actions{ display: flex; align-items: center; gap: 14px; }
.nav-toggle{
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width: 18px; height: 2px; background: var(--green-dark); position: relative; transition: all .2s ease;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media{
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-media video, .hero-media img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;
  animation: kenburns 24s ease-in-out infinite alternate;
}
.hero-media::after{
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,40,25,.55) 0%, rgba(0,40,25,.72) 55%, rgba(0,40,25,.88) 100%);
}
@keyframes kenburns{
  0%{ transform: scale(1) translate(0,0); }
  100%{ transform: scale(1.12) translate(-1%, -1%); }
}
.hero-content{ position: relative; z-index: 2; max-width: 720px; padding: 120px 0 90px; }
.hero-content .eyebrow{ color: var(--gold); }
.hero-content .eyebrow::before{ background: var(--gold); }
.hero-content h1{ color: var(--white); }
.hero-content p{ color: rgba(255,255,255,.86); font-size: 1.08rem; max-width: 560px; }
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
.hero-stats{
  position: relative; z-index: 2;
  display: flex; gap: 46px; flex-wrap: wrap;
  padding-bottom: 56px;
}
.hero-stats div strong{ display:block; font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.hero-stats div span{ font-size: .8rem; color: rgba(255,255,255,.78); letter-spacing: .04em; }

.stat-num{
  position: relative;
  display: inline-block;
  color: var(--gold);
  background-image: linear-gradient(110deg, var(--gold) 0%, var(--gold) 40%, #fff8e6 50%, var(--gold) 60%, var(--gold) 100%);
  background-size: 260% 100%;
  background-position: 220% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@supports not (-webkit-background-clip: text) {
  .stat-num{ -webkit-text-fill-color: initial; background: none; color: var(--gold); }
}
.stat-num.counting{
  animation: stat-sweep 1.7s ease-out;
}
.stat-num.done{
  animation: stat-glow 1.4s ease-out;
}
@keyframes stat-sweep{
  0%{ background-position: 220% 0; }
  100%{ background-position: -30% 0; }
}
@keyframes stat-glow{
  0%{ text-shadow: 0 0 0 rgba(203,154,40,0); }
  35%{ text-shadow: 0 0 22px rgba(203,154,40,.75), 0 0 44px rgba(203,154,40,.35); }
  100%{ text-shadow: 0 0 0 rgba(203,154,40,0); }
}

.video-note{
  position: relative; z-index: 2;
  font-size: .7rem;
  color: rgba(255,255,255,.55);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  background: var(--green);
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,.08), transparent 40%), radial-gradient(circle at 85% 80%, rgba(203,154,40,.25), transparent 45%);
  color: var(--white);
  padding: 150px 0 70px;
  position: relative;
}
.page-hero .eyebrow{ color: var(--gold); }
.page-hero .eyebrow::before{ background: var(--gold); }
.page-hero h1{ color: var(--white); max-width: 780px; }
.page-hero p{ color: rgba(255,255,255,.85); max-width: 620px; font-size: 1.05rem; }
.breadcrumb{ font-size: .78rem; color: rgba(255,255,255,.65); margin-bottom: 18px; }
.breadcrumb a{ color: var(--gold); }

/* ---------- Sections ---------- */
section{ padding: 96px 0; }
.section-alt{ background: var(--white); }
.section-soft{ background: var(--green-soft); }
.section-tight{ padding: 70px 0; }

/* ---------- Cards: specialties ---------- */
.grid{ display: grid; gap: 28px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

.spec-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.spec-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.spec-icon{
  position: relative;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--green);
  animation: spec-icon-breathe 2.8s ease-in-out infinite;
}
.spec-icon::before, .spec-icon::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0;
  animation: spec-icon-ring 2.8s ease-out infinite;
}
.spec-icon::after{ animation-delay: 1.4s; }
.spec-icon svg{ width: 26px; height: 26px; position: relative; z-index: 1; }
@keyframes spec-icon-breathe{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(203,154,40,.28); }
  50%{ box-shadow: 0 0 0 7px rgba(203,154,40,0); }
}
@keyframes spec-icon-ring{
  0%{ transform: scale(.9); opacity: .55; }
  75%{ opacity: 0; }
  100%{ transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  .spec-icon, .spec-icon::before, .spec-icon::after{ animation: none; }
}
.spec-card h3{ margin-bottom: 10px; }
.spec-card p{ font-size: .93rem; margin-bottom: 16px; }
.spec-card a{ font-size: .85rem; font-weight: 700; color: var(--gold-dark); }

/* ---------- Services list ---------- */
.service-block{
  border-top: 1px solid var(--line);
  padding: 48px 0;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
}
.service-block:first-of-type{ border-top: none; padding-top: 0; }
.service-block .tag{
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(203,154,40,.12);
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 12px;
}
.service-block ul{ margin-top: 18px; display: grid; gap: 10px; }
.service-block ul li{
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .95rem; color: var(--ink-soft);
}
.service-block ul li::before{
  content: "";
  width: 6px; height: 6px; margin-top: 8px;
  border-radius: 50%; background: var(--gold); flex: none;
}

/* ---------- Values / essence ---------- */
.essence-grid{ display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.essence-grid div{ padding: 30px 16px; }
.essence-grid strong{ display:block; font-family: var(--font-display); font-size: 1.5rem; color: var(--green-dark); margin-bottom: 8px; }
.essence-grid span{ font-size: .85rem; color: var(--ink-soft); }

/* ---------- Facility gallery ---------- */
.gallery{ display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 150px; gap: 14px; }
.gallery figure{ margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery figure img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img{ transform: scale(1.06); }
.gallery figure figcaption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px; font-size: .74rem; color: var(--white);
  background: linear-gradient(0deg, rgba(0,0,0,.6), transparent);
}
.gallery .g-a{ grid-column: span 3; grid-row: span 2; }
.gallery .g-b{ grid-column: span 3; grid-row: span 1; }
.gallery .g-c{ grid-column: span 2; grid-row: span 1; }

/* ---------- Founder / person card ---------- */
.person-feature{
  display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: center;
}
.person-feature figure{
  margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.person-feature img,
.person-feature video{ width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.credentials{ display: grid; gap: 12px; margin: 26px 0; }
.credentials li{ display:flex; gap: 12px; font-size: .93rem; color: var(--ink-soft); align-items: flex-start; }
.credentials li::before{ content:"✓"; color: var(--gold-dark); font-weight: 700; }

.team-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card{
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
}
.team-card figure{ margin:0; aspect-ratio: 1/1; overflow: hidden; }
.team-card img{ width:100%; height:100%; object-fit: cover; }
.team-card .info{ padding: 20px 22px; }
.team-card .role{ font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.team-card h3{ font-size: 1.1rem; margin: 6px 0 8px; }
.team-card p{ font-size: .87rem; }
.team-card.placeholder{
  display: flex; align-items: center; justify-content: center; text-align: center;
  border-style: dashed; border-color: rgba(0,108,67,.35);
  min-height: 100%; padding: 30px;
}
.team-card.placeholder .ph-icon{
  width: 60px; height: 60px; border-radius: 50%; background: var(--green-soft); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; color: var(--green);
}

/* ---------- Testimonials / quote ---------- */
.quote-band{
  background: var(--green);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.quote-band::before{
  content: "“";
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(203,154,40,.4);
  display: block;
  line-height: 1;
}
.quote-band p{
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
}
.quote-band cite{ display:block; margin-top: 22px; font-style: normal; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  box-shadow: var(--shadow-soft);
}
.cta-band h2{ margin-bottom: 8px; }
.cta-band .actions{ display: flex; gap: 14px; flex: none; }

/* ---------- Contact page ---------- */
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.info-list{ display: grid; gap: 26px; margin-top: 30px; }
.info-list li{ display: flex; gap: 16px; align-items: flex-start; }
.info-list .ic{
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-soft); color: var(--green);
  display:flex; align-items:center; justify-content:center; flex: none;
}
.info-list strong{ display:block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-dark); margin-bottom: 3px; }
.info-list span, .info-list a{ font-size: .95rem; color: var(--ink); }
.map-frame{
  margin-top: 34px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/10;
}
.map-frame iframe{ width: 100%; height: 100%; border: 0; }

.form-card{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 42px; box-shadow: var(--shadow-soft);
}
.field{ margin-bottom: 20px; }
.field label{ display:block; font-size: .8rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.field input, .field select, .field textarea{
  width: 100%; padding: 13px 16px; border-radius: var(--radius); border: 1px solid var(--line);
  font-family: var(--font-body); font-size: .92rem; background: var(--bg); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline: none; border-color: var(--gold); background: var(--white); }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note{ font-size: .78rem; color: var(--ink-soft); margin-top: 14px; }
.form-success{
  display: none; background: var(--green-soft); border: 1px solid rgba(0,108,67,.25);
  color: var(--green-dark); padding: 16px 18px; border-radius: var(--radius); font-size: .88rem; margin-bottom: 20px;
}
.form-success.show{ display: block; }

/* ---------- FAQ ---------- */
.faq-item{ border-top: 1px solid var(--line); padding: 22px 0; }
.faq-item:last-child{ border-bottom: 1px solid var(--line); }
.faq-item summary{
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--green-dark);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content: "+"; font-size: 1.4rem; color: var(--gold-dark); }
.faq-item[open] summary::after{ content: "–"; }
.faq-item p{ margin-top: 14px; max-width: 720px; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float{
  position: fixed; right: 26px; bottom: 26px; z-index: 200;
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px -10px rgba(0,108,67,.6);
  transition: transform .25s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }
.whatsapp-float svg{ width: 38px; height: 38px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--green-dark); color: rgba(255,255,255,.82); padding: 72px 0 28px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img{ height: 58px; margin-bottom: 16px; }
.footer-brand p{ color: rgba(255,255,255,.65); font-size: .88rem; max-width: 280px; }
.site-footer h4{ color: var(--gold); margin-bottom: 18px; }
.site-footer ul{ display: grid; gap: 10px; }
.site-footer a{ font-size: .88rem; color: rgba(255,255,255,.75); }
.site-footer a:hover{ color: var(--gold); }
.social-row{ display: flex; gap: 12px; margin-top: 18px; }
.social-row a{
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center;
}
.social-row a:hover{ background: var(--gold); border-color: var(--gold); }
.footer-bottom{
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15);
  display: flex; justify-content: space-between; font-size: .78rem; color: rgba(255,255,255,.55); flex-wrap: wrap; gap: 10px;
}
.credit a{ color: rgba(255,255,255,.7); font-weight: 600; }

/* ---------- Fill-in placeholders ---------- */
.fillme{
  background: rgba(203,154,40,.18);
  border-bottom: 1px dashed var(--gold-dark);
  padding: 0 2px;
  font-weight: 600;
}

/* ---------- Reveal animation ----------
   Fica visível por padrão (sem JS, JS bloqueado ou crawler que não rola a
   página). Só é ocultada quando confirmamos JS ativo (classe "has-js" no
   <html>, adicionada por um script síncrono no <head>) — assim nunca há
   risco de conteúdo sumir permanentemente. */
html.has-js [data-reveal]{ opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
html.has-js [data-reveal].in{ opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .person-feature{ grid-template-columns: 1fr; }
  .person-feature figure{ max-width: 360px; }
  .contact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .main-nav{ display: none; }
  .nav-toggle{ display: flex; }
  .service-block{ grid-template-columns: 1fr; gap: 16px; }
  .essence-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .gallery .g-a, .gallery .g-b, .gallery .g-c{ grid-column: span 1; grid-row: span 1; height: 220px; }
  .cta-band{ flex-direction: column; text-align: center; }
  .team-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px){
  .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .essence-grid{ grid-template-columns: 1fr 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .field-row{ grid-template-columns: 1fr; }
  .hero-stats{ gap: 26px; }
  section{ padding: 64px 0; }
}

/* ---------- Body scroll lock (mobile menu open) ---------- */
body.menu-open{ overflow: hidden; }
body.menu-open .main-nav{
  display: block;
  position: fixed; inset: 0; top: 78px;
  background: var(--bg);
  padding: 30px 24px;
  z-index: 99;
}
body.menu-open .main-nav ul{ flex-direction: column; align-items: flex-start; gap: 22px; }
body.menu-open .main-nav a{ font-size: 1.1rem; }
