/* ============================================================
   Jessica Fonseca Studio — Portal de Agendamento
   Animated, Light, Sophisticated — No Photos
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ── Design Tokens ── */
:root {
  --bg: #fdfbf7;
  --surface: #ffffff;
  --surface-alt: #f9f6f1;
  --text: #2a2421;
  --text-2: #7d746a;
  --text-3: #b8afa5;
  --accent: #ffc343;
  --accent-2: #0a0a0a;
  --accent-soft: #f3ebe0;
  --accent-hover: #ffab2e;
  --border: rgba(5, 5, 5, 0.16);
  --border-2: rgba(196,154,108,.28);
  --success: #4caf78;
  --whatsapp: #25d366;
  --shadow-s: 0 2px 8px rgba(42,36,33,.04);
  --shadow-m: 0 8px 30px rgba(42,36,33,.07);
  --shadow-l: 0 20px 60px rgba(42,36,33,.1);
  --r-s: 10px;
  --r-m: 14px;
  --r-l: 20px;
  --r-full: 999px;
  --font: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:var(--font);font-size:15px;line-height:1.6;color:var(--text);background:var(--bg);-webkit-font-smoothing:antialiased;overflow-x:hidden}
button,input,textarea{font:inherit}
img{display:block;max-width:100%}

/* ============================================================
   SPLASH SCREEN — full page animated loader
   ============================================================ */
.portal-splash{
  position:fixed;inset:0;z-index:200;
  display:flex;align-items:center;justify-content:center;
  background:var(--bg);
  transition:opacity .6s var(--ease),visibility .6s var(--ease);
}
.portal-splash.is-hidden{opacity:0;visibility:hidden;pointer-events:none}

/* Floating orbs */
.splash-orbs{position:absolute;inset:0;overflow:hidden}
.splash-orb{
  position:absolute;border-radius:50%;
  filter:blur(80px);opacity:.5;
  animation:orbFloat 8s var(--ease) infinite alternate;
}
.splash-orb-1{width:340px;height:340px;top:-10%;left:-5%;background:var(--accent-soft);animation-duration:7s}
.splash-orb-2{width:260px;height:260px;bottom:-8%;right:-3%;background:rgba(196,154,108,.18);animation-duration:9s;animation-delay:-3s}
.splash-orb-3{width:180px;height:180px;top:40%;left:55%;background:rgba(196,154,108,.12);animation-duration:11s;animation-delay:-5s}
@keyframes orbFloat{
  0%{transform:translate(0,0) scale(1)}
  100%{transform:translate(30px,-40px) scale(1.15)}
}

.splash-center{
  position:relative;z-index:1;
  display:flex;flex-direction:column;align-items:center;gap:24px;
  animation:splashFadeUp .8s var(--ease) both;
}
@keyframes splashFadeUp{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}

/* Pulsing ring around mark */
.splash-ring{
  position:relative;
  display:flex;align-items:center;justify-content:center;
}
.splash-ring::before{
  content:'';position:absolute;
  width:90px;height:90px;border-radius:50%;
  border:2px solid var(--accent-2);
  animation:ringPulse 2s ease-in-out infinite;
}
.splash-ring::after{
  content:'';position:absolute;
  width:110px;height:110px;border-radius:50%;
  border:1px solid rgba(196,154,108,.2);
  animation:ringPulse 2s ease-in-out infinite .4s;
}
@keyframes ringPulse{
  0%,100%{transform:scale(.85);opacity:.3}
  50%{transform:scale(1.1);opacity:.7}
}

.splash-mark{
  width:64px;height:64px;border-radius:var(--r-m);
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;font-weight:700;font-size:22px;letter-spacing:-.03em;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 12px 32px rgba(196,154,108,.28);
  position:relative;z-index:1;
}
.splash-text{text-align:center}
.splash-text strong{display:block;font-family:var(--font-display);font-size:22px;font-weight:500;color:var(--text)}
.splash-text span{display:block;font-size:13px;color:var(--text-2);margin-top:3px;letter-spacing:.02em}

/* Loading bar */
.splash-loader{
  width:120px;height:3px;border-radius:var(--r-full);
  background:var(--accent-soft);overflow:hidden;
}
.splash-loader-bar{
  width:40%;height:100%;border-radius:inherit;
  background:linear-gradient(90deg,var(--accent-2),var(--accent));
  animation:loaderSlide 1.2s ease-in-out infinite;
}
@keyframes loaderSlide{
  0%{transform:translateX(-100%)}
  100%{transform:translateX(350%)}
}

/* ============================================================
   PORTAL APP / STEP SHELL
   ============================================================ */
.portal-shell{--portal-progress:0%}
.portal-app{min-height:100vh}
.portal-step{display:none;min-height:100vh}
.portal-step.is-active{display:block;animation:stepReveal .55s var(--ease) both}
@keyframes stepReveal{
  from{opacity:0;transform:translateY(24px) scale(.98);filter:blur(6px)}
  to{opacity:1;transform:translateY(0) scale(1);filter:blur(0)}
}

/* ============================================================
   LANDING — hero with animated shapes, no images
   ============================================================ */
.portal-landing{
  position:relative;display:flex;flex-direction:column;
  min-height:100vh;overflow:hidden;background:var(--bg);
}

/* Animated background shapes */
.landing-shapes{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.shape{position:absolute;border-radius:50%}
.shape-1{
  width:500px;height:500px;
  top:-15%;right:-10%;
  background:radial-gradient(circle,rgba(196,154,108,.14),transparent 70%);
  animation:shapeFloat 12s var(--ease) infinite alternate;
}
.shape-2{
  width:350px;height:350px;
  bottom:-10%;left:-8%;
  background:radial-gradient(circle,rgba(196,154,108,.1),transparent 70%);
  animation:shapeFloat 15s var(--ease) infinite alternate-reverse;
}
.shape-3{
  width:200px;height:200px;
  top:35%;left:20%;
  background:radial-gradient(circle,rgba(212,180,142,.12),transparent 70%);
  animation:shapeFloat 10s var(--ease) infinite alternate;
  animation-delay:-4s;
}
.shape-4{
  width:120px;height:120px;
  top:20%;right:25%;
  border-radius:var(--r-l);
  border:1px solid rgba(196,154,108,.12);
  animation:shapeRotate 20s linear infinite;
}
.shape-grid{
  position:absolute;inset:0;
  background:
    linear-gradient(rgba(196,154,108,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(196,154,108,.03) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse at center,#000 0%,transparent 70%);
}
@keyframes shapeFloat{
  0%{transform:translate(0,0) scale(1)}
  100%{transform:translate(40px,-50px) scale(1.1)}
}
@keyframes shapeRotate{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

/* Nav */
.landing-nav{
  position:relative;z-index:2;
  display:flex;align-items:center;justify-content:space-between;
  padding:22px 36px;
  animation:fadeDown .6s var(--ease) .2s both;
}
@keyframes fadeDown{
  from{opacity:0;transform:translateY(-12px)}
  to{opacity:1;transform:translateY(0)}
}
.nav-logo{display:flex;align-items:center;gap:12px}
.nav-mark{
  width:42px;height:42px;border-radius:var(--r-s);
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;font-weight:700;font-size:15px;
  display:flex;align-items:center;justify-content:center;
  transition:transform .3s var(--spring),box-shadow .3s var(--ease);
}
.nav-mark:hover{transform:scale(1.08) rotate(-3deg);box-shadow:0 8px 24px rgba(196,154,108,.25)}
.nav-name-group{display:flex;flex-direction:column;line-height:1.2}
.nav-name{font-family:var(--font-display);font-size:17px;font-weight:500;color:var(--text)}
.nav-sub{font-size:12px;color:var(--text-2);letter-spacing:.06em;text-transform:uppercase;font-weight:600}
.nav-contact{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 20px;border:1px solid var(--border-2);border-radius:var(--r-full);
  background:var(--surface);color:var(--text);
  font-size:13px;font-weight:600;text-decoration:none;
  transition:all .3s var(--ease);position:relative;overflow:hidden;
}
.nav-contact::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,var(--accent-soft),transparent);
  opacity:0;transition:opacity .3s var(--ease);
}
.nav-contact:hover{border-color:var(--accent);transform:translateY(-2px);box-shadow:var(--shadow-s)}
.nav-contact:hover::before{opacity:1}
.nav-contact-dot{
  width:7px;height:7px;border-radius:50%;background:var(--success);
  box-shadow:0 0 0 3px rgba(76,175,120,.2);
  animation:dotBlink 2s ease-in-out infinite;position:relative;z-index:1;
}
@keyframes dotBlink{0%,100%{opacity:1}50%{opacity:.4}}

/* Landing center content */
.landing-center{
  flex:1;display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;padding:0 32px;
  position:relative;z-index:1;
}

.landing-badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 18px;border-radius:var(--r-full);
  background:var(--accent-soft);border:1px solid var(--border);
  color:var(--accent-hover);font-size:12px;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;
  margin-bottom:28px;
  animation:fadeUp .6s var(--ease) .3s both;
}
.badge-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--accent);
  animation:dotBlink 1.8s ease-in-out infinite;
}
@keyframes fadeUp{
  from{opacity:0;transform:translateY(16px)}
  to{opacity:1;transform:translateY(0)}
}

