﻿/* ============================================================
   TANDIZO MICROCRÉDITO E.I. — tandizo.css
   Tema "tandizo", baseado no Protótipo 02 — "Moderno e Inovador"
   Paleta tech: azul vibrante + verde vibrante em gradiente,
   dourado como destaque pontual, secção dark para Impacto/CTA.
   ============================================================ */

.tandizo-theme {
  --tandizo-bg: #F7FAFC;
  --tandizo-card: #FFFFFF;
  --tandizo-blue: #0EA5E9;
  --tandizo-green: #22C55E;
  --tandizo-gold: #F5B324;
  --tandizo-dark: #0B1120;
  --tandizo-dark-2: #111827;
  --tandizo-text: #101828;
  --tandizo-text-soft: #4B5768;
  --tandizo-text-on-dark: #F8FAFC;
  --tandizo-text-on-dark-soft: #A6B4C6;
  --tandizo-border: #E4EAF1;
  --tandizo-gradient: linear-gradient(135deg, #0EA5E9, #22C55E);
  --tandizo-gradient-soft: linear-gradient(135deg, rgba(14,165,233,0.10), rgba(34,197,94,0.10));
  --tandizo-radius-lg: 26px;
  --tandizo-radius-md: 18px;
  --tandizo-shadow: 0 20px 46px rgba(16, 40, 68, 0.09);
  --tandizo-shadow-lg: 0 28px 64px rgba(16, 40, 68, 0.14);

  background: var(--tandizo-bg);
  color: var(--tandizo-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.tandizo-theme h1, .tandizo-theme h2, .tandizo-theme h3, .tandizo-theme h4 {
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  color: var(--tandizo-text);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.tandizo-theme .tandizo-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.tandizo-theme .text-gradient {
  background: var(--tandizo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ------------------------------------------------------------
   Botões
   ------------------------------------------------------------ */
.tandizo-theme .tandizo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  white-space: nowrap;
}
.tandizo-theme .tandizo-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.tandizo-theme .tandizo-btn-lg { padding: 15px 30px; font-size: 1rem; }
.tandizo-theme .tandizo-btn-sm { padding: 10px 18px; font-size: 0.85rem; }

.tandizo-theme .tandizo-btn-gradient {
  background: var(--tandizo-gradient);
  color: #fff;
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.28);
}
.tandizo-theme .tandizo-btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(14, 165, 233, 0.36); }

.tandizo-theme .tandizo-btn-outline {
  background: transparent;
  color: var(--tandizo-text);
  border: 1.5px solid var(--tandizo-border);
}
.tandizo-theme .tandizo-btn-outline:hover { border-color: var(--tandizo-blue); color: var(--tandizo-blue); transform: translateY(-2px); }

.tandizo-theme .tandizo-btn-ghost {
  background: rgba(14, 165, 233, 0.08);
  color: var(--tandizo-blue);
}
.tandizo-theme .tandizo-btn-ghost:hover { background: rgba(14, 165, 233, 0.16); }

.tandizo-theme .tandizo-btn-light {
  background: #fff;
  color: var(--tandizo-dark);
}
.tandizo-theme .tandizo-btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.22); }

.tandizo-theme .tandizo-btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.tandizo-theme .tandizo-btn-outline-light:hover { border-color: #fff; transform: translateY(-2px); }

/* ------------------------------------------------------------
   Header (glass sticky)
   ------------------------------------------------------------ */
.tandizo-header {
  position: sticky;
  top: 0;
  z-index: 950;
  background: rgba(247, 250, 252, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.tandizo-header.is-scrolled {
  background: rgba(247, 250, 252, 0.92);
  border-bottom-color: var(--tandizo-border);
  box-shadow: 0 8px 30px rgba(16, 40, 68, 0.07);
}

.tandizo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.tandizo-brand { display: flex; align-items: center; gap: 10px; }
.tandizo-brand-logo { width: 40px; height: 40px; object-fit: contain; }
.tandizo-brand-text { font-family: 'Sora', system-ui, sans-serif; font-size: 0.98rem; color: var(--tandizo-text); }
.tandizo-brand-text strong { color: var(--tandizo-blue); }

.tandizo-nav { display: flex; align-items: center; gap: 28px; }
.tandizo-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--tandizo-text-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.tandizo-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--tandizo-gradient);
  border-radius: 2px;
  transition: right .25s ease;
}
.tandizo-nav a:hover { color: var(--tandizo-text); }
.tandizo-nav a:hover::after { right: 0; }

.tandizo-header-actions { display: flex; align-items: center; gap: 14px; }
.tandizo-header-cta { padding: 11px 22px; font-size: 0.88rem; }

.tandizo-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--tandizo-text);
  background: rgba(14, 165, 233, 0.08);
}
.tandizo-nav-toggle svg { width: 22px; height: 22px; }
.tandizo-nav-toggle .icon-close { display: none; }
.tandizo-nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.tandizo-nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ------------------------------------------------------------
   Menu mobile
   ------------------------------------------------------------ */
