﻿/* ═══════════════════════════════════════════
   CARRARA SOLUTIONS® — Clean & Conversion-Focused
   ═══════════════════════════════════════════ */

:root {
  --blue:       #1a56db;
  --blue-dark:  #1447bb;
  --blue-light: #eff6ff;
  --text:       #111827;
  --text-2:     #4b5563;
  --text-3:     #9ca3af;
  --border:     #e5e7eb;
  --bg:         #ffffff;
  --bg-light:   #f9fafb;
  --bg-dark:    #111827;
  --green:      #16a34a;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 1px 3px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.06);
  --shadow-lg:  0 4px 6px rgba(0,0,0,.05), 0 20px 40px rgba(0,0,0,.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
::selection { background: #dbeafe; }

/* ── SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

/* ── BUTTONS ──────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,86,219,.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue);
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px;
  border: 2px solid var(--blue); transition: all .2s;
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-wpp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; border: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-wpp:hover { background: #22c55e; transform: translateY(-1px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue);
  padding: 12px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; border: none;
  transition: all .2s;
}
.btn-white:hover { background: #f0f7ff; transform: translateY(-1px); }

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

.btn-nav-wpp {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f0fdf4; color: #16a34a;
  border: 1.5px solid #bbf7d0;
  padding: 9px 18px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; transition: all .2s;
}
.btn-nav-wpp:hover { background: #dcfce7; }

/* ── LAYOUT ─────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-dark  { background: var(--bg-dark); }
.section-light { background: var(--bg-light); }
.section-blue  { background: var(--blue); }

/* ── SECTION HEAD ────────────────────────────── */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; line-height: 1.2; color: var(--text); margin-bottom: 16px; }
.section-head.light h2, .light-h { color: #fff; }
.section-sub { font-size: 17px; color: var(--text-2); max-width: 580px; margin: 0 auto; line-height: 1.7; }

.section-tag {
  display: inline-block; padding: 6px 14px; border-radius: 100px;
  background: var(--blue-light); color: var(--blue);
  font-size: 13px; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 14px; text-transform: uppercase;
}
.light-tag { background: rgba(255,255,255,.15); color: #fff; }

.highlight { color: var(--blue); }

/* ── HEADER / NAV ────────────────────────────── */
#header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: var(--shadow); }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 68px; gap: 24px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 17px; color: var(--text);
  white-space: nowrap;
}
.logo strong { color: var(--blue); }
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; flex-shrink: 0;
}

.nav-links {
  display: flex; list-style: none; gap: 4px; align-items: center;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-size: 14px;
  font-weight: 500; color: var(--text-2); transition: all .2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-light); }

/* ── DROPDOWN ─────────────────────────────────── */
.has-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-2);
  background: none; border: none; cursor: pointer;
  transition: all .2s; font-family: inherit;
  white-space: nowrap;
}
.nav-dropdown-btn:hover { color: var(--text); background: var(--bg-light); }
.nav-dropdown-btn svg { transition: transform .25s; }
.has-dropdown:hover .nav-dropdown-btn svg,
.has-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  min-width: 300px; z-index: 200;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
/* ponte invisível que cobre o gap entre o botão e o menu */
.dropdown-menu::before {
  content: ''; position: absolute; top: -12px; left: 0;
  width: 100%; height: 12px;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dd-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: 10px;
  transition: background .15s; text-decoration: none;
}
.dd-item:hover { background: var(--bg-light); }
.dd-icon { font-size: 22px; width: 40px; text-align: center; flex-shrink: 0; }
.dd-text { display: flex; flex-direction: column; gap: 2px; }
.dd-name { font-size: 14px; font-weight: 700; color: var(--text); }
.dd-price { font-size: 12px; font-weight: 600; color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s;
}

