@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* HSL Tailored Palette */
  --ink: hsl(218, 38%, 15%);       /* Dark slate for text */
  --muted: hsl(218, 15%, 45%);     /* Muted slate for descriptions */
  --line: hsl(214, 32%, 91%);      /* Light gray for borders */
  --paper: #ffffff;
  --soft: hsl(210, 40%, 98%);      /* Soft background */
  --blue: hsl(211, 72%, 25%);      /* Primary deep blue */
  --blue-light: hsl(211, 72%, 95%);
  --green: hsl(164, 63%, 24%);     /* Emerald green */
  --green-d: hsl(164, 63%, 18%);   /* Dark emerald */
  --green-light: hsl(164, 63%, 95%);
  --amber: hsl(35, 85%, 39%);      /* Accent warm orange/amber */
  --amber-light: hsl(35, 85%, 96%);
  --red: hsl(0, 65%, 41%);         /* Red for alerts */
  --red-light: hsl(0, 65%, 96%);
  --dark: hsl(217, 33%, 17%);      /* Dark background for footer/CTA */
  
  /* WhatsApp colors */
  --wa: #25d366;
  --wa-d: #1daa55;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, .brand, .price-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--blue);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

/* TOPBAR & NAVIGATION */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.02);
  transition: all 0.3s ease;
}

.nav {
  max-width: 1200px;
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--blue);
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  display: block;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 600;
}

.navlinks a:not(.btn):not(.button):not(.nav-wa) {
  color: var(--ink);
  opacity: 0.85;
}

.navlinks a:not(.btn):not(.button):not(.nav-wa):hover {
  color: var(--blue);
  opacity: 1;
}

/* BUTTONS */
.button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(23, 100, 81, 0.15);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover, .btn:hover {
  background: var(--green-d);
  border-color: var(--green-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(23, 100, 81, 0.25);
}

.button:active, .btn:active {
  transform: translateY(0);
}

.button.secondary, .btn-outline, .btn-ghost {
  background: white;
  color: var(--blue);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.button.secondary:hover, .btn-outline:hover {
  background: var(--soft);
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-md);
}

.btn-wa, .nav-wa {
  background: var(--wa);
  border-color: var(--wa);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-wa:hover, .nav-wa:hover {
  background: var(--wa-d);
  border-color: var(--wa-d);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.button.warning {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 4px 12px rgba(179, 95, 18, 0.2);
}

.button.warning:hover {
  background: hsl(35, 85%, 32%);
  border-color: hsl(35, 85%, 32%);
}

.button:disabled, .btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

/* HERO SECTION */
.hero {
  background:
    linear-gradient(115deg, rgba(15, 41, 74, 0.97) 35%, rgba(18, 63, 109, 0.88) 70%, rgba(23, 100, 81, 0.75)),
    url("assets/foto-12.jpeg") center/cover;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero.reforma {
  background:
    linear-gradient(115deg, rgba(15, 41, 74, 0.97) 35%, rgba(18, 63, 109, 0.88) 70%, rgba(23, 100, 81, 0.75)),
    url("../assets/foto-12.jpeg") center/cover;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero p.hero-sub {
  max-width: 740px;
  margin: 20px 0 0;
  color: #dbeafe;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
}

.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.14);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: #fde68a;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 20px;
}

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

.hero .button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.proof-item {
  min-height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.proof-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.proof-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.8rem;
  color: #ffffff;
  line-height: 1;
}

.proof-item span {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* TRUST BAR */
.trust-bar {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 16px 24px;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
}

/* BLUF SUMMARY (Generative Engine Optimization Box) */
.bluf-box {
  background: var(--blue-light);
  border-left: 5px solid var(--blue);
  border-radius: 4px 12px 12px 4px;
  padding: 22px 26px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}

.bluf-box strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.bluf-box p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

/* SECTIONS */
section, .section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lead {
  margin: 0 0 32px;
  max-width: 820px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* CARDS & GRIDS */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.card {
  min-height: 200px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(18, 63, 109, 0.2);
}

.card-icon {
  font-size: 2rem;
  line-height: 1;
}

.card strong {
  font-size: 1.2rem;
  color: var(--ink);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
}

.tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* BIOGRAPHY SECTION */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.bio-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

.bio-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.bio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--green);
}

.bio-poster-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.bio-poster {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.bio-poster:hover {
  transform: translateY(-4px);
}

.bio-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--blue-light);
  margin: 0 auto 20px;
  display: block;
}

.bio-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}

.bio-title {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.cred-badge {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
}

.cred-badge.destaque {
  background: var(--blue-light);
  border-color: var(--blue);
}

.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.bio-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}

.bio-stat span {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}

.bio-text h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.bio-text p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 16px;
}

.formation-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.formation-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.formation-list li::before {
  content: "🎓";
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* PORTFOLIO GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.porto-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green);
  transition: all 0.3s ease;
}

