
:root{
  --ivory:#f8f2e8;
  --paper:#fffdf9;
  --rose:#ead2d4;
  --rose-deep:#d5aeb1;
  --gold:#b78b3d;
  --gold-dark:#8b6529;
  --ink:#332a22;
  --muted:#74695f;
  --line:rgba(183,139,61,.22);
  --shadow:0 18px 60px rgba(78,55,25,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:92px}
body{
  margin:0;
  font-family:"Montserrat",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 12% 0%,rgba(234,210,212,.28),transparent 30%),
    radial-gradient(circle at 92% 20%,rgba(183,139,61,.08),transparent 28%),
    linear-gradient(180deg,#fbf7f0 0%,#f4ebdf 100%);
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.13;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
h1,h2,h3{font-family:"Cormorant Garamond",serif;margin:0}
h1{font-size:clamp(3.1rem,5.7vw,5.8rem);line-height:.93}
h2{font-size:clamp(2.4rem,4.2vw,4.3rem);line-height:1}
h3{font-size:1.85rem}
p{line-height:1.8}

.site-header{
  position:sticky;top:0;z-index:50;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:14px clamp(18px,5vw,70px);
  background:rgba(250,246,239,.9);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(183,139,61,.12);
}
.brand{display:flex;align-items:center;gap:12px}
.brand img{width:52px;height:52px;object-fit:contain}
.brand div{display:flex;flex-direction:column}
.brand strong{font-family:"Cormorant Garamond",serif;font-size:1.45rem}
.brand span{font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-dark)}
.nav{display:flex;gap:18px;font-size:.82rem}
.nav a{position:relative}
.nav a:after{content:"";position:absolute;left:0;right:100%;bottom:-6px;height:1px;background:var(--gold);transition:.25s}
.nav a:hover:after{right:0}
.menu-btn{display:none;border:0;background:transparent;font-size:1.4rem}

.eyebrow{
  display:inline-block;
  font-size:.72rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold-dark);
  font-weight:700;
}
.eyebrow.light{color:#e6c987}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:0 22px;border-radius:999px;
  background:linear-gradient(135deg,var(--gold-dark),var(--gold));
  color:white;font-size:.9rem;font-weight:700;
  box-shadow:0 10px 24px rgba(139,101,41,.18);
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-small{min-height:40px;font-size:.78rem;padding:0 17px}
.btn-ghost{background:rgba(255,255,255,.3);color:var(--gold-dark);border:1px solid var(--gold);box-shadow:none}

.hero{
  min-height:84vh;
  display:grid;grid-template-columns:1.03fr .97fr;
  gap:7vw;align-items:center;
  padding:clamp(58px,8vw,112px) clamp(20px,7vw,100px);
}
.hero-copy h1{margin-top:14px;max-width:860px}
.lead{max-width:720px;font-size:1.06rem;color:var(--muted);margin:28px 0}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.credenciais{display:flex;gap:10px;flex-wrap:wrap;margin-top:30px}
.credenciais span{
  padding:9px 12px;border:1px solid var(--line);border-radius:999px;
  font-size:.75rem;color:var(--muted);background:rgba(255,255,255,.45)
}

.hero-visual{position:relative;min-height:620px}
.photo-frame{
  position:absolute;inset:0 10% 0 6%;
  border-radius:40px 40px 190px 40px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(183,139,61,.18);
  background:#efe4d6;
}
.photo-frame:after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 65%,rgba(55,42,30,.12));
  pointer-events:none;
}
.photo-frame img{width:100%;height:100%;object-fit:cover;object-position:center 26%}
.hero-visual:before,.hero-visual:after{
  content:"";position:absolute;border:1px solid rgba(183,139,61,.42);border-radius:50%;pointer-events:none
}
.hero-visual:before{width:290px;height:290px;right:-15px;top:-32px}
.hero-visual:after{width:160px;height:160px;left:-10px;bottom:18px}
.mini-card{
  position:absolute;right:-8px;bottom:42px;width:225px;padding:18px 20px;
  border-radius:20px;background:rgba(255,253,249,.94);backdrop-filter:blur(10px);
  box-shadow:0 14px 36px rgba(68,47,20,.14);border:1px solid var(--line)
}
.mini-card span,.mini-card small{display:block;color:var(--muted);font-size:.72rem}
.mini-card strong{display:block;margin:5px 0;font-family:"Cormorant Garamond",serif;font-size:1.45rem}

