:root{
  --site-bg-1:#eef6ff;
  --site-bg-2:#e1efff;
  --site-bg-3:#d4e8ff;
  --site-primary:#0C4DA2;
  --site-primary-dark:#07356F;
  --site-primary-light:#58A8FF;
  --site-primary-soft:#9ED0FF;
  --site-text:#10355F;
  --site-text-soft:#4B6F99;
  --site-white:#ffffff;
  --site-border:rgba(12, 77, 162, 0.14);
  --site-border-strong:rgba(12, 77, 162, 0.22);
  --site-shadow:0 18px 45px rgba(11, 54, 111, 0.12);
  --site-shadow-strong:0 24px 50px rgba(8, 50, 102, 0.18);
  --site-radius:22px;
  --site-radius-lg:28px;
  --site-transition:all .28s ease;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(88,168,255,.16), transparent 24%),
    radial-gradient(circle at top right, rgba(12,77,162,.10), transparent 20%),
    linear-gradient(180deg, var(--site-bg-1) 0%, var(--site-bg-2) 42%, var(--site-bg-3) 100%);
  color:var(--site-text);
  min-height:100vh;
  line-height:1.6;
  overflow-x:hidden;
}

.site-shell{
  width:min(100%, 1280px);
  margin:0 auto;
}

.text-accent{
  color:var(--site-primary-soft) !important;
}

.text-white{
  color:#ffffff !important;
}

.text-gray-300,
.text-gray-400{
  color:var(--site-text-soft) !important;
}

.text-gray-700{
  color:var(--site-text) !important;
}

.bg-glass{
  background:linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(245,250,255,.98) 100%) !important;
  border:1px solid var(--site-border) !important;
  box-shadow:var(--site-shadow) !important;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.large-logo{
  width:auto !important;
  height:112px !important;
  max-width:100% !important;
  filter:drop-shadow(0 10px 22px rgba(0,0,0,.18)) !important;
}

.large-logo-footer{
  width:auto !important;
  height:78px !important;
  max-width:100% !important;
  filter:drop-shadow(0 8px 18px rgba(12,77,162,.12)) !important;
}

.gsap-fade-up,
.gsap-stagger-item,
.feature-card,
.faq-item,
#faq-produtos .flex.items-center.bg-gray-800{
  opacity:0;
  transform:translateY(28px);
}

/* Cards */
.feature-card{
  background:linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(241,248,255,.98) 100%) !important;
  border:1px solid var(--site-border) !important;
  border-radius:var(--site-radius) !important;
  color:var(--site-text) !important;
  transition:var(--site-transition) !important;
  box-shadow:var(--site-shadow) !important;
}

.feature-card:hover{
  transform:translateY(-6px);
  border-color:var(--site-border-strong) !important;
  box-shadow:0 24px 45px rgba(11,54,111,.14) !important;
}

.feature-card p{
  color:var(--site-text-soft) !important;
}

.custom-green-icon,
.feature-icon{
  color:var(--site-primary) !important;
}

/* FAQ */
.faq-item{
  background:rgba(255,255,255,.88) !important;
  border:1px solid var(--site-border) !important;
  border-radius:18px !important;
  overflow:hidden;
  box-shadow:var(--site-shadow);
}

.faq-item button{
  color:var(--site-text) !important;
  background:transparent !important;
}

.faq-item .hidden{
  display:none;
}

.faq-item > div{
  color:var(--site-text-soft) !important;
  background:rgba(243,248,255,.95) !important;
  border-top:1px solid var(--site-border) !important;
  line-height:1.85;
}

/* Advogados */
#faq-produtos .flex.items-center.bg-gray-800{
  background:rgba(255,255,255,.90) !important;
  border:1px solid var(--site-border) !important;
  border-radius:20px !important;
  box-shadow:var(--site-shadow) !important;
  transition:var(--site-transition) !important;
}

#faq-produtos .flex.items-center.bg-gray-800:hover{
  transform:translateY(-4px);
  border-color:var(--site-border-strong) !important;
}

#faq-produtos h3,
#faq-produtos .text-white{
  color:var(--site-text) !important;
}

#faq-produtos .text-gray-300,
#faq-produtos .text-gray-400{
  color:var(--site-text-soft) !important;
}

#faq-produtos a{
  color:var(--site-primary-dark) !important;
  text-decoration:none;
}

#faq-produtos a:hover{
  color:var(--site-primary) !important;
}

/* Sobre */
.site-section-kicker{
  display:inline-block;
  margin-bottom:12px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(12,77,162,.08);
  color:var(--site-primary);
  font-size:.84rem;
  font-weight:600;
  letter-spacing:.02em;
}