.tandizo-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(340px, 86vw);
  background: var(--tandizo-dark);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 100px 30px 40px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.3);
}
.tandizo-mobile-nav.is-open { transform: translateX(0); }

.tandizo-mobile-nav a {
  color: var(--tandizo-text-on-dark-soft);
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color .2s ease;
}
.tandizo-mobile-nav a:hover { color: #fff; }

.tandizo-mobile-cta {
  margin-top: 18px;
  justify-content: center;
  border-bottom: none !important;
}
.tandizo-mobile-back {
  margin-top: auto;
  border-bottom: none !important;
  color: var(--tandizo-text-on-dark-soft) !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}

/* ------------------------------------------------------------
   Secções — base
   ------------------------------------------------------------ */
.tandizo-section { padding: clamp(64px, 9vw, 110px) 0; }
.tandizo-section-alt { background: #EFF5FA; }

.tandizo-section-tag {
  display: inline-block;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tandizo-blue);
  background: rgba(14, 165, 233, 0.1);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.tandizo-section-tag-dark { color: var(--tandizo-gold); background: rgba(245, 179, 36, 0.14); }

.tandizo-section-head { max-width: 640px; margin-bottom: 48px; }
.tandizo-section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; font-weight: 700; }
.tandizo-section-head p { color: var(--tandizo-text-soft); font-size: 1.02rem; }
.tandizo-section-head-dark { max-width: 640px; }
.tandizo-section-head-dark p { color: var(--tandizo-text-on-dark-soft); }

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.tandizo-hero { padding: clamp(56px, 8vw, 96px) 0 clamp(70px, 9vw, 110px); position: relative; }

.tandizo-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.tandizo-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tandizo-green);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.tandizo-hero-content h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 22px;
}

.tandizo-hero-lead {
  color: var(--tandizo-text-soft);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.tandizo-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.tandizo-hero-meta { display: flex; gap: clamp(20px, 4vw, 40px); flex-wrap: wrap; }
.tandizo-hero-meta div { display: flex; flex-direction: column; gap: 2px; }
.tandizo-hero-meta strong { font-family: 'Sora', system-ui, sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--tandizo-blue); }
.tandizo-hero-meta span { font-size: 0.82rem; color: var(--tandizo-text-soft); }

.tandizo-hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tandizo-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.85;
  animation: tandizo-float 9s ease-in-out infinite;
}
.tandizo-blob-1 {
  width: 320px; height: 320px;
  background: linear-gradient(135deg, #0EA5E9, #22C55E);
  top: 4%; left: 12%;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  opacity: 0.9;
  animation-duration: 11s;
}
.tandizo-blob-2 {
  width: 220px; height: 220px;
  background: linear-gradient(135deg, #F5B324, #22C55E);
  bottom: 2%; right: 8%;
  border-radius: 63% 37% 39% 61% / 52% 40% 60% 48%;
  opacity: 0.55;
  animation-duration: 8s;
  animation-delay: -3s;
}
.tandizo-blob-3 {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, #0EA5E9, #F5B324);
  top: 42%; right: 24%;
  border-radius: 50% 50% 38% 62% / 60% 42% 58% 40%;
  opacity: 0.4;
  animation-duration: 10s;
  animation-delay: -5s;
}

@keyframes tandizo-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(14px, -18px) scale(1.04); }
  66% { transform: translate(-12px, 12px) scale(0.97); }
}