.landing-title{
  font-family:var(--font-display);
  font-size:clamp(40px,7vw,80px);
  font-weight:400;line-height:1.05;
  color:var(--text);
  margin-bottom:22px;
}
.title-line{display:block}
.title-line-1{animation:titleIn .7s var(--ease) .4s both}
.title-line-2{animation:titleIn .7s var(--ease) .55s both}
.title-line-3{animation:titleIn .7s var(--ease) .7s both}
@keyframes titleIn{
  from{opacity:0;transform:translateY(30px) skewY(2deg);filter:blur(4px)}
  to{opacity:1;transform:translateY(0) skewY(0);filter:blur(0)}
}
.landing-title em{
  font-style:italic;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}

.landing-desc{
  max-width:480px;font-size:17px;color:var(--text-2);line-height:1.7;
  margin-bottom:36px;
  animation:fadeUp .6s var(--ease) .8s both;
}

.landing-cta{animation:fadeUp .6s var(--ease) .95s both}

/* ── Bottom features bar ── */
.landing-bottom{
  position:relative;z-index:1;
  border-top:1px solid var(--border);
  animation:fadeUp .6s var(--ease) 1.1s both;
}
.landing-features{
  display:flex;align-items:center;justify-content:center;
  gap:0;padding:0;
}
.feat{
  display:flex;align-items:center;gap:10px;
  padding:22px 32px;
  transition:background .3s var(--ease);
}
.feat:hover{background:var(--accent-soft)}
.feat-icon{
  width:38px;height:38px;border-radius:var(--r-s);
  background:var(--accent-soft);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--accent);flex-shrink:0;
  transition:all .3s var(--spring);
}
.feat:hover .feat-icon{
  transform:scale(1.1) rotate(-5deg);
  background:var(--accent);color:#fff;
  box-shadow:0 6px 18px rgba(196,154,108,.25);
}
.feat span{font-size:13px;font-weight:600;color:var(--text-2)}
.feat-divider{width:1px;height:28px;background:var(--border)}

/* ============================================================
   BUTTONS
   ============================================================ */
.portal-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:52px;padding:14px 30px;border:none;border-radius:var(--r-full);
  cursor:pointer;font-size:15px;font-weight:600;text-decoration:none;
  position:relative;overflow:hidden;
  transition:all .35s var(--ease);
}
.portal-btn:disabled{cursor:not-allowed;opacity:.35}
.portal-btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--accent-hover));
  color:#fff;
  box-shadow:0 6px 20px rgba(196,154,108,.3);
}
.portal-btn-primary::before{
  content:'';position:absolute;
  top:0;left:-100%;width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  transition:left .5s var(--ease);
}
.portal-btn-primary:hover:not(:disabled){
  box-shadow:0 10px 36px rgba(196,154,108,.4);
  transform:translateY(-3px);
}
.portal-btn-primary:hover::before{left:100%}

/* Glow pulse on CTA */
.btn-glow::after{
  content:'';position:absolute;inset:-3px;border-radius:inherit;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  z-index:-1;opacity:0;filter:blur(14px);
  animation:glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse{
  0%,100%{opacity:0;transform:scale(.95)}
  50%{opacity:.4;transform:scale(1.05)}
}

.portal-btn-secondary{
  border:1px solid var(--border-2);background:var(--surface);color:var(--text);
}
.portal-btn-secondary:hover{
  border-color:var(--accent);background:var(--accent-soft);transform:translateY(-2px);
}

.portal-btn-whatsapp{
  background:var(--whatsapp);color:#fff;
  box-shadow:0 6px 20px rgba(37,211,102,.25);
}
.portal-btn-whatsapp:hover{
  background:#1eba5a;transform:translateY(-3px);
  box-shadow:0 10px 36px rgba(37,211,102,.35);
}

.portal-wide{width:100%}

/* ============================================================
   STEP PANELS
   ============================================================ */
.step-panel,.success-panel{
  width:min(720px,calc(100% - 40px));margin:0 auto;padding:36px 0 48px;
}
.step-panel::before{
  content:'';position:fixed;inset:0;z-index:-1;pointer-events:none;
  background:
    radial-gradient(circle at 10% 15%,rgba(196,154,108,.08),transparent 35%),
    radial-gradient(circle at 85% 80%,rgba(196,154,108,.06),transparent 35%);
  animation:bgDrift 12s ease-in-out infinite alternate;
}
@keyframes bgDrift{
  0%{opacity:.6}100%{opacity:1}
}

.step-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}
.portal-back{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 18px;border:1px solid var(--border-2);border-radius:var(--r-full);
  background:var(--surface);color:var(--text);font-weight:600;font-size:14px;
  cursor:pointer;transition:all .3s var(--ease);
}
.portal-back svg{transition:transform .3s var(--ease)}
.portal-back:hover{
  border-color:var(--accent);background:var(--accent-soft);
  transform:translateX(-4px);
}
.portal-back:hover svg{transform:translateX(-3px)}
.step-count{
  padding:8px 14px;border-radius:var(--r-full);
  background:var(--accent-soft);border:1px solid var(--border);
  color:var(--accent-hover);font-size:12px;font-weight:700;
  letter-spacing:.04em;
}

/* Progress */
.step-progress{
  height:4px;margin-bottom:32px;border-radius:var(--r-full);
  background:var(--accent-soft);overflow:hidden;
}
.step-progress span{
  display:block;width:var(--portal-progress);height:100%;border-radius:inherit;
  background:linear-gradient(90deg,var(--accent-2),var(--accent));
  transition:width .6s var(--ease);
  position:relative;
}
.step-progress span::after{
  content:'';position:absolute;right:0;top:-1px;
  width:12px;height:6px;border-radius:var(--r-full);
  background:#fff;filter:blur(3px);opacity:.6;
}

.step-panel h2{
  font-family:var(--font-display);font-size:clamp(28px,5vw,44px);
  font-weight:400;color:var(--text);line-height:1.12;margin-bottom:8px;
}
.step-subtitle{color:var(--text-2);font-size:15px;margin-bottom:28px;line-height:1.6}

/* ============================================================
   CARDS — shared interactive styles
   ============================================================ */
.portal-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:14px;
}

.prof-card,.servico-card,.data-chip,.hora-chip{
  border:1px solid var(--border);border-radius:var(--r-m);
  background:var(--surface);cursor:pointer;text-align:left;
  transition:all .35s var(--ease);position:relative;overflow:hidden;
}
/* Shimmer on hover */
.prof-card::after,.servico-card::after,.data-chip::after,.hora-chip::after{
  content:'';position:absolute;top:0;left:-100%;
  width:50%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(196,154,108,.06),transparent);
  transition:left .6s var(--ease);pointer-events:none;
}
.prof-card:hover::after,.servico-card:hover::after,.data-chip:hover::after,.hora-chip:hover::after{
  left:150%;
}
.prof-card:hover,.servico-card:hover,.data-chip:hover,.hora-chip:hover{
  border-color:var(--accent-2);
  box-shadow:var(--shadow-m);
  transform:translateY(-4px);
}

/* Selected state with ring animation */
.prof-card.is-selected,.servico-card.is-selected,.data-chip.is-selected,.hora-chip.is-selected{
  border-color:var(--accent);
  background:var(--accent-soft);
  box-shadow:0 0 0 3px rgba(196,154,108,.12),var(--shadow-m);
  animation:selectPop .35s var(--spring);
}
@keyframes selectPop{
  0%{transform:scale(1)}
  40%{transform:scale(1.03)}
  100%{transform:scale(1)}
}

/* Prof card */
.prof-card{display:flex;gap:16px;align-items:center;padding:18px}
.prof-avatar{
  width:56px;height:56px;border-radius:var(--r-m);flex-shrink:0;
  background:linear-gradient(135deg,var(--accent-soft),var(--accent-2));
  color:var(--accent-hover);font-weight:700;font-size:18px;
  display:flex;align-items:center;justify-content:center;overflow:hidden;
  transition:transform .35s var(--spring);
}
.prof-card:hover .prof-avatar{transform:scale(1.08) rotate(-3deg)}
.prof-avatar img{width:100%;height:100%;object-fit:cover}
.prof-card strong{display:block;font-size:16px;font-weight:600}
.prof-card small{display:block;color:var(--text-2);font-size:13px;margin-top:2px}
.prof-card em{font-style:normal;color:var(--text-2);font-size:13px}
.prof-card-info{min-width:0}
.prof-card-info small{color:var(--accent-hover);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.04em}
.prof-card-info strong{margin:4px 0;font-size:18px}
.prof-card-info em{color:var(--text-2);font-style:normal}
.prof-card-action{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;padding-top:12px;border-top:1px solid var(--border)}
.prof-card-action small{color:var(--accent-hover);font-size:11px;font-weight:700;text-transform:uppercase}
.prof-card-action b{color:var(--text)}

/* Search */
.portal-search{
  width:100%;min-height:52px;padding:14px 22px;
  border:1px solid var(--border-2);border-radius:var(--r-full);
  background:var(--surface);color:var(--text);font-size:14px;
  margin-bottom:16px;
  transition:all .3s var(--ease);
}
.portal-search:focus{
  outline:none;border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(196,154,108,.1),var(--shadow-s);
}
.portal-search::placeholder{color:var(--text-3)}