.site-section-title{
  margin:0 0 18px 0;
  font-size:clamp(1.8rem, 2.6vw, 2.8rem);
  line-height:1.16;
  font-weight:700;
  color:var(--site-primary-dark);
}

.site-about-section{
  padding:10px 0 0 0;
}

.site-about-card{
  background:linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(241,248,255,.98) 100%);
  border:1px solid var(--site-border);
  border-radius:var(--site-radius-lg);
  box-shadow:var(--site-shadow);
  padding:34px;
  overflow:hidden;
}

.site-about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.site-about-content{
  min-width:0;
}

.site-about-text{
  color:var(--site-text-soft);
  font-size:1rem;
  line-height:1.95;
}

.site-about-text p{
  margin-bottom:18px;
}

.site-about-actions{
  margin-top:22px;
}

.site-about-social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--site-primary) 0%, var(--site-primary-light) 100%);
  color:#fff !important;
  text-decoration:none;
  font-weight:600;
  transition:var(--site-transition);
  box-shadow:0 12px 28px rgba(12,77,162,.18);
}

.site-about-social:hover{
  transform:translateY(-2px);
  color:#fff !important;
}

.site-about-media{
  width:100%;
  min-height:360px;
  border-radius:24px;
  overflow:hidden;
  background:#eff7ff;
  border:1px solid var(--site-border);
  box-shadow:var(--site-shadow);
}

.site-about-media iframe{
  width:100%;
  height:100%;
  min-height:360px;
  display:block;
}

.site-video-placeholder{
  min-height:360px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  color:var(--site-text-soft);
  background:linear-gradient(180deg, #f3f8ff 0%, #e7f1ff 100%);
  font-size:1rem;
}

.site-video-placeholder i{
  font-size:2rem;
  color:var(--site-primary-light);
}

.site-whatsapp-float img{
  width:56px;
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:100;
  filter:drop-shadow(0 10px 20px rgba(0,0,0,.20));
}

.ocultar_web{
  display:none;
}

/* Primeira dobra */
.hero-highlight{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:linear-gradient(180deg, #061a38 0%, #08264f 100%);
}

.hero-highlight__carousel{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero-highlight__track{
  display:flex;
  width:100%;
  height:100%;
  transition:transform .8s cubic-bezier(.22, 1, .36, 1);
}

.hero-highlight__slide{
  min-width:100%;
  min-height:100vh;
  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
  position:relative;
  transform:scale(1.01);
}

.hero-highlight__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(3,12,27,.18) 0%, rgba(3,12,27,.08) 22%, rgba(2,8,20,.34) 100%),
    radial-gradient(circle at left center, rgba(10, 77, 162, .10), transparent 26%);
  z-index:1;
  pointer-events:none;
}

.hero-highlight__content{
  position:relative;
  z-index:2;
  min-height:100vh;
  display:flex;
  align-items:center;
}

.hero-highlight__inner{
  min-height:100vh;
  display:grid;
  grid-template-columns:minmax(0, 620px) 1fr;
  gap:30px;
  align-items:center;
  padding:50px 0 90px 0;
}

.hero-highlight__left{
  max-width:620px;
}

.hero-highlight__logo-wrap{
  margin-bottom:28px;
}

.hero-highlight__title{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2.4rem, 5vw, 4.8rem);
  line-height:1.02;
  font-weight:600;
  letter-spacing:.01em;
  color:#ffffff;
  text-transform:uppercase;
  max-width:580px;
  margin:0 0 26px 0;
  text-shadow:0 10px 25px rgba(0,0,0,.22);
}

.hero-highlight__title .text-accent{
  color:#9ed0ff !important;
}

.hero-highlight__text{
  max-width:560px;
  color:rgba(255,255,255,.88);
  font-size:1.18rem;
  line-height:1.8;
  margin-bottom:30px;
  text-shadow:0 4px 18px rgba(0,0,0,.18);
}

.hero-highlight__text strong{
  color:#ffffff;
}

.hero-highlight__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:26px;
}

.hero-highlight__btn{
  min-height:56px;
  padding:0 22px;
  border-radius:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  font-weight:600;
  transition:all .28s ease;
}

