/* ============================================================
   INNOVATE DERM — style.css
   Premium Scientific Cosmetics Consultancy
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
  --blue: #1badda;
  --blue-dark: #399eb1;
  --lilac: #72378d;
  --lilac-dark: #674177;
  --bg-light: #F8FAFF;
  --bg-soft: #EEF3FF;
  --text-main: #1C1F2E;
  --text-muted: #5C6275;
  --border: rgba(93, 169, 233, .15);
}

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

html, body{
max-width:100%;
overflow-x:hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-deep);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

/* ---- UTILS ---- */
.container{
max-width:var(--container);
margin:0 auto;
padding-left:20px;
padding-right:20px;
width:100%;
}

.accent {
  color: var(--blue);
}

.text-center {
  text-align: center;
}

/* ---- SECTION BASE ---- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(56, 182, 255, .08);
  border: 1px solid rgba(56, 182, 255, .2);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-tag--light {
  color: white;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
}

.badge-dot{
width:9px;
height:9px;
background:#38b6ff;
border-radius:50%;

box-shadow:
0 0 8px #38b6ff,
0 0 16px rgba(56,182,255,.7);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
  color: #0a1628;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 52px;
  line-height: 1.65;
}

.section-header {
  text-align: center;
  margin-bottom: 10px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--lilac));
  box-shadow: 0 4px 22px rgba(56, 182, 255, .35);
  border-radius: 10px;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--lilac-dark));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(56, 182, 255, .5);
}

.btn--ghost {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid rgba(255, 255, 255, .2);
}

.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--white-solid {
  background: #fff;
  color: #0a1628;
  font-weight: 700;
  box-shadow: 0 4px 22px rgba(0, 0, 0, .3);
}

.btn--white-solid:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35);
}

.btn--outline-white:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--outline-glass {
  background: rgba(255, 255, 255, .07);
  color: var(--lilac);
  border: 1.5px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
}

.btn--outline-glass:hover {
  background: rgba(255, 255, 255, .15);
}

/* ========================
   NAV
   ======================== */
.nav {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  transition: all .35s ease;
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 6px 25px rgba(0, 0, 0, .05);
}

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo-icon svg {
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0c1b2a;
}

