@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@500;600;700&display=swap');
/* =========================

   DESIGN TOKENS (BASE)
========================= */
:root {
  --primary: #1d1a6e;
  --secondary: #2b2a7d;
  --accent: #4f46e5;

  --text: #0f172a;
  --text-light: #64748b;

  --bg: #f8fafc;
  --white: #ffffff;

  --border: #e5e7eb;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;

  --transition: 0.3s ease;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   HEADER (DUAL SUPORTE)
========================= */

/* HEADER SIMPLES */
header {
 
  color: white;
  padding: 20px 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;
border-bottom: 2px solid #ffffff;
  backdrop-filter: blur(10px);
  background: rgba(20, 20, 80, 0.7);
}

header nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* HEADER ESTRUTURADO */
.header {
  background: var(--primary);
  padding: 20px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
 font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: white;
  
}
.logo p {

  font-size: 27px;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* =========================
   BOTÕES (UNIFICADO)
========================= */
.btn,
.btn-header,
.primary,
.contato {
  
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
 background: linear-gradient(135deg, #6c63ff, #4f46e5);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.5);
  transition: 0.3s;
  
}

.bntn{
    color: white;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: var(--transition);

}
.btn:hover,
.btn-header:hover,
.primary:hover {
  transform: translateY(-2px);
}

.btn-outline,
.outline {
  border: 1px solid var(--border);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  background: green;
}

/* BOTÕES ESPECÍFICOS */
.btn-cta {
  background: var(--white);
  color: var(--primary);
  padding: 12px 25px;
  border-radius: var(--radius-sm);
  font-weight: bold;
  text-decoration: none;
}

/* =========================
   HERO (MULTI-ESTRUTURA)
========================= */

/* HERO PADRÃO */
.hero {
   padding: 140px 0;
  background: var(--primary);
  color: #fff;

}

/* HERO TEXTO SIMPLES */
.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.92);
}

.hero p {
  color: var(--text-light);
  max-width: 600px;
}

/* HERO GRID (HOME) */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-left h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

/* BOTÕES HERO */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* HERO DIREITA */
.hero-right {
  text-align: center;
}

.cm {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: 
    url('../logo.png') center/70% no-repeat,
    radial-gradient(circle at 30% 30%, #5b7cff, #1c1c8a);

  box-shadow: 
    0 0 40px rgba(91,124,255,0.5),
    0 0 80px rgba(91,124,255,0.2),
    inset 0 0 15px rgba(255,255,255,0.1);
}
.cm {
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 
      0 0 40px rgba(91,124,255,0.5),
      0 0 80px rgba(91,124,255,0.2);
  }
  50% {
    box-shadow: 
      0 0 60px rgba(91,124,255,0.7),
      0 0 120px rgba(91,124,255,0.3);
  }
}

.hero-tags {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tags span {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
}

.hero-tags span {
  transition: 0.3s;
}

.hero-tags span:hover {
  background: rgba(255,255,255,0.15);
}

/* =========================
   SERVICES
========================= */
.services {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD SERVICE */
.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   CARDS GERAIS
========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD BASE */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

/* =========================
   CASES
========================= */
.cases {
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.case-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-5px);
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-content {
  padding: 20px;
}

.metrics {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.metric {
  background: #eef2ff;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

/* =========================
   CTA
========================= */
.cta {
  margin: 60px;
  padding: 40px;
  background: var(--secondary);
  color: white;
  border-radius: var(--radius-md);
  text-align: center;
}

.cta-templates {

  padding: 200px 100px;
  color: white;
  padding: 80px 0;
  background: linear-gradient(135deg, #2b2a7d, #4f46e5);
  
    position: relative;
  overflow: hidden;
}
.cta-templates::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  filter: blur(100px);
  top: -100px;
  left: -100px;
}
.cta-templates::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
  top: -200px;
  right: -200px;
  filter: blur(100px);
}
.btn-light {
  background: white;
  color: #1c1c8a;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-templates h2 {
  margin-bottom: 10px;
}

.cta-templates p {
  opacity: 0.8;
}

/* =========================
   PROCESSO
========================= */
.processo {
  
  padding: 100px 0;

}


.processo-grid {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.etapa {
  position: relative;
  padding-left: 20px;
}

.etapa::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 2px;
  height: 30px;
  background: var(--accent);
}

.numero {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--text-light);
}

/* =========================
   FOOTER
========================= */
footer {
  background: var(--secondary);
  color: white;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}

/* FOOTER COMPLEXO */
.footer-cta {
  background: var(--primary);
  padding-top: 130px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}

.footer-text h2 {
  font-size: 28px;
}

.footer-actions {
  display: flex;
  gap: 15px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  color: #aaa;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 900px) {

  header {
    padding: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid,
  .cards,
  .processo-grid {
    grid-template-columns: 1fr;
  }

  .cta-content,
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}


/* =========================
   PAGE: TEMPLATES
========================= */

.page-templates {
  background: var(--bg);
}

/* HEADER */
.page-templates .header-simple {
  background: var(--primary);
  color: white;
  padding: 20px 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-templates .menu {
  display: flex;
  gap: 20px;
}

.page-templates .menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* HERO */
.page-templates .hero {
  padding: 100px 60px;
}

.page-templates .hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-templates .hero-text {
  max-width: 500px;
}

.page-templates .hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.page-templates .hero p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.page-templates .hero-buttons {
  display: flex;
  gap: 10px;
}

.page-templates .hero-right {
  font-size: 80px;
  font-weight: bold;
}

/* TEMPLATES GRID */
.page-templates .templates {
  padding: 60px 0;
}

.page-templates .section-title {
  margin-bottom: 30px;
  font-size: 28px;
}

.page-templates .templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* CARD */
.page-templates .card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
}

.page-templates .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.page-templates .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-templates .card-content {
  padding: 20px;
}

.page-templates .card h3 {
  margin-bottom: 10px;
}

.page-templates .card p {
  font-size: 14px;
  color: var(--text-light);
}

.page-templates .card-link {
  display: inline-block;
  margin-top: 15px;
  background: var(--accent);
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
}

/* FOOTER */
.page-templates .footer-simple {
  background: var(--secondary);
  color: white;
  text-align: center;
  padding: 40px;
  margin-top: 60px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .page-templates .hero-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .page-templates .hero {
    padding: 60px 20px;
  }
}


/* =========================
   PAGE: SOBRE
========================= */

.page-sobre {
  background: var(--bg);
}

/* HERO */
.page-sobre .hero {
  padding: 100px 0 60px;
}

.page-sobre .hero-simple {
  max-width: 800px;
}

.page-sobre .hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.page-sobre .hero p {
  color: var(--text-light);
}

/* CONTEÚDO */
.page-sobre .about-content {
  padding: 60px 0;
}

/* GRID */
.page-sobre .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.page-sobre .about-grid h2 {
  margin-bottom: 10px;
}

/* CARDS */
.page-sobre .about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.page-sobre .card {
  padding: 30px;
}

/* CTA */
.page-sobre .cta {
  margin-top: 60px;
}

/* FOOTER */
.page-sobre .footer {
  margin-top: 60px;
}

/* RESPONSIVO */
@media (max-width: 900px) {

  .page-sobre .about-grid {
    grid-template-columns: 1fr;
  }

  .page-sobre .about-cards {
    grid-template-columns: 1fr;
  }

  .page-sobre .hero {
    padding: 60px 20px;
  }
}

/* =========================
   PAGE: TEMPLATES (PREMIUM)
========================= */

.page-templates .header-simple {
  background: var(--primary);
  color: white;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* HERO */
.page-templates .hero {
  padding: 120px 0 80px;
}

.page-templates .hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-templates .hero-text {
  max-width: 520px;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  background: #eef2ff;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.page-templates .hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-templates .hero p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.page-templates .hero-buttons {
  display: flex;
  gap: 15px;
}

/* HERO BOX */
.hero-box {
  width: 140px;
  height: 140px;
  background: var(--accent);
  color: white;
  font-size: 40px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

/* SECTION HEADER */
.templates-header {
  margin-bottom: 40px;
}

.templates-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.templates-header p {
  color: var(--text-light);
}

/* GRID */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* CARD PREMIUM */
.template-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
}

.template-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.template-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.template-content {
  padding: 20px;
}

.template-content h3 {
  margin-bottom: 8px;
}

.template-content p {
  font-size: 14px;
  color: var(--text-light);
}

.template-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

/* FOOTER */
.page-templates .footer-simple {
  background: var(--secondary);
  color: white;
  text-align: center;
  padding: 40px;
  margin-top: 80px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .page-templates .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-box {
    margin-top: 20px;
  }
}

.btn-primary {
  background: var(--accent);
  color: #fff;

  padding: 12px 22px;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 500;

  text-decoration: none;
  display: inline-block;

  border: none;
  cursor: pointer;

  transition: all 0.25s ease;
}

/* HOVER */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.25);
}

/* CLICK */
.btn-primary:active {
  transform: scale(0.97);
  box-shadow: none;
}

/* FOCUS (acessibilidade) */
.btn-primary:focus {
  outline: 2px solid rgba(79, 70, 229, 0.4);
  outline-offset: 2px;
}

/* DESABILITADO */
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* =========================
   HEADER MODERNO
========================= */

.header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  color: white;
  font-weight: 600;
  font-size: 18px;
}

/* MENU DESKTOP */
.menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: 0.2s;
}

.menu a:hover {
  opacity: 1;
}

/* BOTÕES */
.desktop-btn {
  display: inline-block;
}

.mobile-btn {
  display: none;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  display: block;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {

  .desktop-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 70px;
    right: 0;

    width: 100%;
    background: var(--primary);

    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 30px 0;

    transform: translateY(-200%);
    transition: 0.3s ease;
  }

  .menu.active {
    transform: translateY(0);
  }

  .mobile-btn {
    display: inline-block;
  }
}


.transp{
   background: transparent;
     border: 1px solid #00ff88;
}
/*tipografia*/

/* Importação das fontes */


/* Importar fontes (coloque no topo ou no <head>) */


/* Base: tudo usa Inter */
body {
  font-family: 'Inter', sans-serif;
}

/* Garante que TODOS os elementos herdem Inter */
body * {
  font-family: inherit;
}

/* Títulos usam Sora */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
    line-height: 1.2;
  font-weight: 700;
}