.trust-strip{
  display:grid;grid-template-columns:repeat(4,1fr);
  margin:0 clamp(20px,5vw,70px);
  border:1px solid var(--line);border-radius:22px;overflow:hidden;
  background:rgba(255,255,255,.58);
  box-shadow:0 12px 36px rgba(78,55,25,.05);
}
.trust-strip div{padding:22px;border-right:1px solid var(--line)}
.trust-strip div:last-child{border-right:0}
.trust-strip strong{display:block;font-family:"Cormorant Garamond",serif;font-size:1.35rem}
.trust-strip span{display:block;color:var(--muted);font-size:.75rem;margin-top:4px}

.section{padding:100px clamp(20px,7vw,100px)}
.section-heading{max-width:780px;margin-bottom:48px}
.section-heading h2{margin:12px 0 18px}
.section-heading p{color:var(--muted)}
.centered{text-align:center;margin-left:auto;margin-right:auto}

.about{display:grid;grid-template-columns:.9fr 1.1fr;gap:7vw;align-items:center}
.about-photo{
  min-height:560px;border-radius:34px 130px 34px 34px;overflow:hidden;
  box-shadow:var(--shadow);border:1px solid rgba(183,139,61,.16)
}
.about-photo img{width:100%;height:100%;object-fit:cover;object-position:center 23%}
.about-copy h2{margin:12px 0 24px}
.about-copy p{color:var(--muted)}

.timeline{display:grid;gap:18px;max-width:1000px}
.timeline-item{
  position:relative;display:grid;grid-template-columns:30px 1fr;gap:18px;
  padding:26px 28px;border-radius:24px;
  background:rgba(255,255,255,.62);
  border:1px solid var(--line);
  box-shadow:0 10px 28px rgba(78,55,25,.05)
}
.timeline-dot{
  width:13px;height:13px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold-dark),var(--gold));
  margin-top:7px;box-shadow:0 0 0 6px rgba(183,139,61,.12)
}
.timeline-tag{
  display:inline-block;margin-bottom:8px;
  font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold-dark);font-weight:700
}
.timeline-item h3{margin-bottom:8px}
.timeline-item p{margin:0;color:var(--muted)}

.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{
  position:relative;overflow:hidden;
  padding:30px;min-height:235px;border-radius:24px;
  background:linear-gradient(145deg,rgba(255,255,255,.72),rgba(255,250,244,.58));
  border:1px solid rgba(183,139,61,.16);
  box-shadow:0 12px 30px rgba(78,55,25,.05);
  transition:.22s ease;
}
.card:before{
  content:"";position:absolute;width:90px;height:90px;border-radius:50%;
  background:rgba(234,210,212,.22);right:-32px;top:-28px
}
.card:hover{transform:translateY(-4px);box-shadow:0 18px 38px rgba(78,55,25,.08)}
.card h3{margin-bottom:12px}
.card p{color:var(--muted);font-size:.92rem}