.mobile-menu {
  display: none; flex-direction: column;
  padding: 12px 24px 20px; gap: 4px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mob-link {
  padding: 12px 16px; border-radius: 10px; font-weight: 500;
  color: var(--text-2); transition: all .2s;
}
.mob-link:hover { color: var(--text); background: var(--bg-light); }
.mob-cta { margin-top: 8px; text-align: center; justify-content: center; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(160deg, #f8faff 0%, #fff 60%);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fef3c7; color: #92400e;
  border: 1px solid #fde68a;
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-text h1 {
  font-size: clamp(36px, 5vw, 58px); font-weight: 900;
  line-height: 1.1; color: var(--text); margin-bottom: 20px;
}
.hero-desc {
  font-size: 18px; color: var(--text-2);
  line-height: 1.7; margin-bottom: 36px; max-width: 520px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hero-trust {
  display: flex; align-items: center; gap: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 24px;
  box-shadow: var(--shadow); width: fit-content;
}
.trust-item { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.trust-item strong { font-size: 20px; font-weight: 800; color: var(--text); }
.trust-item span { font-size: 12px; color: var(--text-3); margin-top: 2px; white-space: nowrap; }
.trust-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  transition: transform .3s;
}
.main-card { padding: 24px; }
.main-card:hover { transform: translateY(-4px); }

.card-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  margin-bottom: 20px;
}
.card-dot { width: 8px; height: 8px; border-radius: 50%; }
.card-dot.green { background: #22c55e; box-shadow: 0 0 0 3px #dcfce7; }

.metric-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.metric-label { font-size: 13px; color: var(--text-2); font-weight: 500; }
.metric-badge { padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 700; }
.metric-badge.up { background: #dcfce7; color: #16a34a; }
.metric-value { font-size: 32px; font-weight: 900; color: var(--text); margin-bottom: 16px; }

.mini-chart svg { width: 100%; height: 60px; }
.card-stats {
  display: flex; gap: 0; margin-top: 16px;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.cs-item { flex: 1; text-align: center; }
.cs-item:not(:last-child) { border-right: 1px solid var(--border); }
.cs-num { font-size: 18px; font-weight: 800; margin-bottom: 2px; }
.cs-num.blue  { color: var(--blue); }
.cs-num.green { color: var(--green); }
.cs-num.orange { color: #f59e0b; }
.cs-label { font-size: 11px; color: var(--text-3); font-weight: 500; }

.side-card-1 {
  position: absolute; top: -24px; right: -24px;
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  animation: floatUp 4s ease-in-out infinite;
}
.side-card-2 {
  position: absolute; bottom: -24px; left: -24px;
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  animation: floatUp 4s ease-in-out infinite 2s;
}
@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.sc-icon { font-size: 24px; }
.sc-val { font-size: 18px; font-weight: 800; color: var(--text); }
.sc-label { font-size: 12px; color: var(--text-3); }

/* ── LOGOS ─────────────────────────────────────── */
.logos-section {
  padding: 40px 0; border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}
.logos-title {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--text-3); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 24px;
}
.logos-grid {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px 24px; align-items: center;
}
.logo-item {
  padding: 10px 20px; border-radius: 8px;
  background: #fff; border: 1px solid var(--border);
  font-weight: 700; font-size: 14px; color: var(--text-3);
  letter-spacing: .5px; transition: all .2s;
}
.logo-item:hover { color: var(--blue); border-color: #bfdbfe; background: var(--blue-light); }

/* ── SERVICES ──────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all .25s; position: relative;
}
.service-card:hover {
  border-color: #93c5fd; box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.svc-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.service-card > p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.svc-list li {
  font-size: 14px; color: var(--text-2); padding-left: 20px; position: relative;
}
.svc-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700;
}
.svc-link {
  font-size: 14px; font-weight: 700; color: var(--blue);
  transition: gap .2s; display: inline-flex; align-items: center;
}
.svc-link:hover { text-decoration: underline; }

.services-more {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.services-more p { font-size: 15px; color: var(--text-2); }
.services-more strong { color: var(--text); }

/* ── NUMBERS ───────────────────────────────────── */
.numbers-grid {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 2px; margin-bottom: 64px;
  background: rgba(255,255,255,.06); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1); overflow: hidden;
}
.number-box {
  flex: 1; min-width: 160px; padding: 40px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.number-box:last-child { border-right: none; }
.nb-num {
  font-size: clamp(30px, 4vw, 44px); font-weight: 900; color: #fff;
  margin-bottom: 8px; line-height: 1;
}
.nb-label { font-size: 14px; color: rgba(255,255,255,.6); }

/* Cases */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 28px; transition: all .25s;
}
.case-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); transform: translateY(-3px); }
.case-top { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.case-company { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: .5px; }
.case-sector { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.case-story { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 24px; }
.case-results { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; }
.cr-item { flex: 1; text-align: center; }
.cr-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); }
.cr-num { font-size: 22px; font-weight: 900; color: #60a5fa; margin-bottom: 4px; }
.cr-label { font-size: 11px; color: rgba(255,255,255,.5); line-height: 1.4; }

/* ── HOW IT WORKS ──────────────────────────────── */
.steps-grid {
  display: flex; align-items: flex-start; gap: 0;
  margin-bottom: 56px;
}
.step-card {
  flex: 1; padding: 32px 28px; text-align: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: all .25s;
}
.step-card:hover { border-color: #93c5fd; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.step-num {
  display: inline-block; width: 44px; height: 44px;
  background: var(--blue-light); color: var(--blue);
  border-radius: 12px; font-size: 16px; font-weight: 900;
  line-height: 44px; text-align: center; margin-bottom: 16px;
}
.step-card h3 { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; font-size: 22px; color: var(--text-3);
  flex-shrink: 0; margin-top: 60px;
}
.steps-cta {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.cta-note { font-size: 14px; color: var(--text-3); }

/* ── WHY carrara ────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.why-left { padding-top: 16px; }
.why-left .section-tag { margin-bottom: 16px; }
.why-left h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.why-left p { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 32px; line-height: 1.7; }
.why-right { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 20px 24px; transition: all .2s;
}
.why-item:hover { background: rgba(255,255,255,.12); }
.why-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.why-item p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0; }

/* ── TESTIMONIALS ──────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.testimonial-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: all .25s;
}
.testimonial-card:hover { border-color: #93c5fd; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.test-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card > p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff; flex-shrink: 0;
}
.test-avatar.blue   { background: linear-gradient(135deg, #1a56db, #3b82f6); }
.test-avatar.purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.test-avatar.green  { background: linear-gradient(135deg, #16a34a, #4ade80); }
.test-avatar.orange { background: linear-gradient(135deg, #ea580c, #fb923c); }
.test-author strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.test-author span   { font-size: 13px; color: var(--text-3); }

/* ── FAQ ───────────────────────────────────────── */
.faq-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: #93c5fd; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none;
  font-size: 16px; font-weight: 600; color: var(--text);
  text-align: left; gap: 16px; transition: background .2s;
}
.faq-q:hover { background: var(--bg-light); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400; flex-shrink: 0; transition: all .3s;
}
.faq-item.open .faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 24px 20px;
  font-size: 15px; color: var(--text-2); line-height: 1.75;
}
.faq-a a { color: var(--blue); font-weight: 600; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ───────────────────────────────────── */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start;
}
.contact-left h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 900; margin-bottom: 16px; line-height: 1.2; }
.contact-left > p { font-size: 16px; color: var(--text-2); margin-bottom: 32px; line-height: 1.7; }
.contact-opts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: var(--radius);
  border: 1px solid var(--border); background: #fff;
  transition: all .2s;
}
.contact-opt:hover { border-color: #93c5fd; background: var(--blue-light); }
.co-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.co-icon.wpp { background: #dcfce7; color: #16a34a; }
.co-icon.email { background: var(--blue-light); }
.contact-opt strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.contact-opt span { font-size: 13px; color: var(--text-2); }
.contact-guarantees { display: flex; flex-direction: column; gap: 8px; }
.cg-item { font-size: 14px; color: var(--text-2); }

/* Contact Form */
.contact-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 15px; color: var(--text);
  background: #fff; outline: none; font-family: inherit;
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group select { color: var(--text); cursor: pointer; }
.form-note { font-size: 13px; color: var(--text-3); text-align: center; margin-top: 12px; }
.form-success {
  margin-top: 16px; padding: 16px 20px; border-radius: var(--radius);
  background: #f0fdf4; border: 1px solid #bbf7d0;
  color: var(--green); font-size: 15px; font-weight: 500;
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: #111827; color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,.5);
  line-height: 1.7; margin-bottom: 20px; max-width: 280px;
}
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-socials a {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.5); transition: color .2s;
}
.footer-socials a:hover { color: #fff; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px; color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ── HERO PHOTO ─────────────────────────────────── */
.hero-photo-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: visible;
}
.hero-photo {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.hero-float-card {
  position: absolute; bottom: -20px; left: -20px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-lg); min-width: 210px;
}
.hfc-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--text-3);
  margin-bottom: 6px;
}
.hfc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 3px #dcfce7;
}
.hfc-val {
  font-size: 22px; font-weight: 900; color: var(--text);
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 2px;
}
.hfc-up { font-size: 13px; font-weight: 700; color: #16a34a; }
.hfc-label { font-size: 12px; color: var(--text-3); }
.hero-avatars {
  position: absolute; top: -16px; right: -16px;
  display: flex; align-items: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 14px 8px 8px;
  box-shadow: var(--shadow);
}
.hero-avatars img {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover; border: 2px solid #fff;
  margin-left: -8px;
}
.hero-avatars img:first-child { margin-left: 0; }
.avatar-more {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; margin-left: -8px; flex-shrink: 0;
}
.hero-avatars-label {
  position: absolute; top: 28px; right: -16px;
  font-size: 11px; font-weight: 600; color: var(--text-3);
  background: #fff; border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 10px;
  box-shadow: var(--shadow); white-space: nowrap;
}

/* ── SOBRE ───────────────────────────────────────── */
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.sobre-fotos { position: relative; }
.sf-main img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius-lg); display: block;
  box-shadow: var(--shadow-lg);
}
.sf-secondary {
  position: absolute; bottom: -28px; right: -28px;
  width: 220px;
}
.sf-secondary img {
  width: 100%; height: 160px; object-fit: cover;
  border-radius: var(--radius); display: block;
  border: 4px solid #fff; box-shadow: var(--shadow-lg);
}
.sf-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--blue); color: #fff;
  border-radius: var(--radius); padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(26,86,219,.4);
}
.sfb-num { font-size: 22px; font-weight: 900; line-height: 1; }
.sfb-txt { font-size: 11px; opacity: .85; margin-top: 2px; max-width: 100px; line-height: 1.3; }