.portal-unidades{
  margin:0 0 18px;
}
.portal-unidades-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.portal-unidades-title span{
  color:var(--accent-hover);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.portal-unidades-title strong{
  color:var(--text);
  font-size:14px;
  font-weight:700;
  text-align:right;
}
.portal-unidades-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:10px;
}
.portal-unidade-card{
  width:100%;
  min-height:68px;
  padding:12px 14px;
  border:1px solid var(--border-2);
  border-radius:var(--r-m);
  background:var(--surface);
  color:var(--text);
  text-align:left;
  cursor:pointer;
  transition:border-color .22s var(--ease),box-shadow .22s var(--ease),transform .22s var(--ease),background .22s var(--ease);
}
.portal-unidade-card strong{
  display:block;
  font-size:14px;
  line-height:1.2;
}
.portal-unidade-card span{
  display:block;
  margin-top:4px;
  color:var(--text-2);
  font-size:12px;
  line-height:1.35;
}
.portal-unidade-card:hover{
  border-color:var(--accent);
  transform:translateY(-1px);
  box-shadow:var(--shadow-s);
}
.portal-unidade-card.is-selected{
  border-color:var(--accent);
  background:var(--accent-soft);
  box-shadow:0 0 0 3px rgba(196,154,108,.10);
}

/* Selected services bar */
.servicos-selecionados{
  display:flex;gap:12px;align-items:flex-start;justify-content:space-between;
  margin-bottom:16px;padding:16px;
  border:1px solid var(--border-2);border-radius:var(--r-m);
  background:var(--surface);box-shadow:var(--shadow-s);
  transition:all .3s var(--ease);
}
.servicos-selecionados>span{flex-shrink:0;color:var(--accent-hover);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.04em}
.servicos-selecionados>div{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px}
.servicos-selecionados.is-empty{border-style:dashed;border-color:var(--border);background:var(--surface-alt);color:var(--text-3)}
.servicos-selecionados.is-empty>span{color:var(--text-3)}

.servico-pill{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 12px;border:1px solid var(--accent-2);border-radius:var(--r-full);
  background:var(--accent-soft);color:var(--accent-hover);
  font-size:12px;font-weight:600;cursor:pointer;
  transition:all .25s var(--ease);
  animation:pillIn .3s var(--spring) both;
}
@keyframes pillIn{from{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}
.servico-pill:hover{background:var(--accent-2);color:#fff}
.servico-pill b{
  display:inline-flex;align-items:center;justify-content:center;
  width:16px;height:16px;border-radius:50%;
  background:rgba(196,154,108,.2);color:var(--accent-hover);
  font-size:11px;line-height:1;
}

.servicos-lista{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:14px;padding-bottom:100px;
}

/* Service card */
.servico-card{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  grid-template-areas:"check info" "check preco";
  min-height:160px;gap:14px;padding:18px;
}
.servico-check{
  grid-area:check;
  width:40px;height:40px;border:2px solid var(--border-2);border-radius:50%;
  background:var(--surface-alt);
  display:flex;align-items:center;justify-content:center;
  color:transparent;font-size:16px;font-weight:700;
  transition:all .35s var(--spring);
}
.servico-card.is-selected .servico-check{
  border-color:var(--accent);background:var(--accent);color:#fff;
  transform:scale(1.1) rotate(5deg);
  box-shadow:0 4px 14px rgba(196,154,108,.3);
}
.servico-info{grid-area:info;min-width:0}
.servico-info strong{display:block;font-size:16px;font-weight:600;line-height:1.2}
.servico-info small{display:block;color:var(--text-2);font-size:13px;margin-top:4px;font-style:normal}
.servico-info em{
  display:inline-flex;align-items:center;margin-top:8px;
  padding:4px 10px;border:1px solid var(--border);border-radius:var(--r-full);
  background:var(--surface-alt);color:var(--text-2);
  font-size:11px;font-style:normal;font-weight:600;
}
.servico-preco{
  grid-area:preco;align-self:end;
  display:flex;align-items:flex-end;justify-content:space-between;gap:12px;
  padding-top:12px;border-top:1px solid var(--border);
}
.servico-preco small{color:var(--text-3);font-size:11px;font-weight:700;text-transform:uppercase}
.servico-preco b{white-space:nowrap;color:var(--accent-hover);font-size:18px}
.servico-card.is-selected .servico-preco b{color:var(--text)}

/* Footer action */
.portal-footer-action{
  position:sticky;bottom:16px;
  display:flex;gap:16px;align-items:center;justify-content:space-between;
  padding:16px 22px;border:1px solid var(--border);border-radius:var(--r-l);
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow-l);
  backdrop-filter:blur(16px);
  animation:slideUp .4s var(--ease) both;
}
@keyframes slideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.portal-footer-action span{display:block;color:var(--text-2);font-size:12px;font-weight:600}
.portal-footer-action strong{display:block;margin-top:2px;font-size:18px;color:var(--accent-hover)}

/* ============================================================
   DATES
   ============================================================ */
.datas-strip{
  display:grid;grid-template-columns:repeat(7, minmax(0, 1fr));
  gap:8px;margin-bottom:28px;
}
.data-chip{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  min-height:92px;padding:12px 8px;text-align:center;
}
.data-chip span,.data-chip small{
  color:var(--text-2);font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:.04em;
}
.data-chip strong{
  margin:6px 0;font-family:var(--font-display);font-size:30px;
  font-weight:400;line-height:1;color:var(--text);
  transition:transform .3s var(--spring);
}
.data-chip:hover strong{transform:scale(1.1)}
.data-chip.is-selected span,.data-chip.is-selected small{color:var(--accent-hover)}

.data-chip.is-muted {
  opacity: .5;
}

.data-chip.is-today:not(.is-selected) {
  border-color: rgba(200, 162, 74, .52);
}

.data-chip:disabled {
  cursor: not-allowed;
  opacity: .25;
  transform: none;
}

.data-chip:disabled:hover {
  border-color: var(--border);
  box-shadow: none;
}

.data-chip:disabled:hover strong {
  transform: none;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 8px 0 16px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  background: var(--surface);
  box-shadow: var(--shadow-s);
}

.calendar-title {
  display: grid;
  gap: 2px;
  text-align: center;
}

.calendar-title span {
  color: var(--text-3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.calendar-title strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  text-transform: capitalize;
}

.calendar-nav {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-s);
  background: var(--surface-alt);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease);
}