.logo-sub {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-main);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after{
content:"";
position:absolute;
bottom:-6px;
left:50%;
transform:translateX(-50%);

width:0;
height:2px;

background:linear-gradient(90deg,#1badda,#72378d);
border-radius:10px;

transition:width .3s ease;
}

.nav__link:hover::after{
width:100%;
}

.nav__link--cta{
padding:10px 22px;
border-radius:40px;
background:linear-gradient(135deg,#72378d,#674177);
color:#fff !important;
font-weight:600;
box-shadow:
0 0 0 rgba(114,55,141,0),
0 6px 20px rgba(114,55,141,.35);

transition:all .35s ease;
}

.nav__link--cta:hover{
transform:translateY(-2px);

box-shadow:
0 0 12px rgba(114,55,141,.5),
0 10px 35px rgba(114,55,141,.45);
}

.nav__link--cta .arrow{
  margin-left:6px;
  transition: transform .3s ease;
}

.nav__link--cta:hover .arrow{
  transform: translateX(4px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, #38b6ff, #a855f7);
  margin: 6px 0;
  transition: .3s;
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.logo-text {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 78px;
  transition: transform .4s ease;
}

.nav__logo:hover .logo-img {
  transform: scale(1.08) rotate(-2deg);
}

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__media{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:0;
}

/* vídeo padrão */
.hero__video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
opacity:.75;
pointer-events:none;
}

/* desktop ativo */
.hero__video--mobile{
display:none;
}

/* =======================
   MOBILE
   ======================= */

@media (max-width:768px){

.hero__video--desktop{
display:none;
}

.hero__video--mobile{
display:block;
}

}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(56, 182, 255, .04) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 60%, #f4f9ff 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 28px 80px;
  max-width: 900px;
}

.hero__badge{
font-family:var(--font-display);
font-size:1rem;
font-weight:700;
letter-spacing:.08em;
text-transform:uppercase;

color:#ffffff;

background:linear-gradient(
90deg,
rgba(0,0,0,0.55),
rgba(0,0,0,0.35)
);

border:1px solid rgba(255,255,255,0.35);

padding:12px 26px;
border-radius:999px;

display:inline-flex;
align-items:center;
gap:12px;

margin-bottom:36px;

backdrop-filter:blur(8px);

box-shadow:
0 8px 30px rgba(0,0,0,0.35),
0 0 14px rgba(56,182,255,.35);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0c1b2a;
  ;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.hero__title--accent {
  background: linear-gradient(90deg, var(--blue), var(--lilac));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle{
font-size:1.7rem;
color:var(--text-main);
margin-bottom:52px;
line-height:1.8;
max-width:900px;
margin-left:auto;
margin-right:auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #0a1628;
  display: inline;
}

.stat__plus {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #060f1a;
}

.stat__label {
  display: block;
  font-size: 1rem;
  color: #0a2040;
  letter-spacing: .05em;
  margin-top: 3px;
}

.stat__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  width: 1.5px;
  height: 52px;
  background: rgba(56, 182, 255, .15);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.scroll-indicator__line {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--blue));
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  100% {
    top: 200%;
  }
}

.br-hide {
  display: initial;
}



/* ========================
   SOBRE
   ======================== */
.sobre {
  padding: 120px 0;
  background: #ffffff;
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.sobre__content .section-tag {
  margin-bottom: 18px;
  text-align:center;
}

.sobre__text {
  font-size: 1.45rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.sobre__pillars{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
  max-width:720px;
  margin:32px auto 0 auto;
}

.sobre__pillars{
max-width:700px;
margin:32px auto 0 auto;
}

.pillar {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 1.37rem;
  font-weight: 500;
  color: var(--lilac-dark);
  transition: all var(--transition);
  justify-content:flex-start;
  width:100%;
  gap:12px;
}

.pillar:hover {
  border-color: var(--border-glow);
  background: var(--bg-light);
}

.pillar__icon {
  flex-shrink: 0;
}

/* Molecule visual */
.sobre__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.sobre__card-main {
  width: 70px;
  height: 70px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-glow);
}

.molecule-grid {
  position: relative;
  width: 160px;
  height: 160px;
}

.mol-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(56, 182, 255, .2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mol-ring--1 {
  width: 200px;
  height: 200px;
  animation: rotateMol 30s linear infinite;
  border-style: dashed;
}

.mol-ring--2 {
  width: 140px;
  height: 140px;
  animation: rotateMol 22s linear infinite reverse;
}

.mol-ring--3 {
  width: 80px;
  height: 80px;
  animation: rotateMol 5s linear infinite;
  border-color: rgba(56, 182, 255, .4);
}

@keyframes rotateMol {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.mol-nodes {
  position: absolute;
  inset: 0;
}

.mol-node {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--lilac));
  box-shadow: 0 0 10px rgba(56, 182, 255, .6);
}

.mol-node--center {
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mol-node--1 {
  width: 10px;
  height: 10px;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  opacity: .8;
}

.mol-node--2 {
  width: 8px;
  height: 8px;
  top: 20%;
  right: 8%;
  opacity: .6;
}

.mol-node--3 {
  width: 10px;
  height: 10px;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  opacity: .8;
}

.mol-node--4 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 8%;
  opacity: .6;
}

.mol-node--5 {
  width: 7px;
  height: 7px;
  bottom: 25%;
  right: 10%;
  opacity: .5;
}

.mol-label {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}

.sobre__card-float {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: var(--shadow-card);
}

.sobre__card-float--1 {
  top: 8%;
  right: 0;
  animation: floatCard 3.5s ease-in-out infinite;
}

.sobre__card-float--2 {
  bottom: 10%;
  left: -10px;
  animation: floatCard 4s ease-in-out infinite .8s;
}

.float-icon {
  font-size: 1.6rem;
}

.float-title {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
}

.float-sub {
  font-size: .75rem;
  color: var(--text-muted);
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ========================
   FUNDADORA
   ======================== */

.fundadora {
  padding: 120px 0;
  background: #f7f9ff;
}

.fundadora-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.fundadora-img img {
  width: 100%;
  max-width: 300px;
  border-radius: 18px;
  box-shadow:
    0 20px 50px rgba(0,0,0,.08),
    0 0 25px rgba(160,132,232,.35),
    0 0 60px rgba(160,132,232,.15);
}
.fundadora-img {
  display: flex;
  justify-content: center;
}

.fundadora p {
  font-size: 1.45rem;
}

@media (max-width: 900px) {

  .fundadora-grid {
    grid-template-columns: 1fr;
  }

  .fundadora-content {
    order: 1;
  }

  .fundadora-img {
    order: 2;
    margin-top: 30px;
  }

}

/* ========================
   SERVIÇOS
   ======================== */

.servicos-blocos{
margin-top:60px;
display:flex;
flex-direction:column;
gap:70px;
margin-bottom: 60px;
}

/* DESKTOP */
.servico-bloco{
display:grid;
grid-template-columns:420px 1fr;
gap:60px;
align-items:center;
}

/* BLOCO INVERTIDO */
.servico-bloco.reverse{
grid-template-columns:1fr 420px;
}

.servico-bloco.reverse .servico-img{
order:2;
}

/* IMAGEM */
.servico-img img{
width:100%;
height:auto;
display:block;
border-radius:16px;
box-shadow:0 30px 60px rgba(0,0,0,.08);
}

/* TEXTO */
.servico-textos{
display:flex;
flex-direction:column;
gap:28px;
}

.servico-linha h3{
font-size:1.9rem;
font-weight:700;
color:#0a1628;
margin-bottom:8px;
}

.section-subtitle {
  font-size:1.45rem;
color:var(--text-muted);
max-width:760px;
margin:0 auto 52px;
line-height:1.7;
}

.servico-linha p{
font-size:1.55rem;
color:var(--text-muted);
line-height:1.6;
max-width: 850px;
}

.consultoria-pd{
padding:120px 0;
background:#fafafa;
}

.pd-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
margin-top:60px;
}

.pd-item{
background:white;
padding:40px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:all .3s ease;
border-top:3px solid #1badda;
}

.pd-item:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.pd-icon{
width:64px;
height:64px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
background: transparent;
margin-bottom:20px;
color:#72378d;
}

.pd-item h3{
font-size: 1.75rem;
margin-bottom:12px;
}

.pd-item p{
font-size: 1.45rem;
line-height:1.7;
color:#555;
}


/* ========================
   DIFERENCIAIS
   ======================== */

.processo{
padding:110px 0;
background:white;
}

.processo-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-top:50px;
}

.processo-item{
text-align:center;
padding:20px;
}

.processo-item .num{
font-size:2rem;
font-weight:700;
color:#72378d;
margin-bottom:10px;
}

.processo-item h3{
font-size:1.75rem;
margin-bottom:8px;
color:#0a1628;
}

.processo-item p{
font-size:1.45rem;
color:var(--text-muted);
}



/* ========================
   RESPONSIVIDADE
   ======================== */


/* TABLET GRANDE */
@media (max-width: 1100px){

.servico-bloco{
grid-template-columns:1fr 1fr;
gap:40px;
}

.servico-bloco.reverse{
grid-template-columns:1fr 1fr;
}

.processo-grid{
grid-template-columns:repeat(2,1fr);
}

}


/* TABLET */
@media (max-width: 900px){

.servicos-blocos{
gap:60px;
}

.servico-bloco{
grid-template-columns:1fr;
gap:30px;
}

.servico-bloco.reverse{
grid-template-columns:1fr;
}

.servico-bloco.reverse .servico-img{
order:0;
}

/* imagem primeiro sempre */
.servico-img{
order:-1;
}

.processo-grid{
grid-template-columns:1fr 1fr;
gap:30px;
}

}


/* MOBILE */
@media (max-width: 600px){

.servicos-blocos{
gap:50px;
}

.servico-img img{
border-radius:12px;
}

.servico-textos{
gap:22px;
}

.servico-linha h3{
font-size:1rem;
}

.servico-linha p{
font-size:.9rem;
}

.processo{
padding:80px 0;
}

.processo-grid{
grid-template-columns:1fr;
gap:24px;
}

.processo-item{
padding:16px;
}

}

/* ========================
   INSIGHTS - BLOG
   ======================== */
.insights{
margin-top:40px;
margin-bottom: 40px;
}

.insights-feature{
margin-top:40px;
margin-bottom: 40px;
}

.insight-featured{
display:grid;
grid-template-columns:1.2fr 1fr;
align-items:center;
border-radius:var(--radius-md);
overflow:hidden;
background:#ffffff;
border:1px solid var(--border);
box-shadow:0 20px 50px rgba(0,0,0,0.06);
transition:all .35s;
}

.insight-featured:hover{
transform:translateY(-6px);
box-shadow:0 25px 60px rgba(0,0,0,0.1);
}

.insight-featured__img{
min-height:280px;
background-size:cover;
background-position:center;
position:relative;
}

.insight-featured__img::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(120deg, rgba(10,32,64,.25), transparent);
}

.insight-featured__content{
padding:40px;
}

.insight-featured__content h3{
font-size:1.65rem;
margin-bottom:12px;
color:#0a2040;
}

.insight-featured__content p{
font-size:1.45rem;
color:var(--text-muted);
margin-bottom:22px;
line-height:1.6;
}

.insight-card__meta {
  font-size: 2.35rem;
  color: #72378d;
}



/* BOTÃO BLOG */

.btn-blog{
display:inline-block;
padding:12px 22px;
border-radius:30px;
background: linear-gradient(90deg, var(--blue), var(--lilac));
color: white !important;
color:#fff;
font-size:1.45rem;
font-weight:600;
text-decoration:none;
box-shadow:0 10px 25px rgba(56,182,255,.25);
transition:all .3s;
}

.btn-blog:hover{
transform:translateY(-2px);
box-shadow:0 15px 30px rgba(56,182,255,.35);
}

@media(max-width:900px){

.insight-featured{
grid-template-columns:1fr;
}

.insight-featured__img{
height:220px;
}

}

/* ========================
   INSTAGRAM
   ======================== */
.instagram {
  padding: 60px 0;
  background: linear-gradient(180deg,#f7f9ff 0%, #eef3ff 100%);
}

.instagram-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.instagram-mini__text h3 {
  font-size: 2.9rem;
  margin-bottom: 6px;
}

.instagram-mini__text p {
  color: #6b7280;
  font-size: 1.75rem;
}

.instagram-mini__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 40px;
  background: linear-gradient(135deg,#38b6ff,#a855f7);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease;
}

.instagram-mini__btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .instagram-mini {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef6ff 0%, #f5efff 100%);
  text-align: center;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(56, 182, 255, .15) 1px, transparent 1px),
    radial-gradient(circle, rgba(56, 182, 255, .08) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px;
  background-position: 0 0, 20px 20px;
  animation: particlesMove 20s linear infinite;
}

@keyframes particlesMove {
  to {
    background-position: 40px 40px, 60px 60px;
  }
}

.cta-section__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0c1b2a;
  margin-bottom: 20px;
}

.cta-accent {
  color: var(--blue);
  text-shadow: 0 0 40px rgba(160, 132, 232, .35);
}

.cta-section__sub {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-bottom: 42px;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.cta-section__info {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: #fff;
  padding: 72px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 52px;
}

.footer__logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer__brand-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.65rem;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.footer__nav-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 18px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__nav a {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--blue);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;

  display: flex;
  flex-direction: column;   /* coloca um item abaixo do outro */
  align-items: center;      /* centraliza horizontalmente */
  justify-content: center;

  text-align: center;       /* centraliza o texto */

  font-size: 1rem;
  color: var(--text-dim);

  gap: 8px;                 /* espaço entre as linhas */
}

/* ========================
   WHATSAPP FLOAT
   ======================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .55);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6, 15, 26, .92);
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  border: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* stagger for grids */
.service-card:nth-child(1) {
  transition-delay: 0s;
}

.service-card:nth-child(2) {
  transition-delay: .08s;
}

.service-card:nth-child(3) {
  transition-delay: .16s;
}

.service-card:nth-child(4) {
  transition-delay: .24s;
}

.service-card:nth-child(5) {
  transition-delay: .32s;
}

.service-card:nth-child(6) {
  transition-delay: .40s;
}

.dif-card:nth-child(1) {
  transition-delay: 0s;
}

.dif-card:nth-child(2) {
  transition-delay: .08s;
}

.dif-card:nth-child(3) {
  transition-delay: .16s;
}

.dif-card:nth-child(4) {
  transition-delay: .24s;
}

.dif-card:nth-child(5) {
  transition-delay: .32s;
}

.dif-card:nth-child(6) {
  transition-delay: .40s;
}

.insight-card:nth-child(1) {
  transition-delay: 0s;
}

.insight-card:nth-child(2) {
  transition-delay: .12s;
}

.insight-card:nth-child(3) {
  transition-delay: .24s;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sobre__visual {
    min-height: 280px;
  }

  .servicos__grid,
  .diferenciais__grid,
  .insights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .insta-card {
    flex: 0 0 calc(33.33% - 14px);
  }
}

@media (max-width:900px){

.nav__menu{
  position:fixed;
  top:80px;
  right:-100%;
  width:260px;

  background:white;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,.12);

  display:flex;
  flex-direction:column;
  padding:25px;
  gap:20px;

  transition:.35s ease;
}

.nav__menu.open{
  right:20px;
}

.nav__toggle{
  display:flex;
}



  .nav__menu li {
    border-bottom: 1px solid var(--border);
  }

  .nav__link {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link--cta {
    display: inline-block;
    margin-top: 12px;
  }

  .nav__toggle {
    display: flex;
    z-index: 999;
  }

  .servicos__grid,
  .diferenciais__grid,
  .insights__grid {
    grid-template-columns: 1fr;
  }

 .sobre__pillars{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
max-width:720px;
margin:32px auto 0 auto;
}

  .hero__stats {
    gap: 10px;
  }

  .stat__divider {
    display: none;
  }

  .br-hide {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-section__info {
    flex-direction: column;
    align-items: center;
  }

  .insta-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero__title {
    font-size: 2.9rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .insta-card {
    flex: 0 0 calc(80% - 10px);
  }

  .sobre__card-float {
    display: none;
  }

  .btn {
    padding: 12px 20px;
    font-size: .85rem;
  }
}

@media (max-width:900px) {

  .nav__menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 260px;
    height: auto;

    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);

    flex-direction: column;
    padding: 25px;
    gap: 20px;

    transition: .4s;
  }

  .nav__menu.open {
    right: 20px;
  }

  .nav__link {
    color: #0d1f35;
    font-size: 16px;
  }

}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.lang {
  font-size: 1.2rem;
  opacity: .6;
  transition: .3s;
}

.lang:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lang.active {
  opacity: 1;
}

.nav__menu .nav__link--cta,
.nav__menu .nav__link--cta span{
color:#fff !important;
}

.nav{
position:sticky;
top:0;
z-index:1000;

background:rgba(255,255,255,0.75);
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);

border-bottom:1px solid rgba(0,0,0,.05);
}