.tandizo-hero-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1.5px dashed rgba(14, 165, 233, 0.3);
  border-radius: 50%;
  animation: tandizo-spin 40s linear infinite;
}
@keyframes tandizo-spin { to { transform: rotate(360deg); } }

.tandizo-hero-grid-lines {
  position: absolute;
  inset: 8%;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  border-radius: 40px;
  mask-image: radial-gradient(circle, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 75%);
}

.tandizo-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--tandizo-shadow-lg);
  animation: tandizo-drift 6s ease-in-out infinite;
}
.tandizo-floating-card-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--tandizo-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tandizo-floating-card-icon svg { width: 20px; height: 20px; }
.tandizo-floating-card-text { display: flex; flex-direction: column; }
.tandizo-floating-card-text strong { font-family: 'Sora', system-ui, sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--tandizo-text); }
.tandizo-floating-card-text span { font-size: 0.74rem; color: var(--tandizo-text-soft); white-space: nowrap; }

.tandizo-fc-1 { top: 6%; left: -4%; animation-delay: 0s; }
.tandizo-fc-2 { bottom: 14%; left: 4%; animation-delay: -2s; }
.tandizo-fc-3 { top: 46%; right: -6%; animation-delay: -4s; }

@keyframes tandizo-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ------------------------------------------------------------
   SOBRE
   ------------------------------------------------------------ */
.tandizo-sobre-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.tandizo-sobre-text p { color: var(--tandizo-text-soft); margin-bottom: 18px; font-size: 1.02rem; }
.tandizo-sobre-text h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 20px; }

.tandizo-sobre-card {
  position: relative;
  background: var(--tandizo-dark);
  color: var(--tandizo-text-on-dark);
  border-radius: var(--tandizo-radius-lg);
  padding: 40px 34px;
  overflow: hidden;
  box-shadow: var(--tandizo-shadow-lg);
}
.tandizo-sobre-card-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(14,165,233,0.35), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(34,197,94,0.3), transparent 55%);
}
.tandizo-sobre-card-icon, .tandizo-sobre-card h3, .tandizo-sobre-card p { position: relative; }
.tandizo-sobre-card-icon {
  display: inline-flex;
  width: 54px; height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--tandizo-gradient);
  color: #fff;
  margin-bottom: 20px;
}
.tandizo-sobre-card-icon svg { width: 26px; height: 26px; }
.tandizo-sobre-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.tandizo-sobre-card p { color: var(--tandizo-text-on-dark-soft); font-size: 0.98rem; }

/* ------------------------------------------------------------
   BENTO GRID — áreas / diferenciais
   ------------------------------------------------------------ */
.tandizo-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tandizo-bento-item, .tandizo-dif-card {
  background: var(--tandizo-card);
  border: 1px solid var(--tandizo-border);
  border-radius: var(--tandizo-radius-md);
  padding: 28px 24px;
  box-shadow: var(--tandizo-shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.tandizo-bento-item:hover, .tandizo-dif-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--tandizo-shadow-lg);
}
.tandizo-bento-item:hover::before, .tandizo-dif-card:hover::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--tandizo-gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.tandizo-bento-lg { grid-column: span 2; }

.tandizo-bento-icon, .tandizo-dif-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--tandizo-gradient-soft);
  color: var(--tandizo-blue);
  margin-bottom: 18px;
}
.tandizo-bento-icon svg, .tandizo-dif-icon svg { width: 24px; height: 24px; }
.tandizo-bento-item h3, .tandizo-dif-card h3 { font-size: 1.08rem; margin-bottom: 8px; font-weight: 700; }
.tandizo-bento-item p, .tandizo-dif-card p { color: var(--tandizo-text-soft); font-size: 0.92rem; }

