
*, *::before, *::after { 
  margin: 0;
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}
 
body {
  font-family: 'Segoe UI', Tahoma !important;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main { 
  padding: 0.2rem 0.4rem;
}

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

a { 
  text-decoration:none; 
}
ul { 
  list-style:none;
 }

/* Variaveis de cores */
:root {
  /* Marca */
  --blue-primary:   #1F4CA6;
  --blue-dark:      #072B59;
  --blue-deep:      #0A2140;
  --gold:           #D9B573;
  --gold-light:     #f7f0de;
  --pink:           #DF4396;
  --pink-light:     #fce8f4;
  --off-white:      #F2F2F2;

  /* Neutros */
  --dark:           #0A2140;
  --gray-900:       #1a1a1a;
  --gray-700:       #444444;
  --gray-500:       #777777;
  --gray-300:       #cccccc;
  --gray-100:       #F2F2F2;
  --border:         rgba(0,0,0,0.08);
  --white:          #ffffff;

  /* Tipografia */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Espaçamento */
  --section-gap: 100px;

  /* Raio */
  --radius-sm:  8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  /* Sombras */
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.06);
  --shadow-md:   0 12px 40px rgba(0,0,0,0.10);
  --shadow-lg:   0 24px 60px rgba(0,0,0,0.14);
  --shadow-blue: 0 8px 24px rgba(31,76,166,0.35);
  --shadow-gold: 0 8px 24px rgba(217,181,115,0.35);

  /* Transição */
  --transition: all 0.25s ease;
}

/* Header */
#main-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  background: var(--white);
  border-bottom: 1px solid rgba(31,76,166,0.1);
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
#main-header.scrolled { 
  box-shadow: 0 4px 24px rgba(7,43,89,0.12); 
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-left { 
  display:flex; 
  align-items:center; 
  gap:14px; 
}
.nav-right { 
  display:flex; 
  align-items:center; 
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blue-dark);
  letter-spacing: -0.5px;
}
.brand span { color: var(--gold); }

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.desktop-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.desktop-nav a:hover {
  color: var(--blue-primary);
  background: rgba(31,76,166,0.07);
}

.menu-toggle {
  background: transparent;
  border: none;
  color: var(--gray-900);
  font-size: 1.4rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.menu-toggle:hover { background: var(--gray-100); }

/* Mobile only */
.mobile-only { 
  display: none; 
}

/* Overlay */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,43,89,0.5);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
#overlay.active { 
  opacity: 1; 
  visibility: visible; 
}

/* Sidebar (mobile) */
#sidebar {
  position: fixed;
  top: 0; left: -300px;
  width: 280px;
  height: 100%;
  background: var(--white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
}
#sidebar.open { 
  left: 0; 
}

.sidebar-header {
  padding: 0 16px;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(31,76,166,0.1);
  flex-shrink: 0;
  background: var(--blue-deep);
}

.sidebar-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}
.sidebar-brand span { 
  color: var(--gold); 
}

.sidebar-header .menu-toggle { 
  color: rgba(255,255,255,0.8); 
}
.sidebar-header .menu-toggle:hover { 
  background: rgba(255,255,255,0.1); 
}

.sidebar-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px 20px;
  display: flex;
  flex-direction: column;
}

.menu-section-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  padding: 10px 12px 6px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: var(--gray-900);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 2px;
}
.nav-link i { 
  width: 18px; 
  color: var(--blue-primary); 
  font-size: 0.95rem; 
}
.nav-link:hover { 
  background: rgba(31,76,166,0.08); 
  color: var(--blue-primary); 
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 12px;
}

.sidebar-cta {
  padding: 16px 12px 0;
  margin-top: auto;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-900);
  border: 1px solid var(--border);
}
.btn-ghost:hover { 
  background: var(--gray-100); 
}
.btn-sm { 
  padding: 8px 16px; 
  font-size: 13px; 
}
.btn-full {
  width: 100%; 
  justify-content: center;
}

.btn-large { 
  padding: 16px 36px; 
  font-size: 15px; 
}

/* Hero */
#hero {
  margin-top: 4.7rem;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 20px;
}

.hero-bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #1a1a1a6b;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-title span { 
  color: var(--gold); 
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat { 
  text-align: center; 
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-num span { 
  color: var(--gold); 
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 400;
}

/* Section Geral */

section {
  border-radius: 20px;
  margin-top: 0.5rem;
  padding: var(--section-gap) 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--blue-deep);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 540px;
  font-weight: 300;
}

.section-header-center { 
  text-align: center; 
  margin-bottom: 56px; 
}