/* ========================
SERVIÇOS PREMIUM
======================== */

.servicos-premium{
position:relative;
padding:140px 0;
background:url("img/servicos.webp") center/cover no-repeat;
color:white;
}

.servicos-overlay{
position:absolute;
inset:0;
background:linear-gradient(
180deg,
rgba(90, 118, 167, 0.541) 0%,
rgba(21, 39, 66, 0.75) 100%
);
}

.servicos-premium .container{
position:relative;
z-index:2;
}

/* GRID */

.servicos-grid-premium{
margin-top:70px;
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:30px;
}

/* CARD */

.servico-card{
padding:35px;
border-radius:16px;
background:rgba(251, 250, 255, 0.11);
backdrop-filter:blur(22px);
border:1px solid rgba(255,255,255,0.1);
transition:all .35s ease;
word-wrap:break-word;
overflow:hidden;
}

.servico-card:hover{
transform:translateY(-6px);
background:rgba(255, 255, 255, 0.32);
border-color:rgba(255, 255, 255, 0.4);
}

.servico-card h3{
font-size:1.55rem;
font-weight:600;
margin-bottom:12px;
color: var(--blue);
border-color: rgba(255,255,255,0.85);
}

.servico-card p{
font-size:1.35rem;
line-height:1.6;
color:rgba(255,255,255,0.85);
}


