/* =========================================================
   DR. CONDOMÍNIO RESPONDE — LANDING PAGE
   ========================================================= */

:root{
  --navy:#06365f;
  --navy-2:#0a4e7c;
  --blue:#0f6fa8;
  --teal:#0aa7a2;
  --teal-2:#08b6ad;
  --cyan:#4ac4ee;
  --ink:#0a3158;
  --text:#37566f;
  --muted:#6f8799;
  --line:#dceaf2;
  --ice:#f3f9fc;
  --white:#fff;
  --shadow:0 24px 60px rgba(5,49,86,.12);
  --shadow-sm:0 12px 32px rgba(5,49,86,.09);
  --radius:24px;
  --radius-sm:16px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-padding-top:92px;
}

body{
  margin:0;
  color:var(--text);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:#fff;
  line-height:1.55;
  overflow-x:hidden;
}

a{color:inherit}
img,svg{display:block;max-width:100%}
button,input,textarea,select{font:inherit}
::selection{background:#bdeff0;color:var(--navy)}

.container{
  width:min(1180px,calc(100% - 40px));
  margin-inline:auto;
}

.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.skip-link{
  position:fixed;
  left:16px;
  top:-80px;
  z-index:999;
  padding:10px 14px;
  border-radius:10px;
  background:#fff;
  color:var(--navy);
  box-shadow:var(--shadow-sm);
}
.skip-link:focus{top:16px}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(6,54,95,.08);
  backdrop-filter:blur(14px);
}

.header-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:9px;
  text-decoration:none;
  color:var(--navy);
  flex:0 0 auto;
}

.brand-mark{
  display:flex;
  align-items:center;
  gap:4px;
}

.brand-dr{
  font-size:26px;
  line-height:1;
  font-weight:900;
  letter-spacing:-1.5px;
}

.brand-bubble{
  width:35px;height:29px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:3px solid var(--teal);
  border-radius:50%;
  color:var(--teal);
  font-size:11px;
  letter-spacing:1px;
  position:relative;
}

.brand-bubble:after{
  content:"";
  position:absolute;
  width:8px;height:8px;
  right:2px;bottom:-6px;
  border-left:3px solid var(--teal);
  transform:rotate(28deg);
}

.brand-name{
  display:flex;
  flex-direction:column;
  line-height:.94;
  font-size:16px;
  letter-spacing:-.3px;
}
.brand-name strong{font-weight:900}
.brand-name span{color:var(--teal);font-weight:900}

.main-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  flex:1;
}

.main-nav a{
  text-decoration:none;
  color:var(--ink);
  font-size:14px;
  font-weight:700;
  transition:.2s;
}

.main-nav a:hover{color:var(--teal)}

.header-actions{
  display:flex;
  gap:10px;
  flex:0 0 auto;
}

.nav-toggle{
  display:none;
  margin-left:auto;
  border:0;
  background:transparent;
  padding:8px;
}
.nav-toggle span:not(.sr-only){
  display:block;
  width:24px;height:2px;
  background:var(--navy);
  margin:5px 0;
}

/* Buttons */
.btn{
  min-height:43px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:10px 18px;
  border-radius:12px;
  text-decoration:none;
  border:1px solid transparent;
  font-weight:800;
  font-size:14px;
  line-height:1.1;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn svg{
  width:19px;height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--teal),#07978f);
  box-shadow:0 12px 24px rgba(10,167,162,.2);
}

.btn-primary:hover{box-shadow:0 16px 28px rgba(10,167,162,.28)}

.btn-secondary{
  color:var(--navy);
  border-color:#bdd2df;
  background:#fff;
}

.btn-ghost{
  color:var(--navy);
  border-color:#b7cada;
  background:#fff;
}

.btn-lg{
  min-height:54px;
  padding:14px 22px;
  border-radius:14px;
  font-size:15px;
}

.btn-white{
  background:#fff;
  color:var(--navy);
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.btn-outline-light{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.55);
}

/* Hero */
.hero{
  min-height:650px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 83% 28%,rgba(87,201,232,.18),transparent 30%),
    linear-gradient(120deg,#fff 10%,#f4fbff 52%,#e8f6fb 100%);
}

.hero:before{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:120px;
  background:linear-gradient(to top,rgba(255,255,255,.92),transparent);
  pointer-events:none;
}

.hero-grid{
  min-height:650px;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:52px;
  padding-block:58px 72px;
  position:relative;
  z-index:2;
}

.eyebrow,
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--teal);
  border:1px solid rgba(10,167,162,.45);
  background:rgba(255,255,255,.7);
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.055em;
}

.eyebrow svg{
  width:13px;height:13px;
  fill:var(--teal);
}

.hero h1{
  margin:16px 0 16px;
  max-width:690px;
  color:var(--navy);
  font-size:clamp(42px,5.1vw,68px);
  line-height:.99;
  letter-spacing:-3px;
}

.hero h1 span{
  display:block;
  color:var(--teal);
}

.hero-lead{
  max-width:650px;
  margin:0;
  font-size:18px;
  color:#35566f;
}

.hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:12px 22px;
  margin-top:22px;
}

.hero-proof span{
  display:inline-flex;
  gap:7px;
  align-items:center;
  color:var(--ink);
  font-size:13px;
  font-weight:700;
}

.hero-proof i{
  width:18px;height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--teal);
  color:#fff;
  font-style:normal;
  font-size:11px;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:28px;
  flex-wrap:wrap;
}

