:root {
  --bg: #f6f9fc;
  --soft: #eef6fc;
  --surface: #fff;
  --dark: #071827;
  --dark-2: #102a43;
  --text: #132238;
  --muted: #64748b;
  --border: #dbe5ef;
  --primary: #0ea5e9;
  --primary-dark: #0369a1;
  --accent: #f97316;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
  --shadow-hover: 0 32px 90px rgba(15, 23, 42, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --container: 1180px;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f6f9fc 0%, #fff 42%, #eef4f9 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

/* ACESSIBILIDADE */
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: var(--dark);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}

.header-content {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  height: 150px;
  width: auto;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.65), transparent 45%),
    linear-gradient(135deg, var(--dark-2), var(--dark));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.22);
}

.logo-text strong {
  display: block;
  color: var(--dark);
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

/* MENU */
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  transition: 0.25s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.25s;
}

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

.main-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 18px 42px rgba(14, 165, 233, 0.26);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 16px 38px rgba(7, 24, 39, 0.20);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

/* HERO */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 86px 0 62px;
  background: #071827;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.58) contrast(1.05);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(4, 16, 28, 0.95) 0%,
    rgba(4, 16, 28, 0.83) 38%,
    rgba(4, 16, 28, 0.50) 68%,
    rgba(4, 16, 28, 0.22) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.hero .eyebrow,
.dark-section .eyebrow {
  color: #7dd3fc;
}

h1,
h2,
h3 {
  line-height: 1.08;
  color: var(--dark);
}

h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.05em;
}

h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.hero-subtitle,
.section-lead,
.section-heading p {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.hero-points span::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  margin-right: 10px;
}

/* SEÇÕES */
.section {
  padding: 105px 0;
  position: relative;
}

.soft-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(14, 165, 233, 0.10), transparent 28%),
    var(--soft);
}

.dark-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(14, 165, 233, 0.18), transparent 30%),
    linear-gradient(180deg, var(--dark), #102a43);
  color: #fff;
}

.dark-section h2,
.dark-section h3 {
  color: #fff;
}

.dark-section .section-lead,
.muted-light {
  color: #cbd5e1;
}

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

.reverse-mobile .visual-card {
  order: 2;
}

.reverse-mobile > div:last-child {
  order: 1;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading.center p {
  margin-inline: auto;
}

/* CARDS */
.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.07);
  transition: 0.28s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: var(--shadow-hover);
}

.card p {
  color: var(--muted);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 17px;
  background: #e0f2fe;
  color: var(--primary-dark);
  font-weight: 900;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.card li::before,
.check-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  margin-right: 10px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.glass-card p,
.glass-card li {
  color: #cbd5e1;
}

/* LOGOS */
.trust-section {
  padding: 74px 0;
  background: linear-gradient(180deg, #fff, #f8fbfd);
}

.logos-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 38px;
  padding: 10px 0;
}

.logos-carousel::before,
.logos-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-carousel::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.logos-carousel::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: logosScroll 28s linear infinite;
}

.logos-carousel:hover .logos-track {
  animation-play-state: paused;
}

.logo-slide {
  width: 190px;
  height: 100px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.05);
}

.logo-slide img {
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: 0.25s;
}

.logo-slide:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes logosScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* VISUAL */
.visual-card {
  padding: 14px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  border-radius: 24px;
}

.visual-panel {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 28% 18%, rgba(14, 165, 233, 0.72), transparent 24%),
    radial-gradient(circle at 80% 45%, rgba(249, 115, 22, 0.38), transparent 26%),
    linear-gradient(135deg, #102a43, #071827);
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.visual-panel small {
  color: #bae6fd;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.visual-panel strong {
  display: block;
  font-size: 32px;
  line-height: 1.08;
  margin-bottom: 12px;
}

.visual-panel p {
  color: #dbeafe;
  max-width: 430px;
}

/* LISTAS */
.check-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 28px 0;
}

.check-list li {
  display: flex;
  gap: 8px;
}