.servicos-premium .section-title{
color:#ffffff;
}

.servicos-premium .section-subtitle{
color:rgba(255,255,255,0.85);
}

/* MOBILE */

@media(max-width:900px){

.servicos-grid-premium{
grid-template-columns:1fr;
}

}

/* =================================================
   MOBILE FIXES
   ================================================= */

@media (max-width: 768px) {

.container{
padding:0 18px;
}

/* TITULOS */

.section-title{
font-size:1.9rem;
line-height:1.25;
}

.section-subtitle{
font-size:1.40rem;
margin-bottom:35px;
}


/* TAG ACIMA DOS TITULOS */

.section-tag{
font-size:.75rem;
padding:4px 12px;
}

/* BOTÕES */

.btn{
font-size:1rem;
padding:12px 20px;
}

/* SERVIÇOS */

.servicos-premium{
padding:80px 0;
}

.servicos-grid-premium{
grid-template-columns:1fr;
gap:20px;
margin-top:40px;
}

.servico-card{
padding:26px;
}

.servico-card h3{
font-size:1.2rem;
}

.servico-card p{
font-size:1.25rem;
line-height:1.6;
}

/* ESPAÇAMENTO DAS SEÇÕES */

section{
padding:80px 0;
}

}

/* =========================================
   MOBILE OPTIMIZATION
   ========================================= */