.hero-highlight__btn--primary{
  background:linear-gradient(135deg, var(--site-primary) 0%, #1B69CA 100%);
  color:#ffffff;
  box-shadow:0 14px 30px rgba(12,77,162,.26);
  border:1px solid rgba(255,255,255,.08);
}

.hero-highlight__btn--primary:hover{
  transform:translateY(-2px);
  color:#ffffff;
  filter:brightness(1.05);
}

.hero-highlight__btn--secondary{
  background:rgba(255,255,255,.10);
  color:#ffffff;
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.hero-highlight__btn--secondary:hover{
  transform:translateY(-2px);
  color:#ffffff;
  background:rgba(255,255,255,.14);
}

.hero-highlight__btn--ghost{
  background:transparent;
  color:#d9ebff;
  border:1px solid rgba(183, 214, 255, .26);
}

.hero-highlight__btn--ghost:hover{
  transform:translateY(-2px);
  color:#ffffff;
  background:rgba(255,255,255,.06);
}

.hero-highlight__meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-highlight__meta-item{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 15px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:#e6f2ff;
  font-size:.95rem;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.hero-highlight__meta-item i{
  color:#8fc4ff;
}

.hero-highlight__right{
  min-height:100%;
}

.hero-highlight__nav{
  position:absolute;
  left:0;
  right:0;
  bottom:26px;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 16px;
}

.hero-highlight__arrow{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.10);
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all .25s ease;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.hero-highlight__arrow:hover{
  background:rgba(255,255,255,.16);
  transform:translateY(-1px);
}

.hero-highlight__bullets{
  display:flex;
  align-items:center;
  gap:10px;
}

.hero-highlight__bullet{
  width:12px;
  height:12px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.30);
  transition:all .25s ease;
  padding:0;
  cursor:pointer;
}

.hero-highlight__bullet.active{
  width:34px;
  background:#58A8FF;
  box-shadow:0 0 0 4px rgba(88,168,255,.18);
}

/* Footer escuro 100% */
.site-footer{
  padding:34px 0 0 0;
  margin-top:34px;
}

.site-footer-model{
  width:100%;
  background:transparent;
}

.site-footer-model__main{
  width:100%;
  background:
    radial-gradient(circle at top left, rgba(88,168,255,.10), transparent 28%),
    linear-gradient(180deg, #06182f 0%, #072344 45%, #05172f 100%);
  border-top:1px solid rgba(88, 168, 255, 0.14);
  border-bottom:1px solid rgba(88, 168, 255, 0.08);
  box-shadow:0 24px 50px rgba(4, 21, 42, 0.30);
}

.site-footer-model__inner{
  padding-top:34px;
  padding-bottom:34px;
}

.site-footer-model__grid{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(0, .9fr) minmax(320px, .9fr);
  gap:40px;
  align-items:start;
}

.site-footer-model__brand,
.site-footer-model__contacts,
.site-footer-model__cta{
  min-width:0;
}

.site-footer-model__brand-top{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:20px;
}

.site-footer-model__logo{
  width:auto;
  height:82px;
  max-width:100%;
  object-fit:contain;
  filter:drop-shadow(0 10px 22px rgba(0,0,0,.28));
  flex-shrink:0;
}

.site-footer-model__brand-title-wrap{
  min-width:0;
}

.site-footer-model__title{
  margin:0;
  font-size:2rem;
  line-height:1.1;
  font-weight:800;
  color:#ffffff;
  text-transform:uppercase;
  word-break:break-word;
}

.site-footer-model__title:empty{
  display:none;
}

.site-footer-model__brand-text{
  color:rgba(227,239,255,.88);
  font-size:1rem;
  line-height:1.9;
}

.site-footer-model__brand-text strong{
  color:#ffffff;
}

.site-footer-model__heading{
  margin:0 0 18px 0;
  font-size:1.75rem;
  line-height:1.1;
  font-weight:800;
  color:#ffffff;
  text-transform:uppercase;
  word-break:break-word;
}

.site-footer-model__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:14px;
}

.site-footer-model__list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:rgba(235,244,255,.92);
  font-size:1rem;
  line-height:1.65;
}

.site-footer-model__list li i{
  width:18px;
  margin-top:4px;
  color:#58A8FF;
  flex-shrink:0;
}

.site-footer-model__link{
  color:#ffffff;
  text-decoration:none;
  transition:all .25s ease;
}

.site-footer-model__link:hover{
  color:#9ED0FF;
}

.site-footer-model__cta-box{
  background:linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:22px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}

.site-footer-model__cta-title{
  color:#ffffff;
  font-size:1.12rem;
  font-weight:700;
  line-height:1.5;
  margin-bottom:10px;
}

.site-footer-model__cta-text{
  color:rgba(223,236,255,.82);
  line-height:1.8;
  margin-bottom:18px;
}

.site-footer-model__button{
  width:100%;
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-radius:10px;
  padding:0 18px;
  background:linear-gradient(135deg, #0C4DA2 0%, #58A8FF 100%);
  color:#ffffff !important;
  text-decoration:none;
  font-weight:700;
  transition:all .28s ease;
  box-shadow:0 14px 30px rgba(12,77,162,.30);
}

.site-footer-model__button:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
}

.site-footer-model__bottom{
  width:100%;
  background:linear-gradient(180deg, #1d2635 0%, #161e2b 100%);
  border-top:1px solid rgba(255,255,255,.06);
}

.site-footer-model__bottom-grid{
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:0 6px;
}

.site-footer-model__bottom-left,
.site-footer-model__bottom-right{
  display:flex;
  align-items:center;
  gap:18px;
}

.site-footer-model__bottom-left{
  flex-wrap:wrap;
}

.site-footer-model__bottom-right{
  flex-wrap:nowrap;
}

.site-footer-model__bottom-left span,
.site-footer-model__bottom-right span,
.site-footer-model__bottom-left a{
  color:#f3f7ff;
  font-size:.98rem;
  text-decoration:none;
  line-height:1.4;
}

.site-footer-model__bottom-left a:hover{
  color:#9ED0FF;
}

/* Criador */
.site-footer-model__creator{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-wrap:nowrap;
  white-space:nowrap;
  gap:6px;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#f3f7ff !important;
  text-decoration:none;
  transition:all .28s ease;
}

.site-footer-model__creator:hover{
  color:#ffffff !important;
  background:rgba(255,255,255,.10);
  transform:translateY(-1px);
}

.site-footer-model__creator-text,
.site-footer-model__creator-name{
  font-size:.78rem;
  line-height:1;
  white-space:nowrap;
}

.site-footer-model__creator-logo{
  width:auto;
  height:14px;
  max-width:100%;
  object-fit:contain;
  display:block;
  flex-shrink:0;
}

/* Responsivo */
@media (max-width: 1100px){
  .site-footer-model__grid{
    grid-template-columns:1fr 1fr;
  }

  .site-footer-model__cta{
    grid-column:1 / -1;
  }
}

@media (max-width: 991px){
  .site-about-grid,
  .hero-highlight__inner{
    grid-template-columns:1fr;
  }

  .hero-highlight__inner{
    padding:40px 0 88px 0;
  }

  .hero-highlight__left{
    max-width:100%;
  }
}

@media (max-width: 768px){
  .large-logo{
    height:84px !important;
  }

  .large-logo-footer{
    height:64px !important;
  }

  .site-about-card{
    padding:22px;
  }

  .site-about-media,
  .site-about-media iframe,
  .site-video-placeholder{
    min-height:260px;
  }

  .site-whatsapp-float img{
    width:52px;
    right:14px;
    bottom:14px;
  }

  .hero-highlight{
    min-height:92vh;
  }

  .hero-highlight__slide{
    min-height:92vh;
    background-position:68% center;
    background-image:
      linear-gradient(180deg, rgba(5, 18, 40, .84) 0%, rgba(6, 23, 52, .68) 42%, rgba(6, 23, 52, .82) 100%),
      var(--hero-mobile-bg) !important;
  }

  .hero-highlight__content{
    min-height:92vh;
  }

  .hero-highlight__inner{
    min-height:92vh;
    align-items:end;
    padding:36px 0 94px 0;
  }

  .hero-highlight__title{
    font-size:clamp(2.05rem, 9vw, 3rem);
    max-width:100%;
    margin-bottom:18px;
  }

  .hero-highlight__text{
    font-size:1rem;
    line-height:1.75;
    margin-bottom:22px;
  }

  .hero-highlight__actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-highlight__btn{
    width:100%;
  }

  .hero-highlight__meta{
    flex-direction:column;
  }

  .hero-highlight__nav{
    bottom:18px;
  }

  .site-footer{
    margin-top:28px;
  }

  .site-footer-model__inner{
    padding-top:24px;
    padding-bottom:24px;
  }

  .site-footer-model__grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .site-footer-model__brand-top{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .site-footer-model__logo{
    height:72px;
  }

  .site-footer-model__title{
    font-size:1.55rem;
  }

  .site-footer-model__heading{
    font-size:1.45rem;
  }

  .site-footer-model__bottom-grid{
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:14px 0;
  }

  .site-footer-model__bottom-left,
  .site-footer-model__bottom-right{
    gap:12px;
  }

  .site-footer-model__bottom-right{
    flex-wrap:wrap;
  }

  .site-footer-model__creator{
    width:auto;
  }

  .ocultar_web{
    display:block;
  }
}

@media (max-width: 480px){
  .site-section-title{
    font-size:1.6rem;
  }

  .site-about-text{
    font-size:.96rem;
    line-height:1.85;
  }

  .site-footer-model__title{
    font-size:1.35rem;
  }

  .site-footer-model__heading{
    font-size:1.28rem;
  }

  .site-footer-model__brand-text,
  .site-footer-model__cta-text,
  .site-footer-model__list li{
    font-size:.95rem;
  }
}