/* Diferenciais: leve identidade própria (ícone com tom dourado) */
.tandizo-diferenciais { background: linear-gradient(180deg, #F7FAFC 0%, #EFF9F3 100%); }
.tandizo-dif-card { background: var(--tandizo-card); }
.tandizo-bento-dif { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; }

/* ------------------------------------------------------------
   PRODUTOS
   ------------------------------------------------------------ */
.tandizo-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tandizo-product-card {
  background: var(--tandizo-card);
  border: 1px solid var(--tandizo-border);
  border-radius: var(--tandizo-radius-md);
  padding: 30px 26px;
  box-shadow: var(--tandizo-shadow);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tandizo-product-card:hover { transform: translateY(-6px); box-shadow: var(--tandizo-shadow-lg); }

.tandizo-product-range {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: var(--tandizo-gradient);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.tandizo-product-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.tandizo-product-card p { color: var(--tandizo-text-soft); font-size: 0.92rem; flex: 1; margin-bottom: 22px; }
.tandizo-product-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ------------------------------------------------------------
   STEPPER (requisitos)
   ------------------------------------------------------------ */
.tandizo-stepper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  counter-reset: none;
  position: relative;
}
.tandizo-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 34px;
}
.tandizo-step::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 50%;
  right: -50%;
  height: 3px;
  background: var(--tandizo-gradient);
  opacity: 0.35;
  z-index: 0;
}
.tandizo-step:last-child::before { display: none; }

.tandizo-step-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--tandizo-gradient);
  color: #fff;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(14,165,233,0.3);
}
.tandizo-step-body {
  background: var(--tandizo-card);
  border: 1px solid var(--tandizo-border);
  border-radius: var(--tandizo-radius-md);
  padding: 20px 18px;
  box-shadow: var(--tandizo-shadow);
  flex: 1;
}
.tandizo-step-body h3 { font-size: 0.96rem; margin-bottom: 8px; font-weight: 700; }
.tandizo-step-body p { font-size: 0.85rem; color: var(--tandizo-text-soft); }

/* ------------------------------------------------------------
   EDUCAÇÃO FINANCEIRA
   ------------------------------------------------------------ */
.tandizo-educacao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tandizo-educacao-card {
  background: var(--tandizo-card);
  border: 1px solid var(--tandizo-border);
  border-radius: var(--tandizo-radius-md);
  padding: 28px 24px;
  box-shadow: var(--tandizo-shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.tandizo-educacao-card:hover { transform: translateY(-6px); box-shadow: var(--tandizo-shadow-lg); }
.tandizo-educacao-num {
  display: block;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--tandizo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.tandizo-educacao-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.tandizo-educacao-card p { color: var(--tandizo-text-soft); font-size: 0.9rem; }

/* ------------------------------------------------------------
   IMPACTO (dark, full-bleed)
   ------------------------------------------------------------ */
.tandizo-impacto {
  position: relative;
  background: linear-gradient(180deg, var(--tandizo-dark) 0%, var(--tandizo-dark-2) 100%);
  padding: clamp(64px, 9vw, 110px) 0;
  overflow: hidden;
}
.tandizo-impacto-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px circle at 12% 15%, rgba(14,165,233,0.22), transparent 60%),
    radial-gradient(520px circle at 88% 85%, rgba(34,197,94,0.18), transparent 60%);
  pointer-events: none;
}
.tandizo-impacto .tandizo-container { position: relative; }
.tandizo-impacto h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }

