/* ============================================
   SKL ASSESSORIA CONTÁBIL — TEMA PRINCIPAL
   Paleta:
     - Primária (vermelho/crimson): #B7042C
     - Secundária (ouro):           #B59720
     - Texto escuro:                #0F172A
     - Background neutro:           #F8F9FA
   ============================================ */

:root {
  --cor0: #8E0322;   /* primary darker */
  --cor1: #0F172A;   /* foreground / dark text */
  --cor2: #B7042C;   /* primary SKL (crimson) */
  --cor3: #B59720;   /* secondary SKL (gold) */
  --cor-bg: #F8F9FA;
  --cor-soft: #FBE5EA; /* pink-ish soft tint */
}

@keyframes moving {
  0% { bottom: 0px; }
  50% { bottom: 5px; }
  100% { bottom: 0px; }
}
.animation { animation: moving ease-in-out 1s infinite; }

.social, .rectangle, a, a:before, a:after, .input[type=submit], input[type=reset], input[type=button], button {
  transition: all ease-out 140ms;
}

.banner:before {
  background: linear-gradient(to bottom, white 25%, rgba(255, 255, 255, 0.1) 75%);
}

* {
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  resize: none;
  text-decoration: none;
  text-rendering: optimizeLegibility;
  border: none;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Poppins", sans-serif;
  color: #0F172A;
  background-color: white;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4 {
  margin-top: 0;
  letter-spacing: -0.5px;
  color: #0F172A;
  font-weight: 700;
}

p, ul {
  line-height: 1.65;
  color: #475569;
}

.container { max-width: 1200px; }

/* ============================================
   BACKGROUNDS
   ============================================ */
.bkg { background-color: white; }
.bkg-b0 { background-color: #8E0322; }
.bkg-b1 { background-color: #0F172A; }
.bkg-b2 { background-color: #B7042C; }
.bkg-b3 { background-color: #B59720; }
.bkg-b2a { background-color: rgba(183, 4, 44, 0.08); }
.bkg-bs1 { background: linear-gradient(-170deg, white 30%, #F8F9FA 70%); }
.bkg-bs1v { background: linear-gradient(0deg, white 30%, #F8F9FA 70%); }
.bkg-bs2 { background: linear-gradient(135deg, white 30%, #F8F9FA 70%); }
.bkg-bs2v { background: linear-gradient(95deg, white 30%, #F8F9FA 70%); }
.bkg-bs { background: linear-gradient(135deg, #6F021C, #8E0322, #A30327, #B7042C); }
.bkg-gold { background: linear-gradient(90deg, #C8923D 0%, #D68E3A 100%); }
.bkg-soft { background: linear-gradient(180deg, #FFFFFF 0%, #FBE5EA 100%); }
.bkg-soft-radial {
  background:
    radial-gradient(circle at 10% 20%, rgba(183, 4, 44, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(181, 151, 32, 0.05) 0%, transparent 40%),
    #FFFFFF;
}

/* ============================================
   CORES TEXTO
   ============================================ */
.cor { color: white !important; }
.cor-c0 { color: #8E0322; }
.cor-c1 { color: #0F172A; }
.cor-c2 { color: #B7042C; }
.cor-c3 { color: #B59720; }
.cor-soft { color: #64748b; }

/* ============================================
   BOTÕES
   ============================================ */
.bt {
  position: relative;
  cursor: pointer;
  display: inline-block;
  border-radius: 50px;
  border-style: solid;
  border-width: 1px;
  padding: 13px 26px;
  font-weight: 500;
  font-size: 14px;
}
.bt-bw { color: #0F172A; border-color: #f1f5f9; background-color: #f1f5f9; }
.bt-bw:hover { color: white; border-color: #B7042C; background-color: #B7042C; }
.bt-bwv { color: white; border-color: white; background-color: transparent; }
.bt-bwv:hover { color: #0F172A; background-color: white; }
.bt-b0 { border-color: #8E0322; background-color: #8E0322; color: white; }
.bt-b0:hover { border-color: #6F021C; background-color: #6F021C; }
.bt-b1 { border-color: #0F172A; background-color: #0F172A; color: white; }
.bt-b1:hover { color: white; border-color: #1E293B; background-color: #1E293B; }
.bt-b1v { border-color: #0F172A; color: #0F172A; background-color: transparent; }
.bt-b1v:hover { color: white; background-color: #0F172A; }
.bt-b2 { border-color: #B7042C; color: white; background-color: #B7042C; }
.bt-b2:hover { border-color: #8E0322; background-color: #8E0322; }
.bt-b2v { border-color: #B7042C; color: #B7042C; background-color: transparent; }
.bt-b2v:hover { color: white; background-color: #B7042C; }
.bt-b3 { border-color: #B59720; color: white; background-color: #B59720; }
.bt-b3:hover { border-color: #8E751B; background-color: #8E751B; }
.bt-whats { border-color: #25d366; color: white; background-color: #25d366; }
.bt-whats:hover { border-color: #1ea954; background-color: #1ea954; }
.bt-whatsv { border-color: #25d366; color: #25d366; }
.bt-whatsv:hover { color: white; background-color: #25d366; }

.bt-lg { padding: 16px 36px; font-size: 15px; }
.bt-sm { padding: 9px 20px; font-size: 13px; }

.link-arrow {
  color: #B7042C;
  font-weight: 600;
  font-size: 14px;
}
.link-arrow:hover { color: #8E0322; }

/* ============================================
   LAYOUT BASE
   ============================================ */
.altura {
  position: relative;
  min-height: 480px;
}

.sdw { box-shadow: 1px 3px 5px rgba(15, 23, 42, 0.15); }

.banner {
  width: 100%;
  height: 100%;
  z-index: -999;
  top: 0;
  position: fixed;
  overflow: hidden;
}
.banner:before {
  content: "";
  position: absolute;
  z-index: 900;
  opacity: 0.55;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.banner-foto { width: 100%; height: 100%; }

/* HERO específico SKL */
.hero-skl {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #FBE5EA 0%, rgba(251, 229, 234, 0.4) 45%, rgba(255,255,255,0) 60%), url("../imgs/equipe.jpg") center right / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-skl::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.7) 35%, rgba(255,255,255,0) 70%);
  z-index: 1;
}
.hero-skl .container { position: relative; z-index: 2; }
.hero-skl .hero-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(183, 4, 44, 0.08);
  color: #B7042C;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-skl h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 18px;
  max-width: 600px;
}
.hero-skl h1 .destaque { color: #B7042C; }
.hero-skl .sub {
  font-size: 16px;
  color: #475569;
  max-width: 500px;
  margin-bottom: 28px;
}

/* ============================================
   OWL / CARROSSEL
   ============================================ */
#clients-carousel .owl-item img {
  display: inline-block !important;
  width: 180px !important;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
}
#reviews-carousel .owl-item .review-avatar-wrap img {
  width: 100% !important;
  display: block !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.owl-prev, .owl-next {
  background-color: transparent !important;
  font-size: inherit !important;
  color: #0F172A !important;
}
#clients-carousel .owl-stage {
  transition-timing-function: linear !important;
}

/* ============================================
   IMAGEM FUNDO
   ============================================ */
.img {
  position: relative;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.img-b1 { background-image: url("../imgs/b1.jpg"); }
.img-b1::before { background: linear-gradient(to right, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.5) 80%); }
.img-b2 { background-image: url("../imgs/b2.jpg"); }
.img-b2::before { background-color: rgba(183, 4, 44, 0.5); }
.img-equipe { background-image: url("../imgs/equipe.jpg"); }
.img-equipe::before { background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 80%); }

/* ============================================
   CARDS / RECTANGLES
   ============================================ */
.rectangle {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  top: 0;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  border-style: solid;
  border-width: 0;
  background-color: white;
}
.rectangle-pos {
  position: relative;
  transform: translate(-50%, 100px);
  top: 0%;
  left: 50%;
  z-index: 5;
  margin-top: -100px;
}
.rectangle-img { background-size: contain; background-repeat: no-repeat; }
.rectangle-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to top, white 35%, rgba(255, 255, 255, 0.2) 100%);
}
.rectangle:hover {
  top: -4px;
  box-shadow: 0 24px 38px 0 rgba(15, 23, 42, 0.08);
}
.rectangle-flat {
  border-radius: 18px;
  background: white;
  border: 1px solid #E2E8F0;
  box-shadow: none;
}
.rectangle-flat:hover { border-color: #B7042C; box-shadow: 0 14px 32px rgba(183, 4, 44, 0.10); }

.borda {
  border-radius: 16px;
  background-color: rgba(183, 4, 44, 0.08);
  padding: 18px;
  text-align: center;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.borda i {
  color: #B7042C;
  font-size: 24px;
}
.borda-pos {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 0%;
  border-radius: 50%;
  background-color: #B7042C;
  color: white;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: #F8F9FA;
  padding: 50px 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}
.stats-item { text-align: center; }
.stats-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: #B7042C;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.stats-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(183, 4, 44, 0.08);
  color: #B7042C;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 16px;
}

.lista-trajetoria {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.lista-trajetoria li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.55;
}
.lista-trajetoria li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #B7042C;
  position: absolute;
  left: 0;
  top: 2px;
}

/* ============================================
   SERVICES CARDS
   ============================================ */
.service-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  overflow: hidden;
  transition: all 280ms ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 4, 44, 0.3);
  box-shadow: 0 18px 38px rgba(183, 4, 44, 0.08);
}
.service-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.service-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card-title {
  font-size: 13px;
  color: #B7042C;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card-text {
  color: #475569;
  font-size: 14px;
  flex: 1;
  margin-bottom: 14px;
}

/* ============================================
   PARTNER CARDS
   ============================================ */
.partner-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: stretch;
  transition: all 280ms;
}
.partner-card:hover { border-color: #B7042C; box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06); }
.partner-card-thumb {
  width: 120px;
  flex-shrink: 0;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  min-height: 120px;
}

/* ============================================
   REFORMA TRIBUTÁRIA — banner estreito
   ============================================ */
.tax-banner {
  background: linear-gradient(135deg, #8E0322 0%, #B7042C 100%);
  border-radius: 22px;
  padding: 38px 30px;
  color: white;
  position: relative;
  overflow: hidden;
}
.tax-banner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.tax-banner h2 {
  color: white;
  font-size: clamp(24px, 2.5vw, 32px);
  margin-bottom: 6px;
}
.tax-banner .sub { color: rgba(255, 255, 255, 0.85); font-size: 15px; margin-bottom: 18px; }
.tax-banner .bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 20px;
}
.tax-banner .bullets li {
  list-style: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tax-banner .bullets li i { color: #FFD6E0; font-size: 14px; }

/* ============================================
   DIFERENCIAIS — fundo decorado
   ============================================ */
.diferenciais {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}
.diferenciais .container { position: relative; z-index: 2; }
.dots-pattern {
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(circle, rgba(183, 4, 44, 0.18) 1px, transparent 1px);
  background-size: 14px 14px;
  z-index: 0;
}

/* ============================================
   SEGMENTOS — 3 cards
   ============================================ */
.segment-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background-size: cover;
  background-position: center;
  color: white;
  transition: all 280ms;
}
.segment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
}
.segment-card.seg-pending {
  background: linear-gradient(135deg, #1e293b 0%, #0F172A 50%, #1e293b 100%);
}
.segment-card:hover { transform: translateY(-4px); }
.segment-card > * { position: relative; z-index: 1; }
.segment-card .seg-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.segment-card .seg-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 4px;
  color: white;
}

/* ============================================
   CLIENTS LOGO STRIP
   ============================================ */
.clients-strip {
  padding: 50px 0;
  background: linear-gradient(135deg, #6F021C, #8E0322, #A30327, #B7042C);
  overflow: hidden;
}
.clients-strip h3 {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.95;
}
.marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
}
.marquee-content {
  display: flex;
  gap: 16px;
  animation: marquee 75s linear infinite;
  will-change: transform;
}
.marquee-content .client-logo {
  flex-shrink: 0;
  width: 180px;
  margin: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo {
  background: white;
  border-radius: 12px;
  padding: 16px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
}
.client-logo img { width: auto; height: auto; max-width: 148px; max-height: 58px; object-fit: contain; display: block; }

/* ============================================
   DEPOIMENTOS
   ============================================ */
/* Iguala a altura de todos os itens do carrossel de reviews */
#reviews-carousel .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}
#reviews-carousel .owl-item {
  display: flex !important;
}
.review-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 8px;
}
.review-stars { color: #F59E0B; font-size: 14px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: #334155; line-height: 1.6; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid #E2E8F0; min-height: 56px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white;
}
.av-blue { background: #3b82f6; }
.av-rose { background: #f43f5e; }
.av-emerald { background: #10b981; }
.av-violet { background: #8b5cf6; }
.av-amber { background: #f59e0b; }
.av-cyan { background: #06b6d4; }
.av-indigo { background: #6366f1; }
.av-pink { background: #ec4899; }
.review-avatar-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(15,23,42,0.12);
}
.review-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.review-name { font-size: 14px; font-weight: 700; color: #0F172A; line-height: 1.3; }
.review-role { font-size: 12px; color: #64748b; display: flex; align-items: center; gap: 3px; flex-wrap: wrap; }

/* ============================================
   CERTIFICAÇÕES + ACESSO RÁPIDO
   ============================================ */
.cert-item { text-align: center; padding: 18px; }
.cert-item img { max-width: 90px; max-height: 90px; object-fit: contain; }
.cert-item .label {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 600;
}
.qa-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: white;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  transition: all 200ms;
  height: 78px;
}
.qa-item:hover { border-color: #B7042C; transform: translateY(-2px); }
.qa-item img { max-height: 50px; max-width: 100%; object-fit: contain; }

/* ============================================
   FORMULÁRIO CTA
   ============================================ */
.cta-form {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
  border: 1px solid #E2E8F0;
}
.form-group { margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 600; color: #334155; display: block; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-size: 14px;
  background: white;
  transition: border-color 140ms;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: #B7042C;
}

/* ============================================
   TECNOLOGIA / iPhone mockup
   ============================================ */
.iphone-frame {
  background: linear-gradient(135deg, #3a3a3c 0%, #1c1c1e 45%, #2c2c2e 100%);
  border-radius: 55px;
  padding: 12px;
  display: inline-block;
  position: relative;
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.28),
    0 10px 25px rgba(183, 4, 44, 0.08),
    inset 0 0 0 2px #0a0a0a,
    inset 0 2px 4px rgba(255, 255, 255, 0.08);
}
/* Botões de volume (lateral esquerda) */
.iphone-frame::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 110px;
  width: 3px;
  height: 32px;
  background: linear-gradient(-90deg, #0a0a0a, #3a3a3c);
  border-radius: 2px 0 0 2px;
  box-shadow: 0 50px 0 0 #2c2c2e;
}
/* Botão liga/desliga (lateral direita) */
.iphone-frame::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 135px;
  width: 3px;
  height: 70px;
  background: linear-gradient(90deg, #0a0a0a, #3a3a3c);
  border-radius: 0 2px 2px 0;
}
.iphone-screen {
  background: #000;
  border-radius: 43px;
  overflow: hidden;
  width: 260px;
  height: 520px;
  position: relative;
}
/* Notch + alto-falante */
.iphone-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background-color: #000;
  background-image: linear-gradient(#1a1a1a, #1a1a1a);
  background-position: calc(50% - 6px) 9px;
  background-size: 38px 5px;
  background-repeat: no-repeat;
  border-radius: 0 0 18px 18px;
  z-index: 5;
}
/* Câmera (ponto redondo) */
.iphone-screen::after {
  content: '';
  position: absolute;
  top: 9.5px;
  left: 156px;
  width: 5px;
  height: 5px;
  background: #0f0f10;
  border-radius: 50%;
  z-index: 6;
}
.iphone-screen video, .iphone-screen img { width: 100%; height: 100%; object-fit: cover; }

.feature-list { padding: 0; margin: 0; list-style: none; }
.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 14px;
}
.feature-list li i { color: #B7042C; margin-top: 4px; flex-shrink: 0; }

/* ============================================
   MENU / HEADER
   ============================================ */
.botao-responsivo {
  display: inline-block;
  background-color: white;
  border-radius: 5px;
  padding: 8px 10px;
  margin: 5px 0;
}
.botao-responsivo:hover { background-color: #B7042C; color: white; }

.main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .main-menu {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.08);
    border-width: thin;
    border-style: solid;
    border-radius: 12px;
    padding: 14px;
    margin: 10px auto;
    width: 100%;
  }
}
.main-menu li { position: relative; text-align: center; }
.main-menu li a {
  display: inline-block;
  margin: 1px;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 50px;
  color: #0F172A;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .main-menu li a { display: inline-block; margin: 5px 0; padding: 5px 20px; }
}
.main-menu li a:hover { color: #B7042C; }
@media screen and (min-width: 768px) {
  .main-menu li:hover .sm { display: block !important; }
}

.sm {
  position: absolute;
  display: none;
  transform: translatex(-50%);
  left: 50%;
  list-style: none;
  padding: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(15, 23, 42, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999999999;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  min-width: 240px;
}
@media screen and (max-width: 768px) {
  .sm { position: relative !important; display: none; width: 100%; }
}
.sm li { position: relative; display: list-item; box-sizing: border-box; width: 100%; text-align: left; }
.sm li a {
  white-space: nowrap;
  display: block !important;
  padding: 8px 14px;
  margin: 0;
  font-size: 13px;
  border-radius: 8px;
}
.sm li a:hover { background: rgba(183, 4, 44, 0.06); }
@media screen and (max-width: 576px) { .sm li a { white-space: normal; } }

.logo img {
  width: 100%;
  max-width: 180px;
  display: inline-block;
}

.sticky-top { transition: transform 450ms; }

.topo {
  box-shadow: 0 1px 14px 0 rgba(15, 23, 42, 0.06);
  background: white !important;
}

.area-restrita-btn,
.main-menu li a.area-restrita-btn {
  background: #B7042C;
  color: white !important;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.area-restrita-btn:hover,
.main-menu li a.area-restrita-btn:hover { background: #8E0322; color: white !important; }

/* ============================================
   FORMS / INPUTS antigos
   ============================================ */
.online, .ebook, .contato { margin-bottom: 0; }
.online-borda, .ebook-borda, .contato-borda {
  border-style: solid;
  border-width: 1px;
  border-color: #E2E8F0;
  background-color: white;
  border-radius: 50px;
  margin: 8px 3px;
  padding: 3px;
}
.online input, .online textarea, .online select,
.ebook input, .ebook textarea, .ebook select,
.contato input, .contato textarea, .contato select {
  flex: 1; resize: none; padding-left: 10px; padding-right: 10px; width: 100%; background: transparent;
}
.online-icone, .ebook-icone, .contato-icone {
  color: white; padding: 15px; display: flex; align-items: center; justify-content: center;
  border-radius: 30px; background-color: #B7042C; width: 45px; height: 45px;
}

.sear {
  display: flex; align-items: center; justify-content: center;
  margin: 0 4px; width: 40px; height: 40px;
  border-radius: 50%; border-style: solid; border-width: 2px;
  border-color: #B7042C; color: white; background-color: #B7042C;
}
.sear:hover { background: transparent; color: #B7042C; }

.search {
  background: white; border-radius: 30px; padding: 4px; margin: 0;
}
.search input {
  background: transparent; font-size: inherit; text-indent: 15px;
  width: 100%; flex: 1 320px; border-radius: 30px; padding: 13px 0;
}
.search button {
  background: #B7042C; color: white; border-radius: 30px; padding: 13px 80px;
  border: none; font-size: inherit;
}
.search button:hover { background: #0F172A; }

/* ============================================
   MODAL
   ============================================ */
@keyframes anima_janela {
  from { top: -300px; opacity: 0; }
  to { top: 0; opacity: 1; }
}
#modal, #modalagenda {
  display: none; justify-content: center; align-items: center;
  width: 100%; height: 100%; position: fixed; top: 0; left: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(142, 3, 34, 0.9));
  z-index: 99999999;
}
#modal .janela_modal, #modalagenda .janela_modal {
  width: 80%; position: relative; z-index: 999; display: block;
  padding: 5px; margin: 10px; border-radius: 5px; animation: anima_janela 1s;
}
#modal .modal-janela, #modalagenda .modal-janela {
  overflow: auto; width: 90%; max-height: 80%; position: relative;
  z-index: 998; padding: 15px; border-radius: 5px; margin-top: 30px;
  animation: anima_janela 1s;
}
#modal .modal-janela .modal-janela-texto table,
#modalagenda .modal-janela .modal-janela-texto table { width: 100% !important; }
#modal .modal-close, #modalagenda .modal-close {
  position: absolute; z-index: 999; top: 20px; right: 20px;
}

/* ============================================
   SOCIAL
   ============================================ */
.social {
  cursor: pointer; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 3px; color: rgba(255, 255, 255, 0.92);
  border-radius: 50%; background: rgba(255, 255, 255, 0.12);
}
.social:hover { background: white; color: #B7042C !important; }
.social-tw:hover { color: #00aced !important; }
.social-fb:hover { color: #3b5998 !important; }
.social-in { color: rgba(255, 255, 255, 0.92) !important; }
.social-in:hover { color: #007bb6 !important; }
.social-ig:hover { color: #F15245 !important; }

/* ============================================
   FOOTER
   ============================================ */
.footer-skl {
  background: #B7042C;
  color: white;
}
.footer-skl h4, .footer-skl h5, .footer-skl p, .footer-skl a, .footer-skl li, .footer-skl span { color: white; }
.footer-skl a:hover { color: #FFD6E0; }

.footer-skl .footer-top { padding-top: 60px; padding-bottom: 40px; }
.footer-skl .footer-logo { max-width: 175px; margin-bottom: 22px; }
.footer-skl .footer-tagline {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  max-width: 320px;
  margin: 0 0 22px 0;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  color: white !important;
  border-radius: 50%;
  font-size: 15px;
}
.footer-social a:hover { background: white; color: #B7042C !important; }

.footer-skl .footer-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  text-transform: none;
  margin: 0 0 22px 0;
  padding-bottom: 12px;
  position: relative;
  display: inline-block;
}
.footer-skl .footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: #B59720;
  border-radius: 2px;
}

.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { padding: 8px 0; font-size: 15px; }
.footer-menu li a { color: rgba(255, 255, 255, 0.95); transition: padding 140ms ease-out; }
.footer-menu li a:hover { color: white; padding-left: 4px; }

.footer-contacts { list-style: none; padding: 0; margin: 0; }
.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.45;
}
.footer-contacts li i {
  width: 18px;
  text-align: center;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  flex-shrink: 0;
}

.footer-map { margin: 10px 0 0 0; }
.footer-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 14px;
  border: 0;
  display: block;
}

.footer-newsletter {
  margin-top: 40px;
  padding: 30px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.footer-news-title { font-size: 18px; font-weight: 700; margin: 0 0 4px 0; letter-spacing: -0.2px; }
.footer-news-sub { font-size: 13px; color: rgba(255, 255, 255, 0.85); margin: 0; }

.footer-news-form {
  display: flex;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-news-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 22px;
  color: white;
  font-size: 14px;
  font-family: inherit;
}
.footer-news-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.6); }
.footer-news-form input[type="email"]:focus { outline: none; }
.footer-news-form button {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 32px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  font-family: inherit;
}
.footer-news-form button:hover { background: rgba(255, 255, 255, 0.08); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 18px 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom strong { font-weight: 700; }
.footer-bottom a { color: white; }
.footer-bottom a:hover { color: #FFD6E0; }

@media (max-width: 767px) {
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .footer-bottom { text-align: center; }
  .footer-news-form { border-radius: 30px; }
}

/* ============================================
   UTILS
   ============================================ */
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.py-6 { padding-top: 4rem; padding-bottom: 4rem; }
.py-7 { padding-top: 5rem; padding-bottom: 5rem; }
.py-8 { padding-top: 6rem; padding-bottom: 6rem; }
.py-10 { padding-top: 5rem; padding-bottom: 5rem; }

.height-100 { height: 100%; }

.text-align-center { text-align: center; }
.text-align-left { text-align: left; }
.text-align-right { text-align: right; }
.text-align-justify { text-align: justify; }
@media screen and (min-width: 768px) {
  .text-align-md-left { text-align: left; }
}

.font-weight-300 { font-weight: 300; }
.font-weight-400 { font-weight: 400; }
.font-weight-500 { font-weight: 500; }
.font-weight-600 { font-weight: 600; }
.font-weight-700 { font-weight: 700; }
.font-weight-800 { font-weight: 800; }

.text-transform-uppercase { text-transform: uppercase; }

.zero { height: 0; }

/* TIPOGRAFIA */
h1, .h1 { font-size: clamp(34px, 4vw, 50px); line-height: 1.1; }
h2, .h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.15; }
h3, .h3 { font-size: clamp(22px, 2.4vw, 28px); }
h4, .h4 { font-size: clamp(18px, 1.8vw, 22px); }
h5, .h5 { font-size: 16px; }
.display-4 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; }

.btn-facebook { background-color: #4064AD; border-color: #324e88; color: white; }
.btn-twitter { background-color: #1DA1F2; border-color: #0c85d0; color: white; }
.btn-linkedin { background-color: #0271AE; border-color: #01507c; color: white; }