.calendar-nav:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.calendar-nav:disabled {
  cursor: not-allowed;
  opacity: .35;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 8px;
  color: var(--text-3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

/* ============================================================
   TIME SLOTS
   ============================================================ */
.horarios-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
  gap:12px;margin-bottom:28px;
}
.hora-chip{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  min-height:72px;padding:14px;text-align:center;font-weight:700;
}
.hora-chip span{color:var(--text-2);font-size:11px;font-weight:700;text-transform:uppercase}
.hora-chip strong{margin-top:4px;font-size:20px;color:var(--text);transition:transform .3s var(--spring)}
.hora-chip:hover strong{transform:scale(1.08)}
.hora-chip.is-selected span{color:var(--accent-hover)}

/* ============================================================
   CONFIRMATION
   ============================================================ */
.resumo-card,.dados-card,.aviso-card{
  display:grid;gap:12px;margin-bottom:16px;padding:20px;
  border:1px solid var(--border);border-radius:var(--r-m);
  background:var(--surface);box-shadow:var(--shadow-s);
}
.resumo-card div{
  display:flex;justify-content:space-between;gap:20px;
  border-bottom:1px solid var(--border);padding-bottom:12px;
}
.resumo-card div:last-child{border-bottom:0;padding-bottom:0}
.resumo-card span,.dados-card label{
  color:var(--text-2);font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:.04em;
}
.resumo-card strong{max-width:60%;text-align:right;font-size:14px}

.dados-card{display:block}
.dados-card label{display:block;margin-bottom:14px}
.dados-card input,.dados-card textarea{
  width:100%;min-height:48px;margin-top:8px;padding:12px 16px;
  border:1px solid var(--border-2);border-radius:var(--r-s);
  background:var(--surface-alt);color:var(--text);font-size:14px;
  resize:vertical;transition:all .3s var(--ease);
}
.dados-card input:focus,.dados-card textarea:focus{
  outline:none;border-color:var(--accent);background:var(--surface);
  box-shadow:0 0 0 4px rgba(196,154,108,.1);
}
.dados-card input::placeholder,.dados-card textarea::placeholder{color:var(--text-3)}

.aviso-card{
  display:flex;gap:14px;align-items:flex-start;
  border-color:rgba(196,154,108,.25);
  background:linear-gradient(135deg,#fef8ef,#fffcf7);
  color:#7a5c32;
}
.aviso-icon{
  flex-shrink:0;width:36px;height:36px;border-radius:50%;
  background:rgba(196,154,108,.15);color:var(--accent);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:16px;
}
.aviso-card strong{font-size:14px}
.aviso-card p{margin:4px 0 0;font-size:13px;line-height:1.6}

/* ============================================================
   SUCCESS — with confetti
   ============================================================ */
.success-panel{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  min-height:100vh;text-align:center;position:relative;overflow:hidden;
}
.success-confetti{position:absolute;inset:0;pointer-events:none}
.success-confetti span{
  position:absolute;width:8px;height:8px;border-radius:2px;
  opacity:0;animation:confettiFall 2.5s var(--ease) forwards;
}
.success-confetti span:nth-child(1){left:10%;background:var(--accent);animation-delay:0s;top:-5%}
.success-confetti span:nth-child(2){left:25%;background:var(--accent-2);animation-delay:.15s;top:-8%;width:6px;height:12px}
.success-confetti span:nth-child(3){left:40%;background:var(--accent-soft);animation-delay:.25s;top:-3%;border-radius:50%}
.success-confetti span:nth-child(4){left:55%;background:var(--accent);animation-delay:.1s;top:-6%}
.success-confetti span:nth-child(5){left:70%;background:var(--accent-2);animation-delay:.3s;top:-4%;width:10px;height:6px}
.success-confetti span:nth-child(6){left:85%;background:var(--accent-soft);animation-delay:.2s;top:-7%}
.success-confetti span:nth-child(7){left:15%;background:var(--accent-2);animation-delay:.35s;top:-5%;border-radius:50%;width:6px;height:6px}
.success-confetti span:nth-child(8){left:50%;background:var(--accent);animation-delay:.05s;top:-9%}
.success-confetti span:nth-child(9){left:65%;background:var(--accent-soft);animation-delay:.4s;top:-3%;width:12px;height:6px}
.success-confetti span:nth-child(10){left:35%;background:var(--accent-2);animation-delay:.22s;top:-6%;border-radius:50%}
@keyframes confettiFall{
  0%{opacity:1;transform:translateY(0) rotate(0deg) scale(1)}
  100%{opacity:0;transform:translateY(100vh) rotate(720deg) scale(.5)}
}

.success-icon{
  width:84px;height:84px;border-radius:50%;
  background:linear-gradient(135deg,var(--success),#6cc98a);
  color:#fff;display:flex;align-items:center;justify-content:center;
  margin-bottom:28px;
  box-shadow:0 14px 36px rgba(76,175,120,.25);
  animation:successBounce .6s var(--spring) both;
}
@keyframes successBounce{
  from{opacity:0;transform:scale(.3) rotate(-10deg)}
  to{opacity:1;transform:scale(1) rotate(0)}
}
.success-panel h2{
  font-family:var(--font-display);font-size:clamp(28px,5vw,44px);
  font-weight:400;color:var(--text);margin-bottom:12px;
  animation:fadeUp .5s var(--ease) .2s both;
}
.success-panel p{
  max-width:400px;color:var(--text-2);font-size:16px;line-height:1.6;
  margin-bottom:28px;animation:fadeUp .5s var(--ease) .35s both;
}

/* ============================================================
   LOADING / EMPTY
   ============================================================ */
.portal-loading,.portal-empty{
  padding:24px;border:1px dashed var(--border-2);border-radius:var(--r-m);
  color:var(--text-3);text-align:center;font-size:14px;
}

/* Confirmacao publica */
.confirmacao-publica{min-height:100vh;background:var(--bg)}
.confirmacao-card{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  min-height:100vh;width:min(600px,calc(100% - 40px));margin:0 auto;text-align:center;
}
.confirmacao-card h1{font-family:var(--font-display);font-size:clamp(28px,5vw,44px);font-weight:400;margin:12px 0}
.confirmacao-card p{max-width:420px;color:var(--text-2)}
.confirm-resumo{width:100%;margin-top:16px;text-align:left}
.confirm-text{margin:4px 0 18px}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:900px){
  .landing-nav{padding:18px 24px}
  .nav-name-group{display:none}
  .landing-features{flex-direction:column;gap:0}
  .feat-divider{width:60%;height:1px}
  .feat{padding:16px 24px;width:100%;justify-content:center}
}
@media(max-width:640px){
  .landing-nav{padding:14px 18px}
  .nav-contact{padding:8px 14px;font-size:12px}
  .landing-center{padding:0 20px}
  .landing-title{font-size:clamp(32px,10vw,48px)}
  .landing-desc{font-size:15px}

  .step-panel{width:calc(100% - 32px);padding:24px 0 36px}
  .step-panel h2{font-size:28px}
  .portal-grid{grid-template-columns:1fr}
  .servicos-lista{grid-template-columns:1fr}
  .datas-strip{grid-template-columns:repeat(7,minmax(0,1fr));gap:6px}
  .calendar-weekdays{gap:6px}
  .data-chip{min-height:76px;padding:9px 4px}
  .horarios-grid{grid-template-columns:repeat(auto-fill,minmax(100px,1fr))}

  .portal-footer-action{flex-direction:column;align-items:stretch;text-align:center}
  .portal-btn{width:100%}
  .servicos-selecionados{flex-direction:column}
  .servicos-selecionados>div{justify-content:flex-start}
  .resumo-card div{flex-direction:column;gap:4px}
  .resumo-card strong{max-width:none;text-align:left}
}
@media(max-width:380px){
  .landing-title{font-size:28px}
  .data-chip strong{font-size:26px}
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print{
  .portal-splash,.portal-back,.step-progress,.portal-footer-action,.landing-shapes,.splash-orbs{display:none!important}
  .portal-step{display:block!important;min-height:auto!important;animation:none!important}
}

/* ============================================================
   Premium studio pass - aligned with the internal system
   ============================================================ */
:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-alt: #fbfaf7;
  --text: #171717;
  --text-2: #6d675b;
  --text-3: #9f9788;
  --accent: #c8a24a;
  --accent-2: #0b0b0c;
  --accent-soft: #f1eadc;
  --accent-hover: #ad8732;
  --border: #ddd6c8;
  --border-2: rgba(200, 162, 74, .34);
  --shadow-s: 0 3px 12px rgba(23, 23, 23, .06);
  --shadow-m: 0 12px 34px rgba(23, 23, 23, .1);
  --shadow-l: 0 24px 70px rgba(23, 23, 23, .16);
  --r-s: 8px;
  --r-m: 10px;
  --r-l: 14px;
}

.portal-landing {
  isolation: isolate;
  min-height: 100svh;
  color: #fff;
  background: #0b0b0c;
}

.portal-step:not(.is-active) {
  display: none !important;
}

.portal-step.is-active {
  display: block;
}

.portal-landing.is-active {
  display: flex;
}

.landing-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .94) 0%, rgba(8, 8, 8, .66) 42%, rgba(8, 8, 8, .22) 100%),
    url('../uploads/portal-bg.webp') center / cover no-repeat,
    url('../uploads/portal-bg.jpg') center / cover no-repeat,
    radial-gradient(circle at 72% 30%, rgba(200, 162, 74, .18), transparent 34%),
    #111;
  transform: scale(1.03);
  animation: landingPhotoIn 1.2s var(--ease) both;
}

@keyframes landingPhotoIn {
  from { opacity: 0; transform: scale(1.08); filter: blur(8px); }
  to { opacity: 1; transform: scale(1.03); filter: blur(0); }
}

.landing-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 11, 12, .42), rgba(11, 11, 12, .14) 42%, rgba(11, 11, 12, .72)),
    radial-gradient(circle at 16% 42%, rgba(200, 162, 74, .24), transparent 34%);
  pointer-events: none;
}

.landing-shapes,
.shape,
.shape-grid {
  display: none !important;
}

.landing-nav {
  padding: 26px clamp(22px, 5vw, 72px);
}

.nav-mark,
.splash-mark {
  border: 1px solid rgba(200, 162, 74, .52);
  background: linear-gradient(145deg, #0b0b0c, #2b2517);
  color: #f3d985;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.nav-name,
.landing-title,
.landing-desc {
  color: #fff;
}

.nav-sub,
.landing-desc {
  color: rgba(255, 255, 255, .72);
}

.nav-contact {
  border-color: rgba(200, 162, 74, .44);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  backdrop-filter: blur(18px);
}

.nav-contact:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.landing-hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 420px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: 100%;
  padding: 6vh clamp(24px, 7vw, 96px) 7vh;
}

.landing-center {
  align-items: flex-start;
  text-align: left;
  max-width: 760px;
  padding: 0;
}

.landing-badge {
  border-color: rgba(200, 162, 74, .4);
  background: rgba(11, 11, 12, .54);
  color: #f1d891;
  backdrop-filter: blur(18px);
}

.landing-title {
  font-size: 82px;
  letter-spacing: 0;
  text-shadow: 0 24px 70px rgba(0, 0, 0, .52);
}

.landing-title em {
  color: #f1d891;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.landing-desc {
  max-width: 560px;
  font-size: 18px;
}

.landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.landing-agenda-card {
  justify-self: end;
  width: min(100%, 410px);
  padding: 22px;
  border: 1px solid rgba(200, 162, 74, .32);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06)),
    rgba(8, 8, 8, .38);
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  backdrop-filter: blur(24px);
  animation: agendaCardIn .72s var(--ease) .55s both;
}