.trust-inline{
  display:flex;
  align-items:center;
  gap:8px;
  margin:20px 0 0;
  font-size:12px;
  color:#5d768a;
}

.trust-inline svg{
  width:22px;height:22px;
  flex:0 0 auto;
  fill:none;
  stroke:var(--navy);
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* Hero visual */
.hero-visual{
  min-height:520px;
  position:relative;
}

.phone-wrap{
  position:absolute;
  left:14%;
  top:6%;
  transform:rotate(3deg);
  filter:drop-shadow(0 28px 24px rgba(5,54,95,.22));
}

.phone{
  width:250px;
  height:500px;
  background:#082f50;
  border:8px solid #072c4a;
  border-radius:38px;
  padding:7px;
  box-shadow:inset 0 0 0 2px rgba(255,255,255,.3);
}

.phone-screen{
  height:100%;
  border-radius:27px;
  overflow:hidden;
  background:linear-gradient(180deg,#0e709f,#eaf7fb 39%,#f8fcfe);
  padding:23px 14px 14px;
}

.phone-notch{
  position:absolute;
  top:12px;left:50%;
  transform:translateX(-50%);
  width:92px;height:19px;
  border-radius:0 0 15px 15px;
  background:#072c4a;
  z-index:4;
}

.phone-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#fff;
  font-size:10px;
  font-weight:800;
  margin-bottom:18px;
}

.phone-top i{
  width:13px;height:13px;
  border:1px solid #fff;
  border-radius:50%;
}

.avatar-orb{
  width:72px;height:72px;
  margin:0 auto 16px;
  border-radius:50%;
  border:4px solid rgba(255,255,255,.8);
  background:#d9f5fc;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 7px 18px rgba(4,66,104,.17);
}

.bot{
  width:48px;height:39px;
  border-radius:15px;
  background:linear-gradient(#0d5389,#083f6e);
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.bot:before{
  content:"";
  position:absolute;
  top:-12px;left:50%;
  width:2px;height:10px;
  background:#0d5389;
}
.bot:after{
  content:"";
  position:absolute;
  top:-16px;left:calc(50% - 4px);
  width:8px;height:8px;
  border-radius:50%;
  background:var(--cyan);
}

.bot-eye{
  width:7px;height:7px;
  border-radius:50%;
  background:#65daf7;
}

.chat{
  margin:8px 0;
  padding:10px 11px;
  border-radius:13px;
  font-size:9px;
  box-shadow:0 6px 14px rgba(7,58,92,.08);
}
.chat small{display:block;font-weight:900;margin-bottom:3px}
.chat p{margin:0;line-height:1.35}
.chat-a{margin-left:27px;background:#fff;color:#244e6d}
.chat-b{margin-right:20px;background:#d9f7f4;color:#155c63}

.quick-list{
  display:grid;
  gap:6px;
  margin-top:14px;
}
.quick-list span{
  background:#fff;
  color:#315b78;
  border:1px solid #dceaf1;
  border-radius:8px;
  padding:7px 9px;
  font-size:8px;
  font-weight:700;
}

.phone-input{
  margin-top:15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 8px 8px 10px;
  border-radius:999px;
  background:#fff;
  color:#97a8b4;
  font-size:8px;
}
.phone-input b{
  width:25px;height:25px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:var(--teal);
  border-radius:50%;
  font-size:12px;
}

.floating-card{
  position:absolute;
  right:-2%;
  top:28%;
  width:285px;
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,.94);
  box-shadow:var(--shadow);
  border:1px solid rgba(70,168,203,.18);
  backdrop-filter:blur(8px);
}

.floating-card>div:nth-child(2){padding-left:58px}
.floating-card strong{display:block;color:var(--navy);font-size:15px}
.floating-card p{margin:5px 0 0;font-size:12px;color:#557087}

.floating-icon{
  position:absolute;
  width:45px;height:45px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:12px;
  font-weight:900;
  background:linear-gradient(135deg,var(--teal),var(--navy-2));
}

.floating-card ul{
  list-style:none;
  padding:0;
  margin:20px 0 0;
  display:grid;
  gap:10px;
}
.floating-card li{
  font-size:11px;
  color:#31566f;
}

/* Decorative buildings */
.hero-bg{position:absolute;inset:0;overflow:hidden;pointer-events:none}
.building{
  position:absolute;
  bottom:65px;
  width:150px;
  height:280px;
  opacity:.25;
  background:
    repeating-linear-gradient(90deg,transparent 0 18px,rgba(23,125,176,.26) 18px 30px,transparent 30px 45px),
    linear-gradient(#fff,#bfe1ef);
  clip-path:polygon(0 12%,54% 0,100% 8%,100% 100%,0 100%);
}
.building:after{
  content:"";
  position:absolute;inset:20px;
  background:repeating-linear-gradient(0deg,transparent 0 25px,rgba(255,255,255,.8) 25px 30px);
}
.b1{right:13%;height:320px}
.b2{right:1%;height:245px;width:125px}
.b3{right:34%;height:200px;width:110px}
.cloud{
  position:absolute;
  width:90px;height:22px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  box-shadow:25px -8px 0 5px rgba(255,255,255,.68),55px 0 0 rgba(255,255,255,.7);
}
.c1{right:12%;top:100px}
.c2{right:43%;top:140px;transform:scale(.7)}

/* Benefit strip */
.benefit-strip{
  position:relative;
  z-index:3;
  margin-top:-22px;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  background:#fff;
  border:1px solid #e1eef4;
  border-radius:22px;
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}

.benefit-card{
  min-height:160px;
  padding:22px 16px;
  display:flex;
  gap:12px;
  border-right:1px solid #e5eef3;
}

.benefit-card:last-child{border-right:0}
.benefit-card strong{display:block;color:var(--navy);font-size:13px;line-height:1.25}
.benefit-card p{font-size:11px;line-height:1.45;margin:7px 0 0;color:#678093}

.icon-round{
  width:44px;height:44px;
  flex:0 0 44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#0cc3b8,#078f94);
  color:#fff;
  font-weight:900;
  font-size:13px;
  box-shadow:0 8px 18px rgba(10,167,162,.2);
}
.qr-icon{font-size:27px}

/* Sections */
.section{padding:96px 0}
.section-kicker{
  background:#ecfafa;
  border:0;
  padding:7px 11px;
}

.section-kicker.light{
  color:#c7ffff;
  background:rgba(255,255,255,.12);
}

.section h2,
.section-heading h2,
.demo-section h2,
.final-cta h2{
  color:var(--navy);
  letter-spacing:-1.4px;
}

.section-copy h2{
  font-size:clamp(32px,4vw,48px);
  line-height:1.06;
  margin:14px 0 18px;
}

.section-copy p{
  margin:0 0 16px;
  font-size:17px;
}

.strong-line{
  color:var(--navy);
  font-weight:800;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:64px;
}

.pain-section{
  background:#fff;
  padding-top:110px;
}

.question-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-content:center;
  padding:36px;
  border-radius:28px;
  background:linear-gradient(145deg,#f5fbfd,#eaf7fb);
  border:1px solid #d6ebf2;
}

.question-cloud span{
  padding:13px 16px;
  border-radius:15px 15px 15px 4px;
  background:#fff;
  color:var(--navy);
  box-shadow:0 8px 20px rgba(5,49,86,.08);
  font-size:14px;
  font-weight:700;
}

.question-cloud span:nth-child(even){
  background:#e1f9f6;
  border-radius:15px 15px 4px 15px;
}

/* Workflow */
.workflow{
  background:linear-gradient(#f6fbfd,#fff);
}

.section-heading{
  max-width:760px;
}
.section-heading.centered{
  text-align:center;
  margin:0 auto 52px;
}
.section-heading.centered .section-kicker{margin:auto}
.section-heading h2{
  margin:12px 0 10px;
  font-size:clamp(32px,4vw,48px);
  line-height:1.06;
}
.section-heading p{margin:0;color:#6d8496;font-size:16px}

.steps{
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  align-items:center;
  gap:18px;
}

.step{
  position:relative;
  min-height:260px;
  padding:28px;
  border-radius:22px;
  background:#fff;
  border:1px solid #dceaf2;
  box-shadow:var(--shadow-sm);
}

.step-number{
  position:absolute;
  left:16px;top:16px;
  width:32px;height:32px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--teal);
  color:#fff;
  font-weight:900;
}

.step-icon{
  width:64px;height:64px;
  margin:22px 0 20px auto;
  border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  color:var(--navy);
  background:#e8f7fb;
  font-size:31px;
  font-weight:900;
}

.step h3{color:var(--navy);margin:0 0 8px;font-size:20px}
.step p{margin:0;font-size:14px;color:#688094}
.step-arrow{font-size:28px;color:var(--teal);font-weight:900}

/* Value */
.value-section{padding-top:20px}

.value-banner{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:44px;
  align-items:center;
  padding:34px 38px;
  border-radius:26px;
  color:#fff;
  background:linear-gradient(110deg,var(--navy),#075d88 48%,var(--teal));
  box-shadow:var(--shadow);
}

.value-banner span{
  font-size:14px;
  color:#bdeff1;
  font-weight:800;
}
.value-banner h2{
  color:#fff;
  margin:5px 0 0;
  font-size:clamp(27px,3.4vw,40px);
  line-height:1.05;
}
.value-banner p{margin:0;color:#e4f5f8}

.value-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:18px;
}
.value-card{
  padding:26px 22px;
  border-radius:20px;
  background:#fff;
  border:1px solid #dceaf2;
}
.value-icon{
  width:48px;height:48px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--teal));
  font-size:22px;font-weight:900;
}
.value-card h3{color:var(--navy);font-size:18px;line-height:1.2;margin:18px 0 8px}
.value-card p{margin:0;font-size:13px;color:#688094}

/* Audiences */
.audiences{background:#f7fbfd}

.audience-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.audience-card{
  padding:30px;
  border-radius:22px;
  background:#fff;
  border:1px solid #dceaf2;
  text-align:center;
  box-shadow:0 10px 26px rgba(6,54,95,.05);
}
.audience-card>span{
  width:64px;height:64px;
  margin:auto;
  border-radius:20px;
  display:flex;align-items:center;justify-content:center;
  background:#e4f7f6;
  color:var(--teal);
  font-size:30px;font-weight:900;
}
.audience-card h3{color:var(--navy);font-size:20px;margin:17px 0 8px}
.audience-card p{font-size:13px;color:#6b8294;margin:0}

/* Trust */
.trust-section{
  background:#fff;
}
.trust-split{gap:80px}

.source-stack{display:grid;gap:14px}

.source{
  display:grid;
  grid-template-columns:76px 1fr;
  align-items:center;
  gap:18px;
  padding:20px;
  border:1px solid #dceaf2;
  background:#f9fcfd;
  border-radius:19px;
}
.source b{
  width:64px;height:64px;
  display:flex;align-items:center;justify-content:center;
  border-radius:18px;
  background:#dff5f4;
  color:var(--teal);
  font-size:22px;
}
.source-main{
  border-color:#a7dfdd;
  background:#effbfa;
}
.source-main b{
  background:var(--teal);
  color:#fff;
}
.source-safe b{
  background:#e8f1f8;
  color:var(--navy);
}
.source strong{display:block;color:var(--navy);font-size:16px}
.source span{display:block;margin-top:4px;font-size:13px;color:#6b8395}

/* Demo */
.demo-section{
  padding:40px 0 96px;
  background:#fff;
}

.demo-card{
  min-height:330px;
  display:grid;
  grid-template-columns:1fr 330px;
  align-items:center;
  gap:50px;
  padding:46px 52px;
  border-radius:30px;
  background:
    radial-gradient(circle at 88% 20%,rgba(52,203,209,.22),transparent 28%),
    linear-gradient(115deg,#05345c,#075984 52%,#079c98);
  box-shadow:var(--shadow);
  color:#fff;
  overflow:hidden;
}

.demo-copy h2{
  margin:10px 0 14px;
  color:#fff;
  font-size:clamp(32px,4vw,48px);
  line-height:1.05;
}
.demo-copy p{font-size:16px;max-width:690px;color:#d9edf4}
.demo-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:25px}

.demo-qr{
  min-height:240px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:24px;
  border-radius:22px;
  color:var(--navy);
  background:#fff;
}

.fake-qr{
  width:150px;height:150px;
  position:relative;
  background:
    repeating-linear-gradient(90deg,#071d2d 0 7px,#fff 7px 13px),
    repeating-linear-gradient(0deg,rgba(7,29,45,.78) 0 6px,transparent 6px 12px);
  border:10px solid #fff;
  outline:3px solid var(--teal);
  margin-bottom:18px;
  overflow:hidden;
}
.fake-qr span{
  position:absolute;
  width:38px;height:38px;
  border:8px solid #071d2d;
  background:#fff;
  z-index:3;
}
.fake-qr span:nth-child(1){left:4px;top:4px}
.fake-qr span:nth-child(2){right:4px;top:4px}
.fake-qr span:nth-child(3){left:4px;bottom:4px}
.fake-qr i{
  position:absolute;
  width:13px;height:13px;
  background:#071d2d;
  z-index:2;
}
.fake-qr i:nth-of-type(1){left:68px;top:20px}
.fake-qr i:nth-of-type(2){left:85px;top:55px}
.fake-qr i:nth-of-type(3){left:54px;top:86px}
.fake-qr i:nth-of-type(4){right:25px;bottom:22px}
.fake-qr i:nth-of-type(5){right:52px;bottom:49px}
.fake-qr i:nth-of-type(6){left:90px;bottom:10px}
.fake-qr i:nth-of-type(7){left:43px;bottom:50px}
.fake-qr i:nth-of-type(8){right:15px;top:75px}

.demo-qr strong{font-size:17px}
.demo-qr small{margin-top:4px;color:#6a8294}

/* FAQ */
.faq{
  background:#f5fafc;
}
.faq-wrap{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
  align-items:start;
}
.faq .section-heading h2{font-size:42px}

.faq-list{display:grid;gap:12px}
.faq details{
  background:#fff;
  border:1px solid #dceaf2;
  border-radius:16px;
  padding:0 20px;
}
.faq summary{
  list-style:none;
  cursor:pointer;
  padding:20px 35px 20px 0;
  position:relative;
  color:var(--navy);
  font-weight:800;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary:after{
  content:"+";
  position:absolute;
  right:2px;top:16px;
  width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:#e5f7f6;
  color:var(--teal);
  font-size:20px;
}
.faq details[open] summary:after{content:"–"}
.faq details p{
  margin:0;
  padding:0 35px 20px 0;
  font-size:14px;
  color:#687f91;
}

/* Final CTA */
.final-cta{
  padding:28px 0 86px;
  background:#f5fafc;
}
.final-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:34px 38px;
  background:#fff;
  border:1px solid #dceaf2;
  border-radius:24px;
  box-shadow:var(--shadow-sm);
}
.final-cta-inner span{
  color:var(--teal);
  font-size:13px;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.05em;
}
.final-cta h2{
  margin:5px 0 0;
  max-width:720px;
  font-size:30px;
  line-height:1.1;
}

/* Footer */
.site-footer{
  padding:48px 0 30px;
  border-top:1px solid #dfeaf0;
  background:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:25px 50px;
}
.footer-brand{font-size:14px}
.site-footer p{margin:0;color:#71889a}
.footer-links{display:flex;gap:20px}
.footer-links a{text-decoration:none;font-size:13px;font-weight:700;color:var(--navy)}
.site-footer small{
  grid-column:1/-1;
  padding-top:20px;
  border-top:1px solid #edf2f5;
  color:#8aa0af;
}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .6s ease,transform .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* Responsive */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  .btn{transition:none}
}

@media (max-width:1080px){
  .main-nav{gap:14px}
  .main-nav a{font-size:12px}
  .header-actions .btn-ghost{display:none}

  .hero-grid{grid-template-columns:1fr .8fr;gap:24px}
  .floating-card{right:-10%;width:245px}
  .phone-wrap{left:0}

  .benefit-grid{grid-template-columns:repeat(3,1fr)}
  .benefit-card:nth-child(3){border-right:0}
  .benefit-card:nth-child(-n+3){border-bottom:1px solid #e5eef3}

  .value-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:860px){
  .header-inner{min-height:68px}
  .nav-toggle{display:block}
  .header-actions{display:none}
  .main-nav{
    position:absolute;
    left:20px;right:20px;
    top:74px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px;
    background:#fff;
    border:1px solid #dceaf2;
    border-radius:16px;
    box-shadow:var(--shadow-sm);
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:12px;font-size:14px}

  .hero-grid{
    grid-template-columns:1fr;
    padding-top:48px;
    text-align:left;
  }
  .hero-visual{
    min-height:480px;
    max-width:640px;
    width:100%;
    margin:auto;
  }
  .phone-wrap{left:15%}
  .floating-card{right:3%}

  .split{grid-template-columns:1fr;gap:40px}
  .steps{grid-template-columns:1fr}
  .step-arrow{transform:rotate(90deg);justify-self:center}

  .value-banner{grid-template-columns:1fr;gap:18px}
  .audience-grid{grid-template-columns:repeat(2,1fr)}
  .demo-card{grid-template-columns:1fr;padding:38px}
  .demo-qr{display:none}
  .faq-wrap{grid-template-columns:1fr;gap:35px}
  .final-cta-inner{align-items:flex-start;flex-direction:column}
}

@media (max-width:620px){
  .container{width:min(100% - 28px,1180px)}
  .brand-name{font-size:14px}
  .brand-dr{font-size:23px}
  .brand-bubble{width:31px;height:26px}

  .hero{min-height:auto}
  .hero-grid{padding-bottom:48px}
  .hero h1{font-size:43px;letter-spacing:-2px}
  .hero-lead{font-size:16px}
  .hero-actions .btn{width:100%}
  .hero-proof{gap:10px}
  .hero-proof span{width:calc(50% - 6px);font-size:11px}

  .hero-visual{min-height:400px}
  .phone-wrap{left:4%;transform:scale(.82) rotate(3deg);transform-origin:top left}
  .floating-card{right:0;top:30%;width:215px;padding:16px}
  .floating-card>div:nth-child(2){padding-left:48px}
  .floating-card strong{font-size:12px}
  .floating-card p,.floating-card li{font-size:9px}

  .benefit-strip{margin-top:0}
  .benefit-grid{grid-template-columns:1fr;border-radius:18px}
  .benefit-card{
    min-height:auto;
    border-right:0!important;
    border-bottom:1px solid #e5eef3!important;
    padding:18px;
  }
  .benefit-card:last-child{border-bottom:0!important}

  .section{padding:70px 0}
  .pain-section{padding-top:75px}
  .section-copy h2,.section-heading h2{font-size:34px}
  .section-copy p{font-size:15px}
  .question-cloud{padding:20px}

  .value-banner{padding:28px 24px}
  .value-grid{grid-template-columns:1fr}
  .audience-grid{grid-template-columns:1fr}
  .source{grid-template-columns:58px 1fr;padding:16px}
  .source b{width:52px;height:52px;font-size:17px}

  .demo-section{padding-bottom:70px}
  .demo-card{padding:30px 24px;border-radius:22px}
  .demo-actions .btn{width:100%}
  .demo-copy h2{font-size:34px}

  .faq .section-heading h2{font-size:34px}
  .final-cta{padding-bottom:60px}
  .final-cta-inner{padding:28px 24px}
  .final-cta-inner .btn{width:100%}

  .footer-grid{grid-template-columns:1fr;text-align:center}
  .footer-brand{justify-content:center}
  .footer-links{justify-content:center;flex-wrap:wrap}
  .site-footer small{grid-column:auto}
}


/* =========================================================
   V2 — AVATAR FIRST / CONVERSION
   ========================================================= */

.hero-avatar-first{
  min-height:720px;
}

.hero-grid-avatar{
  min-height:690px;
  grid-template-columns:1.02fr .98fr;
  gap:44px;
  padding-top:54px;
  padding-bottom:76px;
}

.hero-intro-avatar{
  max-width:660px;
  margin:0;
  font-size:17px;
  color:#35566f;
}

.hero-intro-avatar strong{
  color:var(--navy);
}

.avatar-promise{
  max-width:650px;
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:22px;
  padding:13px 16px;
  border-radius:15px;
  border:1px solid #bde4e2;
  background:linear-gradient(90deg,#effbf9,#fff);
}

.promise-dot{
  width:12px;
  height:12px;
  flex:0 0 12px;
  border-radius:50%;
  background:#15b8ab;
  box-shadow:0 0 0 6px rgba(21,184,171,.12);
}

.avatar-promise strong{
  display:block;
  color:var(--navy);
  font-size:14px;
}

.avatar-promise small{
  display:block;
  margin-top:2px;
  color:#6a8395;
  font-size:12px;
}

.hero-actions-avatar{
  margin-top:25px;
}

.btn-avatar-main{
  min-width:288px;
  box-shadow:0 16px 34px rgba(10,167,162,.28);
}

.btn-live-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 5px rgba(255,255,255,.18);
}

.hero-small-proof{
  margin:15px 0 0;
  color:#7890a1;
  font-size:11px;
  font-weight:600;
}

.hero-avatar-stage{
  min-height:560px;
  position:relative;
  overflow:hidden;
  border-radius:34px;
  background:
    radial-gradient(circle at 50% 33%,rgba(24,155,190,.25),transparent 35%),
    linear-gradient(145deg,#0b3d65,#031b36 62%,#021427);
  box-shadow:
    0 38px 70px rgba(4,38,66,.23),
    inset 0 0 0 1px rgba(255,255,255,.09);
  isolation:isolate;
}

.avatar-stage-glow{
  position:absolute;
  left:50%;
  bottom:58px;
  transform:translateX(-50%);
  width:360px;
  height:55px;
  border-radius:50%;
  background:rgba(52,194,231,.28);
  filter:blur(18px);
}

.avatar-label-top{
  position:absolute;
  z-index:7;
  top:22px;
  left:24px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid rgba(108,225,213,.34);
  border-radius:999px;
  color:#d9ffff;
  background:rgba(4,33,58,.64);
  backdrop-filter:blur(10px);
  font-size:10px;
  letter-spacing:.07em;
  font-weight:900;
}

.live-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#25dfb7;
  box-shadow:0 0 0 5px rgba(37,223,183,.12);
}

.avatar-name-card{
  position:absolute;
  z-index:7;
  top:70px;
  left:24px;
}

.avatar-name-card small{
  display:block;
  color:#68d9d1;
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
}

.avatar-name-card strong{
  display:block;
  margin-top:2px;
  color:#fff;
  font-size:28px;
  letter-spacing:-1px;
}

.avatar-photo-frame{
  position:absolute;
  z-index:2;
  left:50%;
  top:94px;
  transform:translateX(-50%);
  width:455px;
  height:425px;
  overflow:hidden;
}

.avatar-real-img{
  position:absolute;
  height:620px;
  width:auto;
  max-width:none;
  left:50%;
  top:-118px;
  transform:translateX(-50%);
  filter:
    drop-shadow(0 16px 28px rgba(0,0,0,.24))
    saturate(1.04)
    contrast(1.03);
}

.avatar-chat{
  position:absolute;
  z-index:8;
  max-width:215px;
  padding:13px 15px;
  border-radius:16px;
  box-shadow:0 15px 30px rgba(0,0,0,.19);
  backdrop-filter:blur(10px);
}

.avatar-chat small{
  display:block;
  margin-bottom:4px;
  font-size:9px;
  font-weight:900;
  letter-spacing:.06em;
}

.avatar-chat p{
  margin:0;
  font-size:12px;
  line-height:1.35;
}

.avatar-chat-left{
  left:18px;
  top:215px;
  color:#153d5b;
  background:rgba(255,255,255,.94);
  border-radius:16px 16px 16px 4px;
}

.avatar-chat-left small{color:#718a9e}

.avatar-chat-right{
  right:18px;
  top:300px;
  color:#124d59;
  background:rgba(216,252,247,.95);
  border:1px solid rgba(60,204,191,.28);
  border-radius:16px 16px 4px 16px;
}

.avatar-chat-right small{color:#0b968c}

.avatar-play{
  position:absolute;
  z-index:9;
  left:24px;
  bottom:60px;
  display:flex;
  align-items:center;
  gap:11px;
  text-decoration:none;
  color:#fff;
  padding:11px 14px;
  border-radius:15px;
  background:linear-gradient(135deg,#0dbbb0,#078c93);
  box-shadow:0 14px 28px rgba(0,0,0,.2);
  transition:.2s;
}

.avatar-play:hover{
  transform:translateY(-2px) scale(1.01);
}

.avatar-play>span{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  color:#089c96;
  font-size:14px;
}

.avatar-play strong{
  display:block;
  font-size:12px;
  letter-spacing:.05em;
}

.avatar-play small{
  display:block;
  margin-top:1px;
  color:#d7fffb;
  font-size:10px;
}

.avatar-stage-footer{
  position:absolute;
  z-index:7;
  left:0;
  right:0;
  bottom:0;
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  color:#b7d8e7;
  background:rgba(1,17,35,.78);
  border-top:1px solid rgba(255,255,255,.08);
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.045em;
  font-weight:800;
}

.avatar-stage-footer b{color:#22bcb2}

.hero-conversion-line{
  position:absolute;
  z-index:10;
  left:0;
  right:0;
  bottom:0;
  min-height:47px;
  display:flex;
  align-items:center;
  background:linear-gradient(90deg,#07385f,#07567d,#06938e);
  color:#fff;
}

.hero-conversion-line .container{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
}

.hero-conversion-line span{
  color:#bbf3ef;
}

/* Avatar selling bridge */
.avatar-selling-section{
  padding:92px 0 100px;
  background:#fff;
}

.avatar-selling-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:72px;
}

.avatar-selling-copy h2{
  max-width:710px;
  margin:15px 0 18px;
  color:var(--navy);
  font-size:clamp(34px,4.4vw,52px);
  line-height:1.03;
  letter-spacing:-1.8px;
}

.avatar-selling-copy>p{
  max-width:680px;
  margin:0;
  font-size:16px;
  color:#5e788c;
}

.selling-points{
  display:grid;
  gap:10px;
  margin-top:28px;
}

.selling-points>div{
  display:grid;
  grid-template-columns:42px 1fr;
  align-items:center;
  gap:13px;
  padding:12px 14px;
  border-radius:15px;
  background:#f6fbfc;
  border:1px solid #e0edf2;
}

.selling-points b{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:#daf6f3;
  color:#079a91;
  font-size:11px;
}

.selling-points strong{
  display:block;
  color:var(--navy);
  font-size:14px;
}

.selling-points small{
  display:block;
  margin-top:2px;
  color:#748b9c;
  font-size:11px;
}

.text-cta{
  display:inline-flex;
  margin-top:22px;
  color:#079b95;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
}

.avatar-product-card{
  max-width:450px;
  width:100%;
  justify-self:end;
  padding:17px;
  border-radius:29px;
  background:linear-gradient(155deg,#0b466f,#031b36);
  box-shadow:0 30px 64px rgba(4,47,80,.2);
}

.product-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:4px 4px 14px;
  color:#dffbff;
  font-size:11px;
}

.product-card-top span{
  display:flex;
  align-items:center;
  gap:7px;
  font-weight:800;
}

.product-card-top i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#26dfb8;
}

.product-card-top strong{
  color:#62e4d7;
}

.product-avatar-window{
  position:relative;
  height:420px;
  overflow:hidden;
  border-radius:20px;
  background:#052a4b;
}

.product-avatar-img{
  position:absolute;
  height:585px;
  max-width:none;
  width:auto;
  left:50%;
  top:-118px;
  transform:translateX(-50%);
}

.product-question{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:13px;
  padding:9px 9px 9px 14px;
  border-radius:999px;
  background:#fff;
  color:#9aaab5;
  font-size:11px;
}

.product-question b{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  background:var(--teal);
}

.avatar-product-card>p{
  margin:12px 5px 3px;
  color:#b8d4e2;
  text-align:center;
  font-size:11px;
}

/* Sticky avatar conversion CTA */
.sticky-avatar-cta{
  position:fixed;
  z-index:95;
  right:18px;
  bottom:18px;
  width:min(430px,calc(100% - 28px));
  min-height:70px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 42px 10px 10px;
  border:1px solid rgba(88,221,210,.25);
  border-radius:19px;
  color:#fff;
  background:rgba(3,39,67,.94);
  box-shadow:0 22px 45px rgba(2,31,55,.25);
  backdrop-filter:blur(12px);
  transform:translateY(120%);
  opacity:0;
  pointer-events:none;
  transition:.35s ease;
}

.sticky-avatar-cta.is-visible{
  transform:none;
  opacity:1;
  pointer-events:auto;
}

.sticky-avatar-mini{
  position:relative;
  width:49px;
  height:49px;
  flex:0 0 49px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:15px;
  color:#fff;
  background:linear-gradient(145deg,#0e78a0,#0ca59e);
}

.sticky-avatar-mini strong{
  font-size:16px;
}

.sticky-online{
  position:absolute;
  right:-2px;
  top:-2px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#28dfb7;
  border:2px solid #06365f;
}

.sticky-avatar-copy{
  min-width:0;
  flex:1;
}

.sticky-avatar-copy strong{
  display:block;
  font-size:12px;
}

.sticky-avatar-copy span{
  display:block;
  margin-top:1px;
  color:#b9dbe7;
  font-size:10px;
}

.sticky-avatar-cta>a{
  flex:0 0 auto;
  padding:9px 11px;
  border-radius:10px;
  color:#06365f;
  background:#fff;
  text-decoration:none;
  font-size:10px;
  font-weight:900;
}

.sticky-avatar-cta>button{
  position:absolute;
  top:5px;
  right:7px;
  width:27px;
  height:27px;
  border:0;
  border-radius:50%;
  color:#b8d5df;
  background:transparent;
  cursor:pointer;
  font-size:18px;
}

/* Responsive V2 */
@media (max-width:1050px){
  .hero-grid-avatar{
    grid-template-columns:1fr .9fr;
    gap:26px;
  }

  .hero-avatar-stage{
    min-height:530px;
  }

  .avatar-chat{
    max-width:190px;
  }

  .avatar-selling-grid{
    gap:40px;
  }
}

@media (max-width:860px){
  .hero-avatar-first{
    min-height:auto;
  }

  .hero-grid-avatar{
    grid-template-columns:1fr;
    padding-bottom:88px;
  }

  .hero-avatar-stage{
    width:min(590px,100%);
    min-height:560px;
    margin:4px auto 0;
  }

  .avatar-selling-grid{
    grid-template-columns:1fr;
  }

  .avatar-product-card{
    justify-self:center;
  }

  .hero-conversion-line .container{
    text-align:center;
    flex-direction:column;
    gap:0;
    padding-block:8px;
    line-height:1.25;
  }
}

@media (max-width:620px){
  .hero-avatar-stage{
    min-height:515px;
    border-radius:24px;
  }

  .avatar-photo-frame{
    width:100%;
    height:405px;
    top:90px;
  }

  .avatar-real-img{
    height:560px;
    top:-103px;
  }

  .avatar-name-card strong{
    font-size:23px;
  }

  .avatar-chat{
    max-width:155px;
    padding:10px 11px;
  }

  .avatar-chat p{
    font-size:10px;
  }

  .avatar-chat-left{
    left:10px;
    top:195px;
  }

  .avatar-chat-right{
    right:10px;
    top:300px;
  }

  .avatar-play{
    left:12px;
    bottom:56px;
  }

  .avatar-stage-footer{
    padding-inline:8px;
    gap:6px;
    font-size:7px;
  }

  .avatar-selling-section{
    padding:72px 0 78px;
  }

  .avatar-selling-copy h2{
    font-size:34px;
  }

  .product-avatar-window{
    height:380px;
  }

  .product-avatar-img{
    height:535px;
    top:-105px;
  }

  .sticky-avatar-cta{
    right:14px;
    bottom:14px;
  }

  .sticky-avatar-copy{
    display:none;
  }

  .sticky-avatar-cta{
    width:auto;
    min-width:206px;
  }

  .sticky-avatar-cta>a{
    font-size:11px;
  }
}


/* V2.1 — avatar recortado, maior e mais presente */
.avatar-photo-frame{
  top:88px;
  width:100%;
  height:455px;
}

.avatar-real-img{
  height:720px;
  width:auto;
  max-width:none;
  left:50%;
  top:16px;
  transform:translateX(-50%);
  filter:
    drop-shadow(0 24px 32px rgba(0,0,0,.34))
    saturate(1.05)
    contrast(1.03);
}

.product-avatar-window{
  background:
    radial-gradient(circle at 50% 28%,rgba(44,177,215,.25),transparent 34%),
    linear-gradient(155deg,#0b466f,#031b36);
}

.product-avatar-img{
  height:610px;
  width:auto;
  max-width:none;
  left:50%;
  top:26px;
  transform:translateX(-50%);
  filter:drop-shadow(0 18px 26px rgba(0,0,0,.32));
}

@media (max-width:620px){
  .avatar-real-img{
    height:645px;
    top:30px;
  }

  .product-avatar-img{
    height:560px;
    top:36px;
  }
}


/* =========================================================
   V3 — COMPRA / CONTATO COMERCIAL
   ========================================================= */

.buy-section{
  padding:40px 0 96px;
  background:
    radial-gradient(circle at 86% 20%,rgba(35,199,191,.16),transparent 24%),
    linear-gradient(180deg,#fff,#f2f9fb);
}

.buy-card{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:48px;
  align-items:center;
  padding:52px;
  border-radius:30px;
  color:#fff;
  background:
    radial-gradient(circle at 15% 20%,rgba(32,196,193,.16),transparent 30%),
    linear-gradient(120deg,#052f55,#074e76 52%,#078e8a);
  box-shadow:0 34px 75px rgba(4,45,77,.20);
}

.buy-copy h2{
  margin:11px 0 16px;
  max-width:720px;
  color:#fff;
  font-size:clamp(34px,4.3vw,52px);
  line-height:1.03;
  letter-spacing:-1.7px;
}

.buy-copy>p{
  max-width:680px;
  margin:0;
  color:#dceff4;
  font-size:16px;
}

.buy-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.btn-whatsapp{
  color:#fff;
  background:#16a66b;
  box-shadow:0 14px 28px rgba(0,0,0,.14);
}

.btn-whatsapp:hover{
  background:#138e5d;
}

.whatsapp-icon{
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#16a66b;
  background:#fff;
  font-size:13px;
  font-weight:900;
}

.buy-note{
  margin-top:17px!important;
  color:#b9dce4!important;
  font-size:11px!important;
}

.seller-card{
  padding:24px;
  border-radius:24px;
  color:var(--ink);
  background:#fff;
  box-shadow:0 22px 50px rgba(0,0,0,.18);
}

.seller-title{
  display:flex;
  align-items:center;
  gap:14px;
  padding-bottom:18px;
  border-bottom:1px solid #e5edf2;
}

.seller-title>span{
  width:55px;
  height:55px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--teal));
  font-weight:900;
  letter-spacing:-1px;
}

.seller-title strong{
  display:block;
  color:var(--navy);
  font-size:18px;
}

.seller-title small{
  display:block;
  margin-top:2px;
  color:#758b9b;
  font-size:10px;
}

.seller-info{
  display:grid;
  gap:9px;
  margin-top:17px;
}

.seller-info>a,
.seller-info-static{
  min-height:61px;
  display:grid;
  grid-template-columns:42px 1fr;
  align-items:center;
  gap:11px;
  padding:10px 12px;
  border:1px solid #e0eaf0;
  border-radius:14px;
  text-decoration:none;
  transition:.18s;
}

.seller-info>a:hover{
  transform:translateX(3px);
  border-color:#a6dcd9;
  background:#f4fbfb;
}

.seller-icon{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:11px;
  background:#e4f6f5;
  color:#078f88;
  font-weight:900;
  font-size:16px;
}

.seller-info small{
  display:block;
  color:#8699a7;
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.055em;
  font-weight:800;
}

.seller-info strong{
  display:block;
  margin-top:2px;
  color:var(--navy);
  font-size:13px;
  word-break:break-word;
}

.seller-security{
  display:flex;
  align-items:flex-start;
  gap:9px;
  margin-top:16px;
  padding:12px 14px;
  border-radius:13px;
  background:#eff9f8;
  color:#446b6e;
}

.seller-security>span{
  width:20px;
  height:20px;
  flex:0 0 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#0ca79e;
  color:#fff;
  font-size:10px;
  font-weight:900;
}

.seller-security p{
  margin:0;
  font-size:10px;
  line-height:1.45;
}

.footer-company{
  grid-column:1/-1;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px 18px;
  padding:17px 0;
  border-top:1px solid #edf2f5;
  border-bottom:1px solid #edf2f5;
  color:#617b8e;
  font-size:12px;
}

.footer-company strong{
  color:var(--navy);
}

.footer-company a{
  color:#0a7789;
  text-decoration:none;
  font-weight:700;
}

@media (max-width:860px){
  .buy-card{
    grid-template-columns:1fr;
    padding:38px;
  }

  .seller-card{
    max-width:560px;
    width:100%;
  }
}

@media (max-width:620px){
  .buy-section{
    padding:25px 0 70px;
  }

  .buy-card{
    padding:28px 22px;
    border-radius:22px;
  }

  .buy-copy h2{
    font-size:34px;
  }

  .buy-actions .btn{
    width:100%;
  }

  .seller-card{
    padding:18px;
  }

  .footer-company{
    flex-direction:column;
    gap:6px;
  }
}