.light-list li {
  color: #e2e8f0;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.pill-list li {
  padding: 13px 17px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 800;
  color: var(--dark-2);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* TIMELINE */
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.timeline article {
  padding: 26px 18px;
  border-top: 2px solid rgba(14, 165, 233, 0.28);
}

.timeline strong {
  display: block;
  color: rgba(14, 165, 233, 0.22);
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
}

.timeline h3 {
  font-size: 18px;
}

.timeline p {
  font-size: 14px;
  color: var(--muted);
}

/* EXPERTISE */
.expertise-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.07);
}

.expertise-list {
  display: grid;
  gap: 16px;
}

.expertise-list p {
  position: relative;
  margin: 0;
  padding: 20px 22px 20px 52px;
  border-radius: 20px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.66);
}

.expertise-list p::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(14, 165, 233, 0.10);
}

/* FAQ */
.faq-list {
  margin-top: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item button {
  width: 100%;
  padding: 26px 30px;
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--dark);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-size: 26px;
}

.faq-item.active button::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 30px 26px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

/* CONTATO */
.contact-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.18), transparent 32%),
    linear-gradient(180deg, #102a43, #071827);
}

.contact-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding: 60px;
  border-radius: 38px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-box p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.whatsapp-btn {
  margin-top: 28px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-weight: 900;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 17px;
  font: inherit;
  color: var(--dark);
  background: #fff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.full {
  grid-column: 1 / -1;
}

/* BLOG */
.blog-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(14, 165, 233, 0.10), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  overflow: hidden;
}

.blog-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 42px;
}

.blog-title-row h2 {
  max-width: 780px;
}

.blog-carousel-controls {
  display: flex;
  gap: 12px;
}

.blog-arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--dark);
  font-size: 34px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  transition: 0.25s;
}

.blog-arrow:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

.blog-carousel {
  overflow: hidden;
  width: 100%;
}

.blog-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
}

.blog-card {
  flex: 0 0 calc((100% - 72px) / 4);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  transition: 0.28s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.14);
  border-color: rgba(14, 165, 233, 0.35);
}

.blog-image {
  display: block;
  height: 210px;
  background:
    radial-gradient(circle at 25% 20%, rgba(14, 165, 233, 0.20), transparent 32%),
    linear-gradient(135deg, #eaf6fc, #f8fbfd);
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 28px;
}

.blog-category {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.blog-card h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--dark);
}

.blog-card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.blog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.22);
  transition: 0.25s;
}

.blog-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(14, 165, 233, 0.30);
}

/* ARTIGO */
.article-page {
  padding: 95px 0;
  background: #fff;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 80px;
  align-items: start;
}

.article-category {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.article-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--dark);
  max-width: 900px;
  margin-bottom: 18px;
}

.article-date {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 34px;
}

.article-main-image {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 30px;
  margin-bottom: 42px;
  box-shadow: var(--shadow);
}

.article-body p {
  font-size: 19px;
  line-height: 1.9;
  color: #1f2937;
  margin-bottom: 22px;
}

.article-back {
  display: inline-flex;
  margin-top: 45px;
  padding: 16px 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 900;
}

.article-sidebar {
  position: sticky;
  top: 110px;
  padding: 32px;
  border-radius: 28px;
  background: #f8fbfd;
  border: 1px solid var(--border);
}

.article-sidebar h3 {
  color: var(--primary-dark);
  font-size: 24px;
  margin-bottom: 20px;
}