.feature-section{
  margin:10px clamp(20px,5vw,72px) 90px;
  padding:clamp(38px,6vw,74px);
  display:grid;grid-template-columns:1.05fr .95fr;gap:54px;align-items:center;
  border-radius:36px;
  background:
    radial-gradient(circle at 100% 0%,rgba(234,210,212,.35),transparent 28%),
    linear-gradient(145deg,#fffaf3,#f1e5d7);
  border:1px solid var(--line);
  box-shadow:var(--shadow)
}
.feature-copy h2{margin:12px 0 22px}
.feature-copy p{color:var(--muted)}
.conditions-card{
  padding:32px;border-radius:26px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--line);
  box-shadow:0 12px 34px rgba(78,55,25,.08)
}
.conditions-card h3{margin-bottom:18px}
.clean-list{margin:0;padding:0;list-style:none;display:grid;gap:12px}
.clean-list li{position:relative;padding-left:24px;color:var(--muted);line-height:1.6}
.clean-list li:before{
  content:"";position:absolute;left:0;top:.6em;width:8px;height:8px;border-radius:50%;background:var(--gold)
}

.tr3-section{
  margin:20px clamp(20px,5vw,72px) 90px;
  padding:clamp(40px,6vw,78px);
  border-radius:36px;
  background:
    radial-gradient(circle at 88% 10%,rgba(183,139,61,.16),transparent 24%),
    linear-gradient(135deg,#332a22,#4b3927);
  color:white;
  box-shadow:var(--shadow)
}
.tr3-intro{max-width:840px}
.tr3-intro h2{margin:12px 0 22px}
.tr3-intro p{color:#ded3c5}
.tr3-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:36px}
.tr3-grid article{
  padding:28px;border-radius:22px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(229,200,135,.25);
  backdrop-filter:blur(8px)
}
.tr3-grid h3{margin-bottom:12px;color:white}
.tr3-grid p{margin:0;color:#dfd5c8;font-size:.9rem}

.home-section{
  margin:20px clamp(20px,5vw,72px) 90px;
  padding:clamp(36px,6vw,76px);
  display:grid;grid-template-columns:1fr .9fr;gap:60px;align-items:center;
  border-radius:36px;
  background:linear-gradient(135deg,#342b23,#4b3927);
  color:white;
  box-shadow:var(--shadow)
}
.home-copy h2{margin:12px 0 22px}
.home-copy p{color:#ded3c5}
.home-photo-stack{position:relative;min-height:470px}
.home-main{
  position:absolute;left:0;top:0;width:68%;height:85%;object-fit:cover;
  border-radius:28px;box-shadow:0 16px 40px rgba(0,0,0,.22)
}
.home-secondary{
  position:absolute;right:0;bottom:0;width:54%;height:62%;object-fit:cover;
  border-radius:24px;border:7px solid #403225;box-shadow:0 16px 40px rgba(0,0,0,.2)
}

.warning-signs{padding-top:28px}
.signs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.signs-grid span{
  min-height:92px;display:flex;align-items:center;
  padding:20px 22px;border-radius:20px;
  background:rgba(255,255,255,.62);
  border:1px solid var(--line);
  color:var(--muted);
  box-shadow:0 8px 22px rgba(78,55,25,.04)
}
.early-note{
  max-width:920px;margin:30px auto 0;text-align:center;
  color:var(--gold-dark);
  font-family:"Cormorant Garamond",serif;
  font-size:1.6rem;font-weight:600
}

.cta{
  margin:0 clamp(20px,7vw,100px) 90px;
  padding:clamp(36px,5vw,64px);
  display:flex;justify-content:space-between;align-items:center;gap:28px;
  border-radius:30px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 12% 50%,rgba(234,210,212,.26),transparent 26%),
    rgba(255,255,255,.62);
  box-shadow:0 14px 36px rgba(78,55,25,.05)
}
.cta h2{margin:10px 0}
.cta p{color:var(--muted)}
.cta-actions{display:flex;gap:18px;align-items:center;flex-wrap:wrap}
.text-link{font-weight:700;color:var(--gold-dark);border-bottom:1px solid var(--gold)}

footer{
  display:grid;grid-template-columns:1fr auto auto;gap:24px;align-items:center;
  padding:28px clamp(20px,7vw,100px);
  border-top:1px solid var(--line);
  color:var(--muted);font-size:.8rem
}
.footer-brand{display:flex;align-items:center;gap:12px}
.footer-brand img{width:58px}
.footer-brand div{display:flex;flex-direction:column}
.footer-brand strong{font-family:"Cormorant Garamond",serif;color:var(--ink);font-size:1.15rem}

@media(max-width:980px){
  .desktop-cta{display:none}
  .menu-btn{display:block}
  .nav{
    display:none;position:absolute;top:100%;left:18px;right:18px;
    flex-direction:column;padding:18px;border:1px solid var(--line);
    border-radius:18px;background:#fbf7f0;box-shadow:var(--shadow)
  }
  .nav.open{display:flex}
  .hero,.about,.feature-section,.home-section{grid-template-columns:1fr}
  .hero-visual{min-height:560px}
  .grid{grid-template-columns:1fr 1fr}
  .tr3-grid{grid-template-columns:1fr}
  .signs-grid{grid-template-columns:1fr 1fr}
  .cta{flex-direction:column;align-items:flex-start}
}
@media(max-width:620px){
  html{scroll-padding-top:78px}
  .site-header{padding:10px 16px}
  .brand img{width:44px;height:44px}
  .brand strong{font-size:1.15rem}
  .hero{padding:48px 18px 70px}
  h1{font-size:3.2rem}
  .hero-visual{min-height:470px}
  .photo-frame{inset:0 4% 0 0;border-radius:28px 28px 110px 28px}
  .mini-card{right:0;bottom:20px;width:195px}
  .trust-strip{margin:0 18px;grid-template-columns:1fr}
  .trust-strip div{border-right:0;border-bottom:1px solid var(--line)}
  .trust-strip div:last-child{border-bottom:0}
  .section{padding:72px 18px}
  .about-photo{min-height:420px}
  .grid,.signs-grid{grid-template-columns:1fr}
  .feature-section,.tr3-section,.home-section{margin:0 18px 72px;padding:30px 22px;border-radius:26px}
  .home-photo-stack{min-height:380px}
  .cta{margin:0 18px 70px;padding:30px 22px}
  footer{grid-template-columns:1fr;justify-items:start;padding:24px 18px}
}


/* ===== v5 refinements: softer, more elegant, premium ===== */
:root{
  --champagne:#d6b874;
  --champagne-soft:#ead9b1;
  --rose-mist:#f1dddd;
  --cream:#fffaf3;
  --deep:#2c241e;
}

body{
  background:
    radial-gradient(circle at 8% 2%,rgba(241,221,221,.44),transparent 30%),
    radial-gradient(circle at 92% 16%,rgba(214,184,116,.10),transparent 24%),
    linear-gradient(180deg,#fcf8f2 0%,#f5ede3 100%);
}

.site-header{
  padding-top:12px;
  padding-bottom:12px;
  background:rgba(252,248,242,.86);
  border-bottom:1px solid rgba(183,139,61,.10);
  box-shadow:0 6px 28px rgba(62,43,22,.035);
}

.brand strong{
  letter-spacing:.01em;
}

.nav{
  gap:22px;
  font-size:.8rem;
  letter-spacing:.01em;
}

.hero{
  min-height:88vh;
  gap:8vw;
}

.hero-copy{
  position:relative;
}

.hero-copy:before{
  content:"";
  position:absolute;
  left:-28px;
  top:4px;
  width:2px;
  height:64px;
  background:linear-gradient(var(--gold),transparent);
  border-radius:99px;
}

.hero-copy h1{
  max-width:900px;
  letter-spacing:-.018em;
}

.lead{
  max-width:680px;
  font-size:1.02rem;
}

.photo-frame{
  border-radius:44px 44px 210px 44px;
  box-shadow:0 24px 70px rgba(72,50,23,.16);
}

.photo-frame:before{
  content:"";
  position:absolute;
  inset:14px;
  border:1px solid rgba(255,255,255,.44);
  border-radius:34px 34px 190px 34px;
  z-index:1;
  pointer-events:none;
}

.mini-card{
  right:-2px;
  bottom:34px;
  border-radius:22px;
  background:rgba(255,253,249,.96);
  border:1px solid rgba(183,139,61,.18);
}

.trust-strip{
  background:rgba(255,255,255,.62);
  border-radius:26px;
  box-shadow:0 16px 44px rgba(72,50,23,.05);
}

.trust-strip div{
  padding:26px 24px;
}

.section{
  padding-top:108px;
  padding-bottom:108px;
}

.section-heading{
  max-width:820px;
}

.section-heading h2,
.about-copy h2,
.feature-copy h2,
.tr3-intro h2{
  letter-spacing:-.012em;
}

.about{
  gap:8vw;
}

.about-photo{
  border-radius:36px 150px 36px 36px;
  box-shadow:0 24px 65px rgba(72,50,23,.13);
}

.timeline{
  gap:20px;
}

.timeline-item{
  padding:30px 32px;
  border-radius:26px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.82),rgba(255,250,244,.62));
  box-shadow:0 16px 38px rgba(72,50,23,.045);
}

.timeline-item h3{
  font-size:1.95rem;
}

.card{
  min-height:250px;
  padding:32px;
  border-radius:26px;
  background:
    radial-gradient(circle at 100% 0%,rgba(241,221,221,.34),transparent 32%),
    linear-gradient(145deg,rgba(255,255,255,.80),rgba(255,250,244,.60));
  box-shadow:0 14px 36px rgba(72,50,23,.045);
}

.card h3{
  font-size:1.95rem;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(72,50,23,.085);
}

.feature-section{
  position:relative;
  overflow:hidden;
  border-radius:40px;
  padding:clamp(42px,6vw,82px);
  box-shadow:0 24px 65px rgba(72,50,23,.09);
}

.feature-section:after{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  border:1px solid rgba(183,139,61,.20);
  border-radius:50%;
  right:-120px;
  bottom:-140px;
}

.conditions-card{
  border-radius:30px;
  padding:34px;
}

.tr3-section{
  border-radius:40px;
  padding:clamp(42px,6vw,82px);
  box-shadow:0 24px 70px rgba(53,38,22,.18);
}

.tr3-grid article{
  border-radius:24px;
  padding:30px;
  background:rgba(255,255,255,.055);
}

.home-section{
  border-radius:40px;
  padding:clamp(42px,6vw,82px);
  box-shadow:0 24px 70px rgba(53,38,22,.18);
}

.home-main{
  border-radius:32px;
}
.home-secondary{
  border-radius:26px;
}

.signs-grid{
  gap:14px;
}

.signs-grid span{
  min-height:100px;
  border-radius:22px;
  padding:22px 24px;
  background:rgba(255,255,255,.66);
}

.cta{
  border-radius:34px;
  padding:clamp(40px,5vw,68px);
  box-shadow:0 18px 46px rgba(72,50,23,.06);
}

.btn{
  min-height:50px;
  padding-left:24px;
  padding-right:24px;
}

footer{
  padding-top:32px;
  padding-bottom:32px;
}

/* subtle entrance animation */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}
.reveal{
  opacity:0;
  transform:translateY(18px);
}
.reveal.is-visible{
  animation:fadeUp .7s cubic-bezier(.22,.61,.36,1) both;
}

@media(max-width:620px){
  .hero-copy:before{display:none}
  .photo-frame{border-radius:30px 30px 120px 30px}
  .photo-frame:before{border-radius:22px 22px 105px 22px}
  .section{padding-top:78px;padding-bottom:78px}
}


/* ===== v6 education section ===== */
.education-section{
  padding-top:86px;
  padding-bottom:112px;
}

.education-hero{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:50px;
  align-items:center;
  margin-bottom:34px;
  padding:16px 0 10px;
}

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

.education-hero-copy h2{
  margin:12px 0 18px;
  font-size:clamp(2.9rem,5vw,5.3rem);
  line-height:.98;
  letter-spacing:-.018em;
}

.education-hero-copy h2 span{
  color:#b46f67;
}

.education-hero-copy p{
  max-width:680px;
  color:var(--muted);
  font-size:1rem;
}

.education-hero-art{
  position:relative;
  min-height:280px;
  border-radius:42px 42px 110px 42px;
  overflow:hidden;
  border:1px solid rgba(183,139,61,.16);
  box-shadow:0 20px 55px rgba(72,50,23,.10);
  background:#f4e8d9;
}

.education-hero-art:before{
  content:"";
  position:absolute;
  inset:12px;
  border:1px solid rgba(255,255,255,.45);
  border-radius:32px 32px 96px 32px;
  z-index:1;
  pointer-events:none;
}

.education-hero-art img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.education-cards{
  display:grid;
  gap:18px;
}

.education-card{
  position:relative;
  display:grid;
  grid-template-columns:38% 58px 1fr;
  align-items:center;
  min-height:230px;
  border-radius:28px;
  overflow:hidden;
  background:
    radial-gradient(circle at 98% 15%,rgba(241,221,221,.26),transparent 24%),
    linear-gradient(145deg,rgba(255,255,255,.88),rgba(255,250,244,.66));
  border:1px solid rgba(183,139,61,.20);
  box-shadow:0 14px 38px rgba(72,50,23,.055);
  transition:.22s ease;
}

.education-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 48px rgba(72,50,23,.085);
}