@keyframes agendaCardIn {
  from { opacity: 0; transform: translateY(22px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.agenda-card-top,
.agenda-card-line,
.agenda-card-service {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.agenda-card-top {
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.agenda-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #62d08e;
  box-shadow: 0 0 0 5px rgba(98, 208, 142, .16);
}

.agenda-card-date {
  display: grid;
  gap: 4px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.agenda-card-date span,
.agenda-card-line span,
.agenda-card-service span {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.agenda-card-date strong {
  color: #f1d891;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 500;
  line-height: 1;
}

.agenda-card-line,
.agenda-card-service {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.agenda-card-line strong,
.agenda-card-service strong {
  max-width: 190px;
  text-align: right;
  color: #fff;
  font-size: 14px;
}

.agenda-card-status {
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(200, 162, 74, .28);
  border-radius: 8px;
  background: rgba(200, 162, 74, .12);
  color: #f1d891;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.landing-whatsapp {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.landing-whatsapp:hover {
  color: #fff;
  border-color: rgba(200, 162, 74, .62);
  background: rgba(255, 255, 255, .13);
}

.landing-bottom {
  margin-top: auto;
  border-top: 1px solid rgba(200, 162, 74, .22);
  background: rgba(8, 8, 8, .34);
  backdrop-filter: blur(18px);
}

.feat:hover {
  background: rgba(255, 255, 255, .07);
}

.feat span {
  color: rgba(255, 255, 255, .78);
}

.feat-icon {
  border-color: rgba(200, 162, 74, .34);
  background: rgba(255, 255, 255, .08);
  color: #f1d891;
}

.feat-divider {
  background: rgba(200, 162, 74, .2);
}

.portal-btn {
  border-radius: 8px;
  min-height: 54px;
}

.portal-btn-primary {
  background: linear-gradient(135deg, #0b0b0c, #272017);
  color: #fff;
  border: 1px solid rgba(200, 162, 74, .54);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .24);
}

.portal-btn-primary:hover:not(:disabled) {
  border-color: rgba(241, 216, 145, .82);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .28);
}

.btn-glow::after {
  background: linear-gradient(135deg, rgba(200, 162, 74, .62), rgba(255, 255, 255, .06));
}

.step-panel,
.success-panel {
  width: min(780px, calc(100% - 40px));
}

.step-panel h2,
.success-panel h2,
.confirmacao-card h1 {
  color: var(--text);
  font-family: var(--font);
  font-weight: 800;
}

.prof-card,
.servico-card,
.data-chip,
.hora-chip,
.resumo-card,
.dados-card,
.aviso-card {
  border-radius: 8px;
  border-color: var(--border);
}

.prof-card:hover,
.servico-card:hover,
.data-chip:hover,
.hora-chip:hover {
  border-color: rgba(200, 162, 74, .7);
}

.prof-card.is-selected,
.servico-card.is-selected,
.data-chip.is-selected,
.hora-chip.is-selected {
  background: #f8f3e8;
  border-color: var(--accent);
}

.data-chip.is-muted {
  opacity: .5;
}

.data-chip.is-today:not(.is-selected) {
  border-color: rgba(200, 162, 74, .52);
}

.data-chip:disabled {
  cursor: not-allowed;
  opacity: .25;
}

.data-chip:disabled:hover {
  border-color: var(--border);
  box-shadow: none;
  transform: none;
}

.calendar-toolbar {
  border-radius: 8px;
  border-color: var(--border);
}

.prof-avatar,
.servico-check {
  border-radius: 8px;
}

.servico-check {
  color: var(--accent);
}

.servico-card.is-selected .servico-check {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #f1d891;
}

.portal-footer-action {
  border-radius: 10px;
}

.portal-splash {
  background: #f7f6f2;
}

.splash-orb {
  opacity: .22;
}

@media (max-width: 900px) {
  .landing-photo {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, .58) 0%, rgba(8, 8, 8, .38) 38%, rgba(8, 8, 8, .9) 100%),
      url('../uploads/portal-bg-mobile.webp') center top / cover no-repeat,
      url('../uploads/portal-bg.webp') center top / cover no-repeat,
      #111;
  }

  .landing-center {
    max-width: 100%;
    justify-content: flex-end;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: 68svh;
    padding-top: 18vh;
  }

  .landing-agenda-card {
    display: none;
  }

  .landing-title {
    font-size: 58px;
  }
}

@media (max-width: 640px) {
  .portal-landing {
    min-height: 100svh;
  }

  .landing-nav {
    padding: 16px 18px;
  }

  .landing-center {
    padding-inline: 20px;
  }

  .landing-hero {
    padding: 18vh 0 34px;
  }

  .landing-title {
    font-size: 42px;
  }

  .landing-desc {
    font-size: 15px;
  }

  .landing-cta {
    width: 100%;
  }

  .landing-cta .portal-btn {
    width: 100%;
  }

  .landing-features {
    align-items: stretch;
  }

  .feat {
    justify-content: flex-start;
  }
}

/* Correção firme do calendário do portal */
.portal-shell .calendar-toolbar {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) 42px !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 8px 0 14px !important;
  padding: 12px !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  background: var(--surface) !important;
  box-shadow: var(--shadow-s) !important;
}

.portal-shell .calendar-title {
  display: grid !important;
  min-width: 0 !important;
  text-align: center !important;
}

.portal-shell .calendar-title span,
.portal-shell .calendar-title strong {
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.portal-shell .calendar-nav {
  width: 42px !important;
  min-width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
}

.portal-shell .calendar-weekdays {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 6px !important;
  width: 100% !important;
  margin: 0 0 8px !important;
}

.portal-shell .calendar-weekdays span {
  display: block !important;
  min-width: 0 !important;
  text-align: center !important;
}

.portal-shell .datas-strip {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 6px !important;
  width: 100% !important;
}

@media (max-width: 520px) {
  .portal-shell .calendar-toolbar {
    grid-template-columns: 38px minmax(0, 1fr) 38px !important;
    gap: 8px !important;
    padding: 10px !important;
  }

  .portal-shell .calendar-nav {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
  }

  .portal-shell .calendar-title strong {
    font-size: 15px !important;
  }

  .portal-shell .calendar-weekdays {
    font-size: 10px !important;
    letter-spacing: 0 !important;
  }

  .portal-shell .data-chip {
    min-height: 64px !important;
    padding: 7px 2px !important;
  }

  .portal-shell .data-chip strong {
    font-size: 22px !important;
  }
}

/* Skill front-end: landing premium do portal */
.portal-shell .portal-landing {
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(120deg, #070707 0%, #11100d 42%, #241f17 100%);
}

.portal-shell .portal-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0) 0 44%, rgba(248, 239, 215, .86) 44.2% 64%, rgba(255, 255, 255, .12) 64.2% 100%),
    linear-gradient(180deg, rgba(200, 162, 74, .16), rgba(200, 162, 74, 0) 48%);
  opacity: .5;
  transform: translateX(4%);
  animation: landingPlaneDrift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.portal-shell .portal-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px),
    radial-gradient(ellipse at 18% 86%, rgba(200, 162, 74, .26), transparent 34%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .55), transparent 68%);
  opacity: .42;
  pointer-events: none;
}

.portal-shell .landing-photo {
  filter: saturate(.96) contrast(1.08);
}

.portal-shell .landing-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, .74), rgba(14, 12, 9, .36) 42%, rgba(245, 238, 222, .05) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .76));
}

.portal-shell .landing-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 4px);
  opacity: .16;
  mix-blend-mode: soft-light;
}

.portal-shell .landing-veil {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, .24), rgba(8, 8, 8, .08) 40%, rgba(8, 8, 8, .78)),
    linear-gradient(90deg, rgba(0, 0, 0, .46), rgba(0, 0, 0, .08) 56%, rgba(248, 239, 215, .38));
}

.portal-shell .landing-nav {
  position: relative;
  z-index: 3;
}

.portal-shell .nav-logo,
.portal-shell .nav-contact {
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}

.portal-shell .nav-logo:hover,
.portal-shell .nav-contact:hover {
  transform: translateY(-2px);
}

.portal-shell .nav-contact {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 18px 46px rgba(0, 0, 0, .16);
}

.portal-shell .landing-hero {
  z-index: 2;
}

.portal-shell .landing-center {
  animation: landingCopyIn .82s var(--ease) .18s both;
}

.portal-shell .landing-badge {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 16px 42px rgba(0, 0, 0, .18);
}

.portal-shell .landing-title {
  max-width: 760px;
  font-size: 88px;
  line-height: .88;
}

.portal-shell .landing-title .title-line-1 {
  letter-spacing: 0;
}

.portal-shell .landing-title .title-line-2 {
  padding-top: 8px;
}

.portal-shell .landing-desc {
  margin-top: 26px;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  line-height: 1.72;
}

.portal-shell .landing-cta {
  margin-top: 34px;
}

.portal-shell .landing-cta .portal-btn {
  position: relative;
  min-width: 194px;
  overflow: hidden;
}

.portal-shell .landing-cta .portal-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: translateX(-120%);
  transition: transform .72s var(--ease);
}

.portal-shell .landing-cta .portal-btn:hover::before {
  transform: translateX(120%);
}

.portal-shell .landing-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.portal-shell .landing-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.portal-shell .landing-proof strong {
  color: #f1d891;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.portal-shell .landing-agenda-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(241, 216, 145, .38);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .055)),
    rgba(12, 11, 10, .48);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .16);
}

.portal-shell .landing-agenda-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(241, 216, 145, .18), transparent 34%, rgba(255, 255, 255, .08));
  opacity: .86;
  pointer-events: none;
}

.portal-shell .landing-agenda-card > * {
  position: relative;
  z-index: 1;
}

.portal-shell .agenda-card-date strong {
  letter-spacing: 0;
}

.portal-shell .agenda-card-status {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.portal-shell .landing-bottom {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, .76), rgba(24, 21, 16, .52), rgba(9, 9, 9, .62));
}

.portal-shell .landing-features {
  max-width: 1180px;
  margin-inline: auto;
}

.portal-shell .feat {
  border-radius: 8px;
  transition: transform .26s var(--ease), background .26s var(--ease);
}

.portal-shell .feat:hover {
  transform: translateY(-3px);
}

@keyframes landingPlaneDrift {
  from { transform: translateX(4%) skewX(-1deg); opacity: .44; }
  to { transform: translateX(1%) skewX(1deg); opacity: .58; }
}

@keyframes landingCopyIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .portal-shell .landing-title {
    font-size: 72px;
  }
}