.article-sidebar ul {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.article-sidebar a,
.article-sidebar li {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.55;
}

.article-sidebar a:hover {
  color: var(--primary-dark);
}

/* FOOTER */
/* ==========================================================
   FOOTER RF WAVE
========================================================== */

.site-footer{
    background:linear-gradient(180deg,#f8fbff 0%,#eef5fb 100%);
    border-top:4px solid #0EA5E9;
    font-family:"Segoe UI",Roboto,Arial,sans-serif;
    color:#334155;
    padding:32px 0 0;
}

.footer-content{
    width:min(100% - 40px,1180px);
    margin:0 auto;
}

/* ==========================================================
   CONTEÚDO
========================================================== */

.footer-info{
    display:grid;
    grid-template-columns:340px 1fr 280px;
    gap:60px;
    align-items:center;
}

/* ==========================================================
   MARCA
========================================================== */

.footer-brand{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.footer-brand a{
    display:inline-block;
    width:max-content;
}

.footer-logo{
    width:240px;
    height:auto;
    display:block;
    transition:.25s ease;
}

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

.footer-brand p{
    margin-top:14px;
    max-width:300px;
    color:#64748b;
    font-size:15px;
    line-height:1.7;
}

/* ==========================================================
   ENDEREÇO / CONTATO
========================================================== */

.footer-address,
.footer-contact{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.footer-info strong{
    display:block;
    margin-bottom:10px;
    color:#0f172a;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.18em;
}

.footer-info p{
    margin:0;
    color:#475569;
    font-size:15px;
    line-height:1.8;
}

.footer-info a{
    color:#0078C8;
    text-decoration:none;
    transition:.25s;
}

.footer-info a:hover{
    color:#004D80;
}

/* ==========================================================
   COPYRIGHT
========================================================== */

.footer-copy{
    margin-top:30px;
    background:#071827;
    border-top:3px solid #0EA5E9;
    color:#d8e6f2;
    text-align:center;
    padding:18px;
    font-size:14px;
}

/* ==========================================================
   RESPONSIVO
========================================================== */

@media(max-width:1024px){

    .footer-info{
        grid-template-columns:1fr;
        gap:28px;
        text-align:center;
    }

    .footer-brand,
    .footer-address,
    .footer-contact{
        align-items:center;
    }

    .footer-brand p{
        max-width:100%;
    }

    .footer-logo{
        width:220px;
    }

}

@media(max-width:768px){

    .site-footer{
        padding-top:28px;
    }

    .footer-content{
        width:min(100% - 30px,1180px);
    }

    .footer-logo{
        width:190px;
    }

    .footer-brand p,
    .footer-info p{
        font-size:14px;
        line-height:1.7;
    }

    .footer-copy{
        font-size:13px;
        padding:16px;
    }

}
/* WHATSAPP E VOLTAR AO TOPO */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.28);
  z-index: 9999;
  font-size: 24px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.22);
  animation: pulseWhatsapp 2.2s infinite;
}

@keyframes pulseWhatsapp {
  0% {
    transform: scale(0.92);
    opacity: 1;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.back-to-top {
  position: fixed;
  right: 95px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s;
  z-index: 9998;
  box-shadow: 0 16px 38px rgba(14, 165, 233, 0.25);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ANIMAÇÕES */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 1200px) {
  .blog-card {
    flex-basis: calc((100% - 48px) / 3);
  }
}

@media (max-width: 1100px) {
  .cards-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .main-nav.active {
    display: flex;
  }

  .two-columns,
  .contact-box,
  .expertise-panel,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .reverse-mobile .visual-card,
  .reverse-mobile > div:last-child {
    order: initial;
  }

  .blog-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .article-sidebar {
    position: static;
  }

  .logos-carousel::before,
  .logos-carousel::after {
    width: 42px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero,
  .section,
  .contact-section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 16, 28, 0.90),
      rgba(4, 16, 28, 0.78)
    );
  }

  h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .cards-grid.four,
  .cards-grid.three,
  .timeline,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-box,
  .expertise-panel {
    padding: 30px;
    border-radius: 28px;
  }

  .visual-panel {
    min-height: 330px;
    padding: 28px;
  }

  .blog-card {
    flex-basis: 100%;
  }

  .blog-image {
    height: 190px;
  }

  .blog-arrow {
    width: 50px;
    height: 50px;
  }

  .back-to-top {
    right: 16px;
    bottom: 86px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }

  .article-page {
    padding: 60px 0;
  }

  .article-sidebar {
    padding: 24px;
  }

  .logo-text small {
    display: none;
  }

  .logo img {
    height: 90px;
  }
}