.sobre-texto .section-tag { margin-bottom: 14px; }
.sobre-texto h2 {
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 900;
  line-height: 1.2; color: var(--text); margin-bottom: 16px;
}
.sobre-texto > p { font-size: 16px; color: var(--text-2); line-height: 1.75; }
.sobre-valores {
  display: flex; flex-direction: column; gap: 16px;
  margin: 28px 0 32px;
}
.sv-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px; border-radius: var(--radius);
  background: var(--bg-light); border: 1px solid var(--border);
  transition: border-color .2s;
}
.sv-item:hover { border-color: #93c5fd; }
.sv-ico { font-size: 22px; flex-shrink: 0; }
.sv-item strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.sv-item p { font-size: 13px; color: var(--text-2); margin: 0; line-height: 1.6; }

/* ── TEST PHOTO ──────────────────────────────────── */
.test-photo {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--border);
}

/* ── TEAM ────────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.team-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .25s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg); border-color: #93c5fd;
}
.team-photo-wrap {
  position: relative; overflow: hidden;
}
.team-photo-wrap img {
  width: 100%; height: 240px; object-fit: cover;
  object-position: top; display: block;
  transition: transform .4s ease;
}
.team-card:hover .team-photo-wrap img { transform: scale(1.04); }
.team-social {
  position: absolute; top: 12px; right: 12px; opacity: 0;
  transition: opacity .25s;
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.92); color: var(--blue);
  font-size: 13px; font-weight: 800;
  box-shadow: var(--shadow);
}
.team-info { padding: 20px; }
.team-info strong { display: block; font-size: 16px; color: var(--text); margin-bottom: 3px; }
.team-info span { font-size: 13px; color: var(--blue); font-weight: 600; display: block; margin-bottom: 8px; }
.team-info p { font-size: 13px; color: var(--text-2); line-height: 1.6; margin: 0; }

.team-cta {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; min-height: 260px;
}
.team-office-photo {
  width: 100%; height: 260px; object-fit: cover; display: block;
}
.team-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17,24,39,.85) 0%, rgba(17,24,39,.5) 100%);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 40px 48px; gap: 10px;
}
.team-cta-overlay h3 { font-size: 26px; font-weight: 900; color: #fff; }
.team-cta-overlay p { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 6px; }

/* ── WPP FLOAT ──────────────────────────────────── */
.wpp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 99; transition: transform .2s, box-shadow .2s;
}
.wpp-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.6); }