.tandizo-impacto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tandizo-impacto-stat {
  text-align: left;
  padding: 28px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--tandizo-radius-md);
}
.tandizo-impacto-stat strong {
  display: block;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.tandizo-impacto-stat span { font-size: 0.86rem; color: var(--tandizo-text-on-dark-soft); }

/* ------------------------------------------------------------
   MISSÃO / VISÃO / VALORES
   ------------------------------------------------------------ */
.tandizo-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.tandizo-mv-card {
  background: var(--tandizo-card);
  border: 1px solid var(--tandizo-border);
  border-radius: var(--tandizo-radius-lg);
  padding: 34px 30px;
  box-shadow: var(--tandizo-shadow);
}
.tandizo-mv-icon {
  display: inline-flex;
  width: 50px; height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--tandizo-gradient-soft);
  color: var(--tandizo-blue);
  margin-bottom: 18px;
}
.tandizo-mv-icon svg { width: 24px; height: 24px; }
.tandizo-mv-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.tandizo-mv-card p { color: var(--tandizo-text-soft); font-size: 0.98rem; }

.tandizo-values { text-align: center; }
.tandizo-values .tandizo-section-tag { margin-bottom: 22px; }
.tandizo-values-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.tandizo-chip {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--tandizo-border);
  color: var(--tandizo-text);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.tandizo-chip:hover {
  border-color: transparent;
  background: var(--tandizo-gradient);
  color: #fff;
  transform: translateY(-3px);
}

/* ------------------------------------------------------------
   CTA FINAL
   ------------------------------------------------------------ */
.tandizo-cta-final {
  background: var(--tandizo-gradient);
  padding: clamp(56px, 8vw, 90px) 0;
}
.tandizo-cta-final-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.tandizo-cta-final h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
.tandizo-cta-final p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 32px; }
.tandizo-cta-final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ------------------------------------------------------------
   CONTACTO
   ------------------------------------------------------------ */
.tandizo-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}

.tandizo-contact-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; }
.tandizo-contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.tandizo-contact-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--tandizo-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tandizo-contact-icon svg { width: 22px; height: 22px; }
.tandizo-contact-list strong { display: block; font-family: 'Sora', system-ui, sans-serif; font-size: 0.95rem; margin-bottom: 4px; }
.tandizo-contact-list p { color: var(--tandizo-text-soft); font-size: 0.94rem; }
.tandizo-contact-list a { color: var(--tandizo-text-soft); transition: color .2s ease; }
.tandizo-contact-list a:hover { color: var(--tandizo-blue); }

.tandizo-contact-whatsapp { width: 100%; margin-bottom: 26px; }