@media (max-width: 900px) {
  .portal-shell .portal-landing::before {
    background:
      linear-gradient(180deg, transparent 0 56%, rgba(248, 239, 215, .18) 100%),
      linear-gradient(120deg, rgba(200, 162, 74, .16), transparent 54%);
    transform: none;
    animation: none;
  }

  .portal-shell .portal-landing::after {
    mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, .42) 34%, transparent);
  }

  .portal-shell .landing-hero {
    min-height: 72svh;
  }

  .portal-shell .landing-title {
    font-size: 58px;
  }

  .portal-shell .landing-desc {
    max-width: 620px;
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .portal-shell .nav-contact {
    min-height: 40px;
    padding-inline: 12px;
  }

  .portal-shell .landing-hero {
    padding-top: 20vh;
  }

  .portal-shell .landing-title {
    font-size: 42px;
    line-height: .94;
  }

  .portal-shell .landing-desc {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.58;
  }

  .portal-shell .landing-proof {
    gap: 8px;
  }

  .portal-shell .landing-proof span {
    flex: 1 1 calc(50% - 8px);
    min-width: 136px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portal-shell .portal-landing::before,
  .portal-shell .landing-center,
  .portal-shell .landing-photo,
  .portal-shell .landing-agenda-card {
    animation: none !important;
  }

  .portal-shell .landing-cta .portal-btn::before {
    display: none;
  }
}

/* Refacao premium da LP do portal */
.portal-shell .portal-landing {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(135deg, #050505 0%, #11100c 48%, #ebe3d1 100%);
}

.portal-shell .landing-photo {
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, .88) 0%, rgba(7, 7, 7, .56) 38%, rgba(18, 15, 10, .2) 68%, rgba(244, 238, 225, .5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .78)),
    url('../uploads/portal-bg.webp') center / cover no-repeat,
    url('../uploads/portal-bg.jpg') center / cover no-repeat,
    #111;
  transform: scale(1.015);
  filter: saturate(.9) contrast(1.08);
  animation: landingPhotoIn 1.15s var(--ease) both, landingPhotoBreath 12s ease-in-out 1.15s infinite alternate;
}

.portal-shell .landing-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(0, 0, 0, .32) 0 45%, rgba(248, 239, 215, .48) 45.2% 62%, rgba(255, 255, 255, .07) 62.2% 100%);
  opacity: .8;
}

.portal-shell .landing-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .026) 0 1px, transparent 1px 5px),
    linear-gradient(90deg, rgba(200, 162, 74, .18), transparent 38%, rgba(255, 255, 255, .12));
  opacity: .28;
  mix-blend-mode: soft-light;
}

.portal-shell .landing-veil {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, .08), rgba(4, 4, 4, .28) 55%, rgba(4, 4, 4, .82)),
    radial-gradient(ellipse at 14% 78%, rgba(200, 162, 74, .32), transparent 42%);
  pointer-events: none;
}

.portal-shell .portal-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .62), transparent 70%);
  opacity: .42;
  animation: landingGridMove 18s linear infinite;
}

.portal-shell .portal-landing::after {
  content: "";
  position: absolute;
  inset: auto -10% 0 -10%;
  z-index: -2;
  height: 42%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(31, 26, 18, .58), rgba(245, 238, 225, .18));
  filter: blur(18px);
  opacity: .76;
  transform: skewY(-3deg) translateY(20%);
  pointer-events: none;
}

.portal-shell .landing-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 30px clamp(18px, 5vw, 76px);
}

.portal-shell .nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(10, 10, 9, .34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 22px 58px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.portal-shell .nav-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(145deg, #f3d985, #9d762e);
  color: #080807;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
}

.portal-shell .nav-name-group {
  display: grid;
  min-width: 0;
}

.portal-shell .nav-name {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .01em;
}

.portal-shell .nav-sub {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.portal-shell .nav-contact {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(241, 216, 145, .42);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 18px 44px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.portal-shell .nav-contact-dot {
  background: #65d78f;
  box-shadow: 0 0 0 6px rgba(101, 215, 143, .14);
}

.portal-shell .landing-hero {
  position: relative;
  z-index: 3;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(360px, 500px);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 7vh clamp(20px, 6vw, 86px) 9vh;
}

.portal-shell .landing-center {
  display: grid;
  justify-items: start;
  max-width: 760px;
  padding: 0;
  text-align: left;
  animation: landingCopyIn .9s var(--ease) .12s both;
}

.portal-shell .landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(241, 216, 145, .42);
  border-radius: 999px;
  background: rgba(8, 8, 7, .46);
  color: #f1d891;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 18px 44px rgba(0, 0, 0, .18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.portal-shell .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f1d891;
  box-shadow: 0 0 0 6px rgba(241, 216, 145, .12);
}

.portal-shell .landing-title {
  display: grid;
  gap: 8px;
  max-width: 800px;
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(56px, 7.8vw, 112px);
  line-height: .84;
  letter-spacing: 0;
  text-shadow: 0 28px 86px rgba(0, 0, 0, .5);
}

.portal-shell .landing-title em {
  color: #f1d891;
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 18px 56px rgba(200, 162, 74, .2);
}

.portal-shell .landing-desc {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.72;
}

.portal-shell .landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.portal-shell .landing-cta .portal-btn {
  min-height: 58px;
  min-width: 198px;
  border-radius: 10px;
}

.portal-shell .landing-cta .portal-btn:hover {
  transform: translateY(-3px);
}

.portal-shell .landing-whatsapp {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  backdrop-filter: blur(18px);
}

.portal-shell .landing-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 610px);
  margin-top: 26px;
}

.portal-shell .landing-proof span {
  display: grid;
  gap: 4px;
  min-height: 84px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
  color: rgba(255, 255, 255, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13), 0 18px 50px rgba(0, 0, 0, .18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(20px);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}

.portal-shell .landing-proof span:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 216, 145, .42);
  background: linear-gradient(145deg, rgba(255, 255, 255, .17), rgba(255, 255, 255, .06));
}

.portal-shell .landing-proof strong {
  color: #f1d891;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: .95;
  letter-spacing: 0;
  text-transform: none;
}

.portal-shell .landing-experience {
  position: relative;
  width: min(100%, 500px);
  justify-self: end;
  padding: 22px;
  border: 1px solid rgba(241, 216, 145, .3);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .06)),
    rgba(8, 8, 7, .38);
  color: #fff;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(26px);
  animation: landingPanelIn .82s var(--ease) .34s both, landingPanelFloat 7s ease-in-out 1.2s infinite alternate;
}

.portal-shell .landing-experience::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  pointer-events: none;
}

.portal-shell .experience-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 2px 18px;
}

.portal-shell .experience-label {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.portal-shell .experience-time {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(101, 215, 143, .24);
  border-radius: 999px;
  background: rgba(101, 215, 143, .12);
  color: #9bf0bd;
  font-size: 12px;
  font-weight: 900;
}

.portal-shell .experience-route {
  position: relative;
  display: grid;
  gap: 10px;
}

.portal-shell .experience-route::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(241, 216, 145, .62), rgba(255, 255, 255, .12));
}

.portal-shell .route-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}

.portal-shell .route-step:hover {
  transform: translateX(-4px);
  border-color: rgba(241, 216, 145, .34);
  background: rgba(255, 255, 255, .1);
}

.portal-shell .route-step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(241, 216, 145, .32);
  border-radius: 8px;
  background: rgba(0, 0, 0, .22);
  color: #f1d891;
  font-size: 12px;
  font-weight: 900;
}

.portal-shell .route-step strong,
.portal-shell .route-step small {
  grid-column: 2;
}

.portal-shell .route-step strong {
  color: #fff;
  font-size: 16px;
}

.portal-shell .route-step small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 700;
}

.portal-shell .route-step.is-current {
  border-color: rgba(241, 216, 145, .46);
  background: linear-gradient(135deg, rgba(241, 216, 145, .18), rgba(255, 255, 255, .06));
}

.portal-shell .experience-summary {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  margin-top: 14px;
}

.portal-shell .experience-summary div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(0, 0, 0, .18);
}

.portal-shell .experience-summary span {
  display: block;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portal-shell .experience-summary strong {
  display: block;
  margin-top: 6px;
  color: #f1d891;
  font-size: 20px;
  line-height: 1.1;
}

.portal-shell .experience-summary div:first-child strong {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
}

.portal-shell .experience-confirm {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(101, 215, 143, .2);
  border-radius: 10px;
  background: rgba(101, 215, 143, .1);
  color: rgba(232, 255, 240, .9);
  font-size: 13px;
  font-weight: 800;
}

.portal-shell .confirm-pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #65d78f;
  box-shadow: 0 0 0 0 rgba(101, 215, 143, .35);
  animation: confirmPulse 1.8s ease-out infinite;
}

.portal-shell .landing-bottom {
  position: relative;
  z-index: 4;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 76px) 30px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.portal-shell .landing-features {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(8, 8, 7, .42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 24px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(22px);
}

.portal-shell .feat {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 0 18px;
  border-radius: 10px;
  color: rgba(255, 255, 255, .82);
}

.portal-shell .feat span {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 900;
}

.portal-shell .feat-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(241, 216, 145, .34);
  background: rgba(241, 216, 145, .1);
  color: #f1d891;
}

.portal-shell .feat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .12);
}

@keyframes landingPhotoBreath {
  from { transform: scale(1.015); }
  to { transform: scale(1.045) translateX(-.5%); }
}

@keyframes landingGridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 88px 88px, 88px 88px; }
}