.center-sub { 
  margin: 0 auto; 
}

.text-accent { 
  color: var(--blue-primary); 
}

/* Tecnologias */
#tecnologia {
  background: var(--blue-deep);
  padding: 80px 0;
}
#tecnologia .section-tag { 
  color: var(--gold); 
}

#tecnologia .section-title { 
  color: var(--white); 
}

#tecnologia .section-title .text-accent { 
  color: var(--gold); 
}

#tecnologia .center-sub { 
  color: rgba(255,255,255,0.6); 
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(217,181,115,0.2);
  padding: 26px 30px;
  border-radius: 16px;
  min-width: 120px;
  transition: var(--transition);
  cursor: default;
}
.tool-card:hover {
  background: rgba(217,181,115,0.1);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.tool-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(217,181,115,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
}
.tool-card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-align: center;
}

/* Sobre */

#sobre { 
  background: var(--white); 
}

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

.sobre-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 10px;
  border: 1.5px solid #f0f0f0;
  transition: var(--transition);
}
 
.feature-item:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 4px 20px rgba(31,76,166,0.08);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(31,76,166,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-primary);
  font-size: 17px;
}
.feature-text h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 4px;
}
.feature-text p { 
  font-size: 13px; 
  color: #888; 
  line-height: 1.6; 
}

.sobre-img-wrap {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.sobre-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.sobre-badge-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-primary);
}
.badge-text { 
  font-size: 12px; 
  color: #888; 
  line-height: 1.4; 
  font-weight: 500; 
}

/*  Serviços  */

#servicos { 
  background: var(--off-white); 
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  border: 1.5px solid #ebebeb;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { 
  transform: scaleX(1); 
}

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(31,76,166,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue-primary);
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
}
.service-card p { 
  font-size: 14px; 
  color: #888; 
  line-height: 1.7; 
  margin-bottom: 18px; 
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-primary);
  transition: gap 0.2s;
}
.service-link:hover { 
  gap: 10px; 
}

/* Prtfólio */

#portfolio { 
  background: var(--white); 
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid #ebebeb;
  transition: var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.portfolio-img-wrap { 
  position: relative; 
  overflow: hidden; 
}

.portfolio-img-wrap img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-img-wrap img { 
  transform: scale(1.05); 
}

.portfolio-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--blue-primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.portfolio-badge--gold { 
  background: var(--gold); 
  color: var(--blue-deep); 
}

.portfolio-badge--pink { 
  background: var(--pink); 
}

.portfolio-info { 
  padding: 20px; 
}

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 6px;
}

.portfolio-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-primary);
  margin-bottom: 12px;
}
.portfolio-price small { 
  font-size: 13px; 
  font-weight: 500; 
  color: #aaa; 
}

.portfolio-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #999;
  flex-wrap: wrap;
}
.portfolio-meta span { 
  display:flex; 
  align-items:center; 
  gap:4px; 
}

.portfolio-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}
.portfolio-actions a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-primary);
}
.portfolio-icons { 
  display:flex; 
  gap:8px; 
}

.icon-btn {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--gray-500);
}
.icon-btn:hover { 
  border-color: var(--pink); 
  color: var(--pink); 
}

/*  POR QUÊ NÓS */
#porque { 
  background: var(--white); 
}

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

.porque-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.porque-item {
  padding: 22px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1.5px solid #ebebeb;
  transition: var(--transition);
}
.porque-item:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 6px 24px rgba(31,76,166,0.08);
  background: var(--white);
}
.porque-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(31,76,166,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-size: 16px;
  margin-bottom: 12px;
}
.porque-item h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 6px;
}
.porque-item p { 
  font-size: 12px; 
  color: #999; 
  line-height: 1.6; 
}

.porque-img { 
  position: relative; 
  border-radius: 16px; 
}
.porque-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 5px;
}
.porque-float {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--gold);
  color: var(--blue-deep);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: var(--shadow-gold);
}
.porque-float-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}
.porque-float-label { 
  font-size: 12px; 
  opacity: 0.8; 
  font-weight: 500; 
  margin-top: 2px; 
}

/*  Público */

#nichos { 
  background: var(--off-white); 
}

.nichos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
}

.nichos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.nicho-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.nicho-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.nicho-card:hover img { 
  transform: scale(1.06); 
}

.nicho-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,43,89,0.88) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.nicho-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.nicho-count { 
  font-size: 12px; 
  color: rgba(255,255,255,0.65); 
  margin-top: 2px; 
}