.education-image{
  height:100%;
  min-height:230px;
  overflow:hidden;
  padding:14px 0 14px 14px;
}

.education-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
}

.education-icon{
  position:relative;
  z-index:2;
  width:58px;
  height:58px;
  margin-left:-29px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fffdf9;
  border:1px solid rgba(183,139,61,.25);
  color:var(--gold-dark);
  font-size:1.65rem;
  font-family:"Cormorant Garamond",serif;
  box-shadow:0 10px 22px rgba(72,50,23,.09);
}

.education-icon:after{
  content:"";
  position:absolute;
  width:1px;
  height:138px;
  left:50%;
  top:66px;
  background:linear-gradient(rgba(183,139,61,.28),transparent);
}

.education-content{
  padding:32px 40px 32px 16px;
  position:relative;
}

.education-content:after{
  content:"";
  position:absolute;
  right:24px;
  top:22px;
  width:86px;
  height:112px;
  opacity:.08;
  border:1px solid var(--rose-deep);
  border-radius:65% 35% 62% 38%;
  transform:rotate(22deg);
}

.education-content h3{
  font-size:2.15rem;
  margin:5px 0 10px;
}

.education-line{
  display:block;
  width:62px;
  height:1px;
  background:var(--gold);
  margin:6px 0 16px;
}

.education-content p{
  margin:0;
  color:var(--muted);
  max-width:720px;
}

.education-content strong{
  color:var(--ink);
  font-weight:600;
}

@media(max-width:980px){
  .education-hero{
    grid-template-columns:1fr;
  }
  .education-hero-art{
    min-height:240px;
  }
  .education-card{
    grid-template-columns:36% 50px 1fr;
  }
  .education-icon{
    width:52px;height:52px;margin-left:-26px;
  }
}

@media(max-width:700px){
  .education-section{
    padding-top:72px;
    padding-bottom:80px;
  }
  .education-hero{
    gap:24px;
  }
  .education-hero-copy h2{
    font-size:3.15rem;
  }
  .education-hero-art{
    min-height:210px;
    border-radius:28px 28px 80px 28px;
  }
  .education-card{
    grid-template-columns:1fr;
    min-height:0;
  }
  .education-image{
    padding:12px;
    min-height:210px;
    height:210px;
  }
  .education-icon{
    display:none;
  }
  .education-content{
    padding:10px 22px 28px;
  }
  .education-content h3{
    font-size:1.95rem;
  }
}