.porto-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.porto-type {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.porto-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.porto-card p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.porto-card .city {
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* PROCESS / STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.step {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 10px rgba(18, 63, 109, 0.2);
}

.step strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.step p {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
}

/* PRICING CARDS */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.price-card.destaque {
  border-color: var(--green);
  background: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
  position: relative;
}

.price-card.destaque::before {
  content: 'Mais Contratado';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

.price-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.price-value span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.price-detail {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
  font-weight: 500;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.testimonial {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
}

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testimonial p {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}

.t-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.t-role {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

/* FAQ SECTION (DETAILS/SUMMARY) */
.faq-list, .faq {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

details[open] {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

summary {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--blue);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* FORM STYLING */
.form-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
  color: hsl(215, 25%, 25%);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: white;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 63, 109, 0.12);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

/* ALERTS & NOTICES */
.notice, .alert-box {
  margin: 20px 0;
  border-left: 5px solid var(--amber);
  background: var(--amber-light);
  border-radius: 4px 8px 8px 4px;
  padding: 16px 20px;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
}

.notice strong, .alert-box strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.notice.good {
  border-left-color: var(--green);
  background: var(--green-light);
  color: var(--green-d);
}

.notice.danger, .alert-box.danger {
  border-left-color: var(--red);
  background: var(--red-light);
  color: var(--red);
}

/* LANDING PAGE SPECIFIC STYLES */
.urgency-bar {
  background: linear-gradient(90deg, #7c2d12, #9a3412);
  color: white;
  text-align: center;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.urgency-bar span {
  color: #fde68a;
  text-decoration: underline;
}

.form-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  border: 1px solid var(--line);
}

.form-card h2 {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 4px;
}

.form-card p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--muted);
  text-transform: uppercase;
}

.field input, .field select {
  width: 100%;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}

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

.inc-item {
  background: var(--soft);
  border-radius: 10px;
  padding: 24px;
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.inc-item:hover {
  transform: translateY(-1px);
}

.inc-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--ink);
}

.inc-item p {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
}

/* CITIES TAGS */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.city-tag {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  transition: all 0.2s ease;
}

.city-tag:hover {
  background: var(--blue-light);
  border-color: var(--blue);
}

/* YOUTUBE VIDEOS CATALOG */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.video-copy h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--blue);
}

.video-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.video-carousel-shell {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.carousel-arrow:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--shadow-md);
}

.video-catalog {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.video-card {
  display: block;
  flex: 0 0 260px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover, .video-card.active {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #0f172a;
}

.video-card strong {
  display: block;
  padding: 14px;
  color: var(--blue);
  font-size: 0.85rem;
  line-height: 1.3;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--blue), #0b2340);
  color: white;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-band p {
  color: #bfdbfe;
  font-size: 1rem;
  margin: 0;
}

/* FLOATING WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  animation: waBounce 2.5s ease-in-out infinite;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wa-float:hover {
  background: var(--wa-d);
  animation: none;
  transform: scale(1.05);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* FOOTER */
footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  border-top: 1px solid var(--line);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
  }
  
  .navlinks {
    margin-top: 14px;
    width: 100%;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 40px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .split, .bio-section, .grid, .grid.two, .grid3, .portfolio-grid, .steps, .price-cards, .testimonials, .video-feature {
    grid-template-columns: 1fr;
  }
  
  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 48px 24px;
  }

  .cta-big {
    width: 100%;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ARTICLE / BLOG STYLING */
.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.article p {
  margin-bottom: 20px;
  color: hsl(218, 30%, 20%);
}
.article h1 {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 20px;
}
.article h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 16px;
}
.article h3 {
  font-size: 1.3rem;
  margin-top: 28px;
  margin-bottom: 12px;
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 24px;
}
.breadcrumb a {
  color: var(--muted);
}
.breadcrumb a:hover {
  color: var(--blue);
}
.meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.alert-box {
  background: var(--red-light);
  border-left: 5px solid var(--red);
  border-radius: 4px 8px 8px 4px;
  padding: 20px 24px;
  margin: 28px 0;
  color: var(--red);
}
.alert-box strong {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.alert-box p {
  margin: 0;
  font-size: 0.9rem;
  color: hsl(0, 65%, 25%);
}
.green-box {
  background: var(--green-light);
  border-left: 5px solid var(--green);
  border-radius: 4px 8px 8px 4px;
  padding: 20px 24px;
  margin: 28px 0;
}
.green-box strong {
  display: block;
  color: var(--green-d);
  font-weight: 700;
  margin-bottom: 6px;
}
.green-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--green-d);
}
.cta-box {
  background: linear-gradient(135deg, var(--blue), #0b2340);
  color: white;
  padding: 36px 32px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-box h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 10px;
}
.cta-box p {
  color: #bfdbfe;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
  transition: all 0.2s ease;
}
.cta-box a:hover {
  background: var(--wa-d);
  transform: translateY(-1px);
}
.author-box {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 48px 0;
}
.author-box img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--blue-light);
}
.author-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--blue);
  margin-bottom: 4px;
}
.author-cred {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.author-box p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* SKILLS SECTION */
.skills-band {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.skills-band h2 {
  color: white;
}

.skills-band .lead {
  color: #94a3b8;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.skill-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--amber);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.skill-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: var(--amber);
  line-height: 1;
}

.skill-card h3 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.skill-card p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.soft-skills {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.soft-skill-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.soft-skill-tag:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--amber);
  color: white;
  transform: translateY(-2px);
}