/* 

#equipe { 
  background: var(--white); 
}

.equipe-header {
  text-align: center;
  margin-bottom: 52px;
}
.equipe-header .section-sub { 
  margin: 0 auto; 
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;

}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid #ebebeb;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.team-img-wrap { 
  position: relative; 
  overflow: hidden; 
}

.team-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img-wrap img { 
  transform: scale(1.06); 
}

.team-accent-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.team-card:hover .team-accent-bar { 
  transform: scaleX(1); 
}

.team-info { 
  padding: 16px 14px; 
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  color: var(--blue-primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-social { 
  display:flex; 
  justify-content:center; 
  gap:8px; 
}

.team-social a {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1.5px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray-500);
  transition: var(--transition);
}
.team-social a:hover { 
  border-color: var(--pink); 
  color: var(--pink); 
}

*/

/* Depoimentos */

#depoimentos { 
  background: var(--off-white); 
}

.depoimentos-header { 
  text-align:center;
  margin-bottom: 52px; 
}

.testimonial-slider {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.testimonial-quote {
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
  font-weight: 300;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.author-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
}
.author-company { 
  font-size: 12px; 
  color: #999; 
}

.testimonial-dots { 
  display:flex; 
  justify-content:center; 
  gap:8px; 
  margin-top: 28px; 
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { 
  background: var(--blue-primary); 
  width: 24px; 
  border-radius: 4px; 
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid #ebebeb;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 12px 40px rgba(31,76,166,0.1);
  transform: translateY(-4px);
}
.stars { 
  color: var(--gold); 
  font-size: 13px; 
  letter-spacing: 3px; 
  margin-bottom: 14px; 
}

.testi-card p { 
  color: var(--gray-500); 
  font-size: 14px; 
  line-height: 1.8; 
  font-style: italic; 
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.client-info strong { 
  display:block; 
  color: var(--blue-dark); 
  font-weight:700; 
  font-size:14px; 
}

.client-info small { 
  color: var(--gray-500); 
  font-size: 12px; 
}

/* Cases */

#casos { 
  background: var(--off-white); 
}

.casos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.casos-list { 
  display:flex; 
  flex-direction:column; 
  gap:18px; 
}

.caso-item {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 26px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid #ebebeb;
  padding: 20px;
  transition: var(--transition);
}
.caso-item:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 8px 28px rgba(31,76,166,0.08);
}
.caso-item > img {
  width: 260px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.caso-info h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.caso-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-primary);
  margin-bottom: 12px;
}

.caso-price small { 
  font-size: 13px; 
  font-weight: 500; 
  color: #aaa; 
}

.caso-tags { 
  display:flex; 
  gap:10px; flex-wrap:wrap; 
}

.caso-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(31,76,166,0.07);
  color: var(--blue-primary);
}
.caso-tag--highlight { 
  background: #fef3c7; 
  color: #d97706; 
}

.caso-tag--pink { 
  background: var(--pink-light); 
  color: var(--pink); 
}

.caso-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.caso-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #aaa;
}

/* Perguntas Frequentes */

#faq { 
  background: var(--white); 
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { 
  border-color: var(--blue-primary); 
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(31,76,166,0.04); }
.faq-question span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-question span i { color: var(--gold); font-size: 16px; flex-shrink: 0; }

.faq-chevron {
  color: var(--blue-primary);
  font-size: 13px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}
.faq-answer p strong { color: var(--blue-primary); }

/* ── 22. CONTATO ──────────────────────────── */
#contato { background: var(--off-white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-sub { margin-bottom: 28px; }

.contact-details { margin-bottom: 28px; }
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-900);
  font-size: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.contact-details li i { color: var(--blue-primary); width: 18px; }

.contact-social { display:flex; gap:10px; }
.social-btn {
  width: 42px;
  height: 42px;
  background: rgba(31,76,166,0.07);
  border: 1px solid rgba(31,76,166,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--pink); color: var(--white); border-color: var(--pink); }