@keyframes landingPanelIn {
  from { opacity: 0; transform: translateY(28px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes landingPanelFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

@keyframes confirmPulse {
  0% { box-shadow: 0 0 0 0 rgba(101, 215, 143, .32); }
  80%, 100% { box-shadow: 0 0 0 12px rgba(101, 215, 143, 0); }
}

@media (max-width: 1180px) {
  .portal-shell .landing-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 34px;
  }
}

@media (max-width: 960px) {
  .portal-shell .portal-landing {
    min-height: 100svh;
  }

  .portal-shell .landing-photo {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, .3), rgba(5, 5, 5, .7) 58%, rgba(5, 5, 5, .92)),
      url('../uploads/portal-bg-mobile.webp') center top / cover no-repeat,
      url('../uploads/portal-bg.webp') center top / cover no-repeat,
      #111;
  }

  .portal-shell .landing-photo::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .62));
  }

  .portal-shell .landing-hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: auto;
    padding-top: 15vh;
    padding-bottom: 34px;
  }

  .portal-shell .landing-experience {
    display: none;
  }

  .portal-shell .landing-proof {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .portal-shell .landing-nav {
    padding: 18px;
  }

  .portal-shell .nav-logo {
    max-width: calc(100% - 132px);
  }

  .portal-shell .nav-sub {
    display: none;
  }

  .portal-shell .landing-hero {
    padding-inline: 20px;
    padding-top: 20vh;
  }

  .portal-shell .landing-title {
    font-size: clamp(44px, 13vw, 62px);
    line-height: .9;
  }

  .portal-shell .landing-desc {
    font-size: 16px;
    line-height: 1.58;
  }

  .portal-shell .landing-cta,
  .portal-shell .landing-cta .portal-btn {
    width: 100%;
  }

  .portal-shell .landing-proof {
    grid-template-columns: 1fr;
  }

  .portal-shell .landing-proof span {
    min-height: 66px;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .portal-shell .landing-bottom {
    padding: 0 18px 18px;
  }

  .portal-shell .landing-features {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .portal-shell .feat-divider {
    display: none;
  }

  .portal-shell .feat {
    min-height: 56px;
  }
}

@media (max-width: 420px) {
  .portal-shell .nav-contact {
    font-size: 0;
    width: 46px;
    min-width: 46px;
    padding: 0;
    justify-content: center;
  }

  .portal-shell .nav-contact-dot {
    margin: 0;
  }

  .portal-shell .landing-hero {
    padding-top: 18vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portal-shell .landing-photo,
  .portal-shell .portal-landing::before,
  .portal-shell .landing-center,
  .portal-shell .landing-experience,
  .portal-shell .confirm-pulse {
    animation: none !important;
  }
}

/* ============================================================
   Refinamento da Landing
   Menos "template animado", mais composicao premium
   ============================================================ */

:root {
  --portal-hero-image:
    radial-gradient(circle at 30% 20%, rgba(214, 186, 122, 0.18), transparent 24%),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(135deg, rgba(28, 24, 21, 0.62), rgba(28, 24, 21, 0.18)),
    linear-gradient(120deg, #6e6258 0%, #b79f8c 48%, #ece2d6 100%);
}

.portal-shell .portal-landing {
  background:
    radial-gradient(circle at top left, rgba(214, 186, 122, 0.10), transparent 28%),
    linear-gradient(180deg, #f7f2eb 0%, #fbf8f3 100%);
}

.portal-shell .portal-landing::before,
.portal-shell .portal-landing::after {
  pointer-events: none;
}

.portal-shell .portal-landing::before {
  inset: 24px 24px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 186, 122, 0.18), transparent 68%);
  filter: blur(18px);
  opacity: 0.8;
}

.portal-shell .portal-landing::after {
  inset: auto auto 70px 28px;
  width: 220px;
  height: 220px;
  border-radius: 38px;
  border: 1px solid rgba(121, 102, 72, 0.08);
  transform: rotate(-8deg);
  opacity: 0.7;
}

.portal-shell .landing-photo {
  position: absolute;
  inset: 94px 38px 118px auto;
  width: min(44vw, 640px);
  border-radius: 32px;
  background-image: var(--portal-hero-image);
  background-size: cover;
  background-position: center;
  box-shadow:
    0 26px 60px rgba(34, 26, 19, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.portal-shell .landing-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 14, 11, 0.06), rgba(17, 14, 11, 0.42)),
    linear-gradient(90deg, rgba(17, 14, 11, 0.18), transparent 42%);
}

.portal-shell .landing-photo::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.42), rgba(255,255,255,0));
}

.portal-shell .landing-veil,
.portal-shell .landing-shapes,
.portal-shell .shape-grid {
  display: none !important;
}

.portal-shell .landing-nav {
  position: relative;
  z-index: 3;
  padding: 28px 34px 0;
}

.portal-shell .nav-contact {
  min-height: 44px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
}

.portal-shell .landing-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 360px);
  align-items: center;
  gap: 34px;
  min-height: calc(100vh - 240px);
  padding: 42px 34px 24px;
}

.portal-shell .landing-center {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 0;
  max-width: 640px;
}

.portal-shell .landing-badge {
  background: rgba(255,255,255,0.76);
  border-color: rgba(175, 139, 69, 0.18);
  color: #7f6224;
}

.portal-shell .landing-title {
  max-width: 520px;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.portal-shell .title-line-2 {
  color: #1e1815;
}

.portal-shell .landing-desc {
  max-width: 470px;
  font-size: 17px;
  line-height: 1.75;
  color: #6f665d;
  margin-bottom: 28px;
}

.portal-shell .landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.portal-shell .landing-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portal-shell .landing-proof span {
  min-width: 132px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(95, 78, 52, 0.10);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(30, 24, 21, 0.06);
}

.portal-shell .landing-proof strong {
  display: block;
  margin-bottom: 4px;
  color: #1e1815;
  font-size: 18px;
}

.portal-shell .landing-experience {
  position: relative;
  z-index: 3;
  align-self: end;
  margin-bottom: 24px;
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(111, 91, 60, 0.10);
  box-shadow: 0 22px 48px rgba(31, 24, 18, 0.10);
  backdrop-filter: blur(16px);
}

.portal-shell .landing-experience::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.36), rgba(255,255,255,0));
  pointer-events: none;
}

.portal-shell .experience-route {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.portal-shell .route-step {
  padding: 14px 14px 14px 16px;
  border-radius: 18px;
  background: #fbf8f3;
  border: 1px solid rgba(111, 91, 60, 0.08);
}

.portal-shell .route-step.is-current {
  background: linear-gradient(135deg, rgba(214, 186, 122, 0.18), rgba(255, 255, 255, 0.96));
  border-color: rgba(175, 139, 69, 0.24);
}

.portal-shell .experience-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.portal-shell .experience-summary > div {
  padding: 14px;
  border-radius: 18px;
  background: #f7f1e8;
}

.portal-shell .experience-confirm {
  margin-top: 14px;
  min-height: 54px;
  border-radius: 18px;
  background: #181513;
  color: #f7f2eb;
}

.portal-shell .landing-bottom {
  position: relative;
  z-index: 2;
  border-top: none;
  padding: 0 34px 34px;
}

.portal-shell .landing-features {
  justify-content: flex-start;
  gap: 0;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(95, 78, 52, 0.10);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(30, 24, 21, 0.06);
  backdrop-filter: blur(10px);
}

.portal-shell .feat {
  padding: 8px 22px;
}

.portal-shell .feat:hover {
  background: transparent;
}

.portal-shell .feat-divider {
  opacity: 0.7;
}

.portal-shell .portal-splash {
  background:
    linear-gradient(180deg, rgba(251, 246, 240, 0.98), rgba(246, 238, 228, 0.98));
}

@media (max-width: 1120px) {
  .portal-shell .landing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 24px;
  }

  .portal-shell .landing-photo {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 320px;
    order: 2;
  }

  .portal-shell .landing-center {
    max-width: 100%;
  }

  .portal-shell .landing-experience {
    align-self: auto;
    margin-bottom: 0;
  }
}

@media (max-width: 720px) {
  .portal-shell .landing-nav {
    padding: 18px 18px 0;
    gap: 14px;
    flex-wrap: wrap;
  }

  .portal-shell .landing-hero {
    gap: 20px;
    padding: 24px 18px 18px;
  }

  .portal-shell .landing-title {
    font-size: clamp(38px, 13vw, 58px);
  }

  .portal-shell .landing-desc {
    font-size: 15px;
  }

  .portal-shell .landing-proof {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .portal-shell .landing-proof span {
    width: 100%;
    min-width: 0;
  }

  .portal-shell .landing-bottom {
    padding: 0 18px 24px;
  }

  .portal-shell .landing-features {
    flex-direction: column;
    align-items: stretch;
  }

  .portal-shell .feat {
    padding: 10px 4px;
  }

  .portal-shell .feat-divider {
    width: 100%;
    height: 1px;
  }
}

/* Portal landing final polish: sem foto, menos glow, contraste mais firme */
.portal-shell .portal-landing {
  background:
    radial-gradient(circle at 14% 18%, rgba(214, 186, 122, 0.10), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(90, 72, 51, 0.12), transparent 22%),
    linear-gradient(135deg, #f7f1e7 0%, #f3ede3 48%, #ede4d8 100%);
}

.portal-shell .portal-landing::before {
  inset: 42px auto auto 8%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(214, 186, 122, 0.12), transparent 70%);
  filter: blur(12px);
  opacity: 0.48;
}

.portal-shell .portal-landing::after {
  inset: auto 6% 56px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(121, 102, 72, 0.07);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 72%);
  transform: none;
  opacity: 0.5;
}