.tandizo-map-placeholder {
  background: var(--tandizo-dark);
  color: var(--tandizo-text-on-dark-soft);
  border-radius: var(--tandizo-radius-md);
  padding: 40px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.tandizo-map-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--tandizo-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tandizo-map-icon svg { width: 24px; height: 24px; }
.tandizo-map-placeholder p { font-size: 0.9rem; }

.tandizo-contact-form {
  background: var(--tandizo-card);
  border: 1px solid var(--tandizo-border);
  border-radius: var(--tandizo-radius-lg);
  padding: 34px 30px;
  box-shadow: var(--tandizo-shadow);
}
.tandizo-contact-form h3 { font-size: 1.2rem; margin-bottom: 22px; }
.tandizo-form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.tandizo-form-field label { font-size: 0.85rem; font-weight: 600; color: var(--tandizo-text); }
.tandizo-form-field input, .tandizo-form-field textarea {
  border: 1.5px solid var(--tandizo-border);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 0.94rem;
  color: var(--tandizo-text);
  background: #FBFDFF;
  transition: border-color .2s ease, box-shadow .2s ease;
  resize: vertical;
}
.tandizo-form-field input:focus, .tandizo-form-field textarea:focus {
  outline: none;
  border-color: var(--tandizo-blue);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}
.tandizo-form-submit { width: 100%; margin-top: 6px; }
.tandizo-form-success {
  margin-top: 16px;
  text-align: center;
  color: var(--tandizo-green);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.tandizo-footer { background: var(--tandizo-dark); color: var(--tandizo-text-on-dark-soft); padding: 64px 0 0; }
.tandizo-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.tandizo-footer-logo { width: 56px; height: 56px; object-fit: contain; background: #fff; border-radius: 14px; padding: 6px; margin-bottom: 16px; }
.tandizo-footer-brand p { font-size: 0.92rem; margin-bottom: 16px; max-width: 260px; }
.tandizo-footer-back { color: var(--tandizo-green); font-size: 0.88rem; font-weight: 600; }

.tandizo-footer-nav h4, .tandizo-footer-contact h4 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tandizo-footer-nav { display: flex; flex-direction: column; }
.tandizo-footer-nav a { font-size: 0.92rem; padding: 6px 0; transition: color .2s ease; }
.tandizo-footer-nav a:hover { color: #fff; }
.tandizo-footer-contact p { font-size: 0.92rem; margin-bottom: 8px; }
.tandizo-footer-contact a { color: var(--tandizo-text-on-dark-soft); transition: color .2s ease; }
.tandizo-footer-contact a:hover { color: #fff; }

.tandizo-footer-bottom { text-align: center; padding: 24px 20px; font-size: 0.82rem; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1080px) {
  .tandizo-bento, .tandizo-bento-dif, .tandizo-products-grid, .tandizo-educacao-grid { grid-template-columns: repeat(2, 1fr); }
  .tandizo-bento-lg { grid-column: span 2; }
  .tandizo-stepper { grid-template-columns: repeat(3, 1fr); }
  .tandizo-step::before { display: none; }
  .tandizo-impacto-grid { grid-template-columns: repeat(2, 1fr); }
  .tandizo-footer-grid { grid-template-columns: 1fr 1fr; }
  .tandizo-footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .tandizo-nav { display: none; }
  .tandizo-nav-toggle { display: flex; }
  .tandizo-header-cta { display: none; }

  .tandizo-hero-grid { grid-template-columns: 1fr; }
  .tandizo-hero-visual { min-height: 340px; margin-top: 20px; order: -1; }
  .tandizo-fc-1 { left: 0; top: 0; }
  .tandizo-fc-2 { left: 2%; bottom: 4%; }
  .tandizo-fc-3 { right: 0; top: 50%; }

  .tandizo-sobre-grid { grid-template-columns: 1fr; }
  .tandizo-mv-grid { grid-template-columns: 1fr; }
  .tandizo-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .tandizo-bento, .tandizo-bento-dif, .tandizo-products-grid, .tandizo-educacao-grid { grid-template-columns: 1fr; }
  .tandizo-bento-lg { grid-column: span 1; }
  .tandizo-stepper { grid-template-columns: 1fr; gap: 14px; }
  .tandizo-step { padding-top: 0; padding-left: 42px; }
  .tandizo-step-num { top: 2px; left: 0; }
  .tandizo-step::before {
    display: block;
    top: 0;
    bottom: -14px;
    left: 13px;
    right: auto;
    width: 3px;
    height: auto;
    opacity: 0.3;
  }
  .tandizo-step:last-child::before { display: none; }

  .tandizo-impacto-grid { grid-template-columns: 1fr; }
  .tandizo-footer-grid { grid-template-columns: 1fr; }
  .tandizo-footer-brand { grid-column: span 1; }
  .tandizo-hero-meta { gap: 22px; }
  .tandizo-hero-actions .tandizo-btn, .tandizo-cta-final-actions .tandizo-btn { width: 100%; }
  .tandizo-hero-actions, .tandizo-cta-final-actions { flex-direction: column; }
  .tandizo-floating-card { position: relative; margin-bottom: 14px; }
  .tandizo-fc-1, .tandizo-fc-2, .tandizo-fc-3 { position: relative; inset: auto; top: auto; left: auto; right: auto; bottom: auto; }
  .tandizo-hero-visual { flex-direction: column; align-items: stretch; min-height: auto; }
  .tandizo-blob, .tandizo-hero-ring, .tandizo-hero-grid-lines { display: none; }
}