/* ── FADE UP ANIMATION ──────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.25,1,.5,1);
  transition-delay: var(--delay, 0s);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── ANNOUNCE BAR ───────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, #1447bb 0%, #1a56db 50%, #1447bb 100%);
  color: #fff; padding: 10px 20px;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; font-size: 14px; position: relative;
}
.announce-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; text-align: center; }
.announce-inner strong { color: #fbbf24; }
.announce-cta {
  background: #fff; color: var(--blue);
  padding: 5px 14px; border-radius: 100px;
  font-weight: 700; font-size: 13px; white-space: nowrap;
  transition: all .2s;
}
.announce-cta:hover { background: #fbbf24; color: #111; }
.announce-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: none; color: #fff;
  width: 26px; height: 26px; border-radius: 50%; cursor: pointer;
  font-size: 13px; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.announce-close:hover { background: rgba(255,255,255,.3); }

/* ── TECH SECTION ───────────────────────────────── */
.tech-section {
  padding: 36px 0; background: #fff;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.tech-title {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--text-3); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px;
}
.tech-grid {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px;
}
.tech-item {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 100px;
  background: var(--bg-light); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text-2);
  transition: all .2s; cursor: default;
}
.tech-item:hover { border-color: #93c5fd; background: var(--blue-light); color: var(--blue); }
.tech-ico { font-size: 16px; }

/* ── SERVICE TABS ───────────────────────────────── */
.svc-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.svc-tab {
  padding: 12px 24px; border-radius: 100px;
  font-size: 15px; font-weight: 600;
  border: 2px solid var(--border); background: #fff;
  color: var(--text-2); cursor: pointer;
  transition: all .2s; font-family: inherit;
}
.svc-tab:hover { border-color: #93c5fd; color: var(--blue); }
.svc-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.svc-panel { display: none; }
.svc-panel.active { display: block; }

.svc-price {
  font-size: 13px; color: var(--text-3); margin-bottom: 16px;
}
.svc-price strong { color: var(--blue); font-size: 16px; }

/* ── COMPARISON TABLE ───────────────────────────── */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.compare-table thead th {
  padding: 20px 24px; font-size: 15px; font-weight: 800;
  background: #fff; border-bottom: 2px solid var(--border);
  text-align: center;
}
.compare-table thead th.compare-feature {
  text-align: left; color: var(--text-2); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
}
.compare-table thead th.compare-carrara {
  background: var(--blue); color: #fff;
  position: relative;
}
.compare-badge {
  background: #fbbf24; color: #111;
  font-size: 11px; font-weight: 800; padding: 2px 10px;
  border-radius: 100px; display: inline-block; margin-bottom: 6px;
}
.compare-name { font-size: 18px; }
.compare-table thead th.compare-other { color: var(--text-2); }

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:not(.compare-cta-row):hover { background: var(--bg-light); }
.compare-table tbody td {
  padding: 16px 24px; font-size: 14px; color: var(--text-2);
  text-align: center; background: #fff;
}
.compare-table tbody td:first-child {
  text-align: left; font-weight: 600; color: var(--text);
}
.compare-table tbody td.compare-carrara {
  background: #eff6ff;
}
.compare-table .compare-cta-row td { padding: 20px 24px; }
.compare-table .compare-cta-row td.compare-carrara { background: #eff6ff; }

.cmp-yes  { color: #16a34a; font-weight: 700; }
.cmp-no   { color: #dc2626; font-weight: 600; }
.cmp-mid  { color: #d97706; font-weight: 600; }
.cmp-yes-o { color: #6b7280; font-weight: 600; }

/* ── PORTFOLIO MAIN PAGE ────────────────────────── */
.port-filters {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.port-filter {
  padding: 9px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  border: 2px solid var(--border); background: #fff;
  color: var(--text-2); cursor: pointer;
  transition: all .2s; font-family: inherit;
}
.port-filter:hover { border-color: #93c5fd; color: var(--blue); }
.port-filter.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.port-grid-main {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 40px;
}
.port-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .3s;
}
.port-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #93c5fd; }
.port-card.hidden { display: none; }

.port-card-img {
  position: relative; overflow: hidden;
}
.port-card-img img {
  width: 100%; height: 200px; object-fit: cover;
  display: block; transition: transform .4s ease;
}
.port-card:hover .port-card-img img { transform: scale(1.06); }
.port-card-over {
  position: absolute; inset: 0;
  background: rgba(26,86,219,.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.port-card:hover .port-card-over { opacity: 1; }
.port-card-over span {
  color: #fff; font-weight: 700; font-size: 14px;
  border: 2px solid rgba(255,255,255,.8);
  padding: 8px 22px; border-radius: var(--radius);
}
.port-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 100px;
}
.port-card-body { padding: 20px; }
.port-card-body h4 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.port-card-body p { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 12px; }
.port-card-result {
  font-size: 12px; font-weight: 700; color: var(--green);
  background: #f0fdf4; border: 1px solid #bbf7d0;
  padding: 5px 12px; border-radius: 8px; display: inline-block;
}
.port-cta { text-align: center; }

/* ── COUNTER ANIMATION ──────────────────────────── */
.nb-num[data-count] { transition: none; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .port-grid-main { grid-template-columns: repeat(2, 1fr); }
  .compare-table thead th,
  .compare-table tbody td { padding: 14px 16px; font-size: 13px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sf-secondary { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }
}
@media (max-width: 768px) {
  .port-grid-main { grid-template-columns: 1fr; }
  .compare-table thead th.compare-other,
  .compare-table tbody td:nth-child(3),
  .compare-table tbody td:nth-child(4) { display: none; }
  .svc-tab { padding: 10px 18px; font-size: 14px; }
  .announce-bar { font-size: 12px; padding: 10px 40px 10px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .hero-text h1 { font-size: 34px; }
  .hero-btns { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-trust { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .trust-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .numbers-grid { flex-direction: column; }
  .number-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .number-box:last-child { border-bottom: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-more { flex-direction: column; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .wpp-float { bottom: 20px; right: 20px; }
  .team-cta-overlay { padding: 24px 28px; }
  .team-cta-overlay h3 { font-size: 20px; }
  .sf-main img { height: 280px; }
}
@media (max-width: 480px) {
  .logos-grid { gap: 8px; }
  .hero-badge { font-size: 12px; text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
}