.contact-form { display:flex; flex-direction:column; gap:14px; }

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(31,76,166,0.15);
  border-radius: 10px;
  background: var(--white);
  color: var(--gray-900);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(31,76,166,0.08);
}
.form-group input::placeholder { color: #b0b8cc; }
.form-group select { cursor: pointer; color: #b0b8cc; }
.form-group select:valid { color: var(--gray-900); }

/* ── 23. CONTACT BAR ──────────────────────── */
#contato-bar {
  background: var(--blue-deep);
  padding: 60px 0;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.contato-item { display:flex; align-items:flex-start; gap:14px; }
.contato-icon {
  width: 44px;
  height: 44px;
  background: rgba(217,181,115,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.contato-text label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 4px;
}
.contato-text p { 
  font-size: 14px; 
  font-weight: 500; 
  color: var(--white); 
}

/* Privacidade */

#privacidade { 
  background: var(--off-white); 
}

.privacy-inner > .section-sub { 
  margin-bottom: 48px; 
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.privacy-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  border: 1.5px solid #ebebeb;
  transition: var(--transition);
}
.privacy-card:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 8px 24px rgba(31,76,166,0.08);
  transform: translateY(-3px);
}
.privacy-icon {
  width: 48px;
  height: 48px;
  background: rgba(31,76,166,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-size: 20px;
  margin-bottom: 16px;
}
.privacy-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.privacy-card p { 
  font-size: 13px; 
  color: #888; 
  line-height: 1.7; 
}
.privacy-card p strong { 
  color: var(--blue-primary); 
}

/*  WHATSAPP  */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 500;
  transition: var(--transition);
  animation: whatsapp-bounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes whatsapp-bounce {
  0%,100% { 
    transform: translateY(0); 
  }
  50% { 
    transform: translateY(-6px); 
  }
}

.icon{
  width: 70%;
  height: 70%;
  border-radius: 100% ;
}

/* Footer */

footer {
  background: var(--blue-deep);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand h2 span { color: var(--gold); }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.footer-social { 
  display:flex; gap:10px; 
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { 
  background: var(--gold); 
  border-color: var(--gold); 
  color: var(--blue-deep); 
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col ul { 
  display:flex; 
  flex-direction:column; 
  gap:10px; 
}

.footer-col ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { 
  color: var(--gold); 
}

.footer-col ul a i { 
  font-size: 11px; 
  width: 14px; 
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* Scroll */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity:1; transform:translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* Responsividade */

@media (max-width: 1100px) {
  .desktop-nav a { 
    font-size: 12.5px; 
    padding: 6px 7px; 
  }
}

@media (max-width: 1024px) {
  .container { 
    padding: 0 30px; 
  }
  .desktop-nav { 
    display: none; 
  }
  .mobile-only { 
    display: flex;
   }
  .nav-right .btn-sm span {
    display: none; 
  }

  .sobre-grid, .solucoes-grid, .porque-grid, .contact-inner {   
    grid-template-columns: 1fr; 
    gap: 48px; 
  }

  .equipe-grid { 
    grid-template-columns: repeat(3, 1fr); 
  }
  .footer-grid { 
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 32px; 
  }
  .nichos-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .roi-section { 
    grid-template-columns: 1fr; 
    gap: 40px; 
    padding: 60px 40px; 
  }
  .privacy-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 768px) {
  :root { 
    --section-gap: 64px; 
  }

  .hero-title { 
    font-size: clamp(36px, 8vw, 54px); 
    letter-spacing: -1px; 
  }
  .hero-stats { 
    gap: 28px; 
  }
  .hero-content { 
    padding: 60px 24px; 
  }

  .services-grid,
  .portfolio-grid,
  .testi-grid { 
    grid-template-columns: 1fr; 
  }

  .services-header,
  .portfolio-header,
  .nichos-header,
  .casos-header { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 16px; 
  }

  .equipe-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 28px; 
  }
  .footer-bottom { 
    flex-direction: column; 
    gap: 14px; 
    text-align: center; 
  }

  .caso-item { 
    grid-template-columns: 1fr; 
  }
  .caso-item > img { 
    width: 100%; 
    height: 180px;
  }
  .caso-cta { 
    align-items: flex-start; 
  }

  .contato-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  .privacy-grid {
    grid-template-columns: 1fr; 
  }
  .solucoes-cards { 
    grid-template-columns: 1fr 1fr; 
  }
}

@media (max-width: 480px) {
  .hero-actions { 
    flex-direction: column; 
    align-items: stretch; 
  }
  .hero-actions .btn { 
    justify-content: center; 
  }
  .equipe-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  .solucoes-cards { 
    grid-template-columns: 1fr; 
  }
  .tools-grid { 
    gap: 10px; 
  }
  .tool-card { 
    min-width: 90px; 
    padding: 18px 14px; 
  }
  .contato-grid { 
    grid-template-columns: 1fr; 
  }
  .porque-features { 
    grid-template-columns: 1fr; 
  }
  .roi-section { 
    padding: 40px 24px; 
  }
  .header-inner { 
    padding: 0 16px; 
  }
  .container { 
    padding: 0 18px; 
  }
}