@media (max-width: 768px){

/* CONTAINER */

.container{
padding-left:20px;
padding-right:20px;
}

/* HERO */

.hero{
padding-top:120px;
padding-bottom:90px;
}

.hero h1{
font-size:2rem;
line-height:1.2;
}

.hero p{
font-size:1.2rem;
line-height:1.7;
max-width:720px;
margin:auto;
}

/* TITULOS */

.section-title{
font-size:1.8rem;
line-height:1.25;
margin-bottom:14px;
}

.section-subtitle{
font-size:1.35rem;
line-height:1.7;
max-width:750px;
margin:auto;
}

/* TAG DAS SEÇÕES */

.section-tag{
font-size:.75rem;
padding:5px 12px;
margin-bottom:12px;
}

/* ESPAÇAMENTO DAS SEÇÕES */

section{
padding:80px 0;
}

/* BOTÕES */

.btn{
font-size:1rem;
padding:12px 22px;
}

/* GRID GERAL */

.grid{
grid-template-columns:1fr;
gap:24px;
}

/* SERVIÇOS */

.servicos-premium{
padding:90px 0;
}

.servicos-grid-premium{
grid-template-columns:1fr;
gap:22px;
margin-top:40px;
}

.servico-card{
padding:26px;
border-radius:14px;
}

.servico-card h3{
font-size:1.35rem;
margin-bottom:8px;
}

.servico-card p{
font-size:1.25rem;
line-height:1.65;
}

/* CARDS EM GERAL */

.card{
padding:24px;
}

/* BLOG */

.blog-grid{
grid-template-columns:1fr;
gap:26px;
}

/* IMAGENS */

img{
max-width:100%;
height:auto;
display:block;
}
/* FOOTER */

.footer{
text-align:center;
}

.footer__grid{
text-align:center;
justify-items:center;
}

}