.portal-shell .landing-photo {
  inset: 100px 46px 104px auto;
  width: min(42vw, 620px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 22%, rgba(214, 186, 122, 0.16), transparent 20%),
    linear-gradient(145deg, #5c4c3e 0%, #43362e 36%, #2e2520 68%, #201a17 100%);
  box-shadow:
    0 28px 56px rgba(27, 21, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.portal-shell .landing-photo::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(16, 12, 10, 0.24)),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.12), transparent 22%);
}

.portal-shell .landing-photo::after {
  inset: auto 26px 26px 26px;
  height: 120px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(214, 186, 122, 0.14), rgba(255, 255, 255, 0.02));
  opacity: 0.9;
}

.portal-shell .landing-nav {
  padding: 30px 36px 0;
}

.portal-shell .nav-logo {
  background: rgba(71, 58, 47, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 36px rgba(35, 28, 23, 0.14);
  backdrop-filter: blur(12px);
}

.portal-shell .nav-contact {
  color: #3e3128 !important;
  background: rgba(255, 252, 247, 0.96);
  border: 1px solid rgba(188, 156, 98, 0.24);
  box-shadow: 0 10px 28px rgba(73, 58, 41, 0.08);
  backdrop-filter: blur(10px);
}

.portal-shell .nav-contact:hover {
  color: #241c17 !important;
  background: rgba(255, 252, 247, 1);
  box-shadow: 0 16px 32px rgba(73, 58, 41, 0.12);
}

.portal-shell .nav-contact:visited,
.portal-shell .nav-contact span,
.portal-shell .nav-contact svg {
  color: inherit !important;
}

.portal-shell .nav-contact-dot {
  background: #7fd59a;
  box-shadow: 0 0 0 6px rgba(127, 213, 154, 0.14);
}

.portal-shell .landing-title {
  max-width: 560px;
  color: #241c17;
  text-shadow: none;
}

.portal-shell .landing-title .title-line-1 {
  color: #fdfbf7;
}

.portal-shell .landing-title .title-line-2,
.portal-shell .landing-title em {
  color: #e6c56b;
}

.portal-shell .landing-desc {
  max-width: 510px;
  color: #5f554c;
}

.portal-shell .landing-cta .portal-btn-secondary {
  color: #5b4b3d;
  border-color: rgba(120, 98, 67, 0.14);
  background: rgba(255, 255, 255, 0.54);
}

.portal-shell .landing-cta .portal-btn-secondary:hover {
  color: #2b211b;
  background: rgba(255, 255, 255, 0.84);
}

.portal-shell .landing-proof span {
  background: rgba(255, 251, 246, 0.9);
  border-color: rgba(95, 78, 52, 0.08);
  box-shadow: 0 14px 30px rgba(30, 24, 21, 0.06);
}

.portal-shell .landing-experience {
  background: rgba(255, 250, 244, 0.90);
  border: 1px solid rgba(111, 91, 60, 0.08);
  box-shadow: 0 24px 46px rgba(30, 24, 21, 0.12);
}

.portal-shell .route-step,
.portal-shell .experience-summary > div {
  background: rgba(255, 255, 255, 0.74);
}

.portal-shell .experience-confirm {
  background: #171412;
}

@media (max-width: 1120px) {
  .portal-shell .landing-photo {
    inset: auto;
    width: 100%;
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .portal-shell .portal-landing {
    background:
      radial-gradient(circle at 18% 12%, rgba(214, 186, 122, 0.10), transparent 24%),
      linear-gradient(180deg, #f7f1e7 0%, #f0e6d9 100%);
  }

  .portal-shell .portal-landing::before,
  .portal-shell .portal-landing::after {
    display: none;
  }

  .portal-shell .landing-photo {
    min-height: 260px;
    border-radius: 28px;
  }

  .portal-shell .landing-title .title-line-1 {
    color: #2d241e;
  }
}

/* Fundo limpo para remover faixas e artefatos visuais */
.portal-shell .portal-landing {
  background: linear-gradient(135deg, #f6f0e7 0%, #f2ebdf 52%, #ece2d4 100%) !important;
  color: #2f241d !important;
}

.portal-shell .portal-landing::before,
.portal-shell .portal-landing::after {
  content: none !important;
  background: none !important;
  filter: none !important;
  mask-image: none !important;
  opacity: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.portal-shell .landing-photo {
  background: linear-gradient(145deg, #5f5144 0%, #43372f 40%, #2d2520 72%, #1d1815 100%) !important;
}

.portal-shell .landing-photo::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(17, 13, 11, 0.18)),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.08), transparent 18%) !important;
}

.portal-shell .landing-photo::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)) !important;
}

.portal-shell .landing-badge {
  background: rgba(255, 252, 247, 0.96) !important;
  color: #8b6728 !important;
  border-color: rgba(188, 156, 98, 0.20) !important;
  box-shadow: 0 10px 24px rgba(63, 48, 31, 0.08) !important;
}

.portal-shell .landing-center {
  position: relative !important;
  z-index: 2 !important;
  max-width: 640px !important;
  padding: 8px 8px 8px 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.portal-shell .nav-name {
  color: #fffaf3 !important;
}

.portal-shell .nav-sub {
  color: rgba(255, 248, 236, 0.82) !important;
}

.portal-shell .landing-title,
.portal-shell .landing-title .title-line,
.portal-shell .landing-title .title-line-1,
.portal-shell .landing-title .title-line-2,
.portal-shell .landing-title span {
  color: #332821 !important;
  text-shadow: none !important;
  opacity: 1 !important;
  filter: none !important;
}

.portal-shell .landing-title .title-line-2,
.portal-shell .landing-title em {
  color: #d0a944 !important;
}

.portal-shell .landing-desc {
  color: #5f534a !important;
  opacity: 1 !important;
  filter: none !important;
}

.portal-shell .landing-proof span {
  color: #65574c !important;
  background: rgba(255, 251, 246, 0.94) !important;
  border: 1px solid rgba(166, 137, 84, 0.10) !important;
  box-shadow: 0 12px 28px rgba(38, 29, 22, 0.05) !important;
}

.portal-shell .landing-proof strong {
  color: #241c17 !important;
}

.portal-shell .feat {
  color: #55483d !important;
}

.portal-shell .feat-icon {
  color: #a88437 !important;
}

.portal-shell .landing-experience {
  color: #4c4037 !important;
}

.portal-shell .experience-label,
.portal-shell .route-step small,
.portal-shell .experience-summary span {
  color: #8a7b6d !important;
}

.portal-shell .experience-time,
.portal-shell .route-step strong,
.portal-shell .experience-summary strong {
  color: #241c17 !important;
}

.portal-shell .route-step {
  border-color: rgba(173, 144, 91, 0.14) !important;
}

.portal-shell .route-step span {
  background: rgba(208, 169, 68, 0.18) !important;
  color: #a1781d !important;
}

.portal-shell .landing-title {
  font-size: clamp(48px, 6vw, 80px) !important;
  line-height: 0.96 !important;
  margin-bottom: 22px !important;
}

.portal-shell .landing-title .title-line-1 {
  color: #30251f !important;
}

.portal-shell .landing-title .title-line-2,
.portal-shell .landing-title em {
  color: #d1a648 !important;
}

.portal-shell .landing-hero {
  align-items: center !important;
  min-height: auto !important;
  padding: 28px 34px 18px !important;
}

.portal-shell .landing-bottom {
  padding: 8px 34px 30px !important;
}

.portal-shell .landing-features {
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 12px 16px !important;
  border-radius: 26px !important;
  background: rgba(255, 248, 239, 0.72) !important;
  border: 1px solid rgba(166, 137, 84, 0.08) !important;
  box-shadow: 0 18px 40px rgba(38, 29, 22, 0.05) !important;
  backdrop-filter: blur(8px) !important;
}

.portal-shell .feat {
  min-height: 62px !important;
}

.portal-shell .feat span {
  color: #5a4d42 !important;
}

.portal-shell .feat-divider {
  background: rgba(166, 137, 84, 0.14) !important;
}

@media (max-width: 720px) {
  .portal-shell .landing-center {
    padding: 0 !important;
  }
}

/* Contencao final da hero para evitar sobreposicao entre painel direito e barra inferior */
.portal-shell .landing-photo {
  inset: 86px 42px 190px auto !important;
  width: min(39vw, 580px) !important;
}

.portal-shell .landing-experience {
  width: min(100%, 360px) !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.portal-shell .experience-summary {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 12px !important;
}

.portal-shell .experience-summary > div {
  min-width: 0 !important;
  overflow: hidden !important;
}

.portal-shell .experience-summary strong,
.portal-shell .experience-summary span,
.portal-shell .experience-confirm {
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

.portal-shell .landing-bottom {
  width: min(100%, 760px) !important;
  margin: 0 auto 0 34px !important;
  padding: 10px 0 32px !important;
}

.portal-shell .landing-features {
  width: 100% !important;
}

@media (max-width: 1120px) {
  .portal-shell .landing-photo {
    inset: auto !important;
    width: 100% !important;
    min-height: 300px !important;
  }

  .portal-shell .landing-bottom {
    width: auto !important;
    margin: 0 !important;
    padding: 10px 18px 28px !important;
  }
}