p{
font-size:1.15rem;
line-height:1.75;
}

@media (max-width:768px){

.pd-grid{
grid-template-columns:1fr;
gap:30px;
}

}

.footer__social{
justify-content:center;
}

.footer__contact{
text-align:center;
align-items:center;
}

@media (max-width:768px){

.hero__actions{
margin-top:30px;
}

}

@media (max-width:768px){

.hero__subtitle{
font-size:1.7rem;
line-height:1.7;
padding:0 10px;
}

}


@media (max-width:768px){

.hero__content{
padding: 60px 16px 60px;
}

}

h1,h2,h3,p{
word-break:break-word;
}

*{
max-width:100%;
}

@media (max-width:768px){

.sobre__text{
font-size:1.45rem;
line-height:1.7;
}

}

@media (max-width:768px){

.sobre__pillars{
grid-template-columns:1fr;
max-width:100%;
padding:0 10px;
}

}

.sobre__text,
.pillar{
word-break:break-word;
overflow-wrap:break-word;
}

@media (max-width:768px){

.sobre__grid{
padding:0 10px;
}

}

@media (max-width:768px){

.pillar{
font-size:1.45rem;
padding:12px 14px;
}

}
/* AJUSTE MOBILE BADGE HERO */
@media (max-width:768px){

.hero__badge{
font-size:.75rem;
padding:8px 16px;
gap:8px;
letter-spacing:.05em;
margin-bottom:24px;
}

.badge-dot{
width:6px;
height:6px;
}

}