
/* styles.css – tema dark futurista para feztray.digital */

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

:root {
  --bg-main: #020617;
  --bg-elevated: #050818;
  --bg-card: #0b1120;
  --accent: #38bdf8;
  --accent-strong: #0ea5e9;
  --accent-purple: #a855f7;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --radius-xl: 1.5rem;
  --shadow-soft: 0 30px 80px rgba(15, 23, 42, 0.9);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: radial-gradient(circle at top, #020617 0, #000 80%);
  color: var(--text-main);
  min-height: 100vh;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 3.5rem;
}

/* HEADER / NAV */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  padding: 2px;
  background: conic-gradient(from 160deg, #0ea5e9, #22c55e, #a855f7, #0ea5e9);
}

.brand-icon-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-main);
}

.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.16s ease-out;
}

nav a:hover {
  color: var(--accent);
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
}

nav a.active {
  border-color: rgba(56, 189, 248, 0.7);
  color: var(--accent-strong);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 0.95));
}

/* SEÇÕES GENÉRICAS */

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin-bottom: 1.7rem;
}

/* BOTÕES */

.btn-primary {
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  border: 1px solid rgba(56, 189, 248, 0.8);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.3), rgba(15, 23, 42, 0.95));
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: 0.16s ease-out;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 36px 90px rgba(8, 47, 73, 0.95);
}

.btn-ghost {
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: 0.16s ease-out;
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: rgba(148, 163, 184, 0.9);
}

/* CARDS */

.card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.85);
}

/* INDEX – HERO */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.4rem;
  margin-bottom: 3.2rem;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw + 1.2rem, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

.hero-title span {
  background: linear-gradient(120deg, var(--accent-strong), var(--accent-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.hero-badge {
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-muted);
}

.hero-preview {
  position: relative;
}

.hero-preview .preview-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.hero-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MODELS PAGE */

.models-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.6rem;
}

.models-sidebar {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
}

.models-sidebar h3 {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.models-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.models-list button {
  all: unset;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  border: 1px solid transparent;
}

.models-list button:hover {
  color: var(--accent);
  border-color: rgba(148, 163, 184, 0.5);
}

.models-list button.is-active {
  color: var(--accent-strong);
  background: radial-gradient(circle at left, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 0.95));
  border-color: rgba(56, 189, 248, 0.85);
}

.models-main {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 1.2rem 1.4rem;
}

.models-main h2 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.models-main p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin-bottom: 1.3rem;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}

.model-card {
  background: var(--bg-card);
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  padding: 0.9rem;
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.model-title {
  font-weight: 500;
}

.model-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.model-tag {
  margin-top: 0.3rem;
  font-size: 0.75rem;
  color: var(--accent);
}

/* CREATE PAGE */

.create-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.8rem;
}

.steps-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 1.1rem 1.2rem;
}

.step {
  border-bottom: 1px dashed rgba(55, 65, 81, 0.8);
  padding: 0.7rem 0;
}

.step:last-child {
  border-bottom: none;
}

.step-title {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.step-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.create-preview {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.create-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TOOLS PAGE */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.2rem;
}

.tool-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  color: #f9fafb;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
}

.tool-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.tool-content {
  position: relative;
  z-index: 1;
}

.tool-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.tool-text {
  font-size: 0.85rem;
}

/* COMPARE PAGE */

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.4rem;
}

.compare-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
}

.compare-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.compare-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.8);
  font-size: 0.75rem;
  color: var(--accent-strong);
}

.compare-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.compare-slot {
  background: var(--bg-card);
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, 0.9);
}

.compare-slot img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.compare-caption {
  font-size: 0.78rem;
  text-align: center;
  padding: 0.25rem 0.4rem;
  color: var(--text-muted);
}

/* FOOTER */

footer {
  margin-top: 2.8rem;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .hero-grid,
  .create-layout,
  .models-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    justify-content: flex-start;
  }
}

/* FIX – Ajusta tamanho e centraliza o site inteiro */
.page-shell {
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 40px !important;
}

/* Hero maior e proporcional */
.hero-grid {
  grid-template-columns: 1.2fr 1fr !important;
  gap: 50px !important;
  align-items: center !important;
}

.hero-title {
  font-size: 3.5rem !important;
}

.hero-subtitle {
  font-size: 1.2rem !important;
}

/* Imagem do lado direito maior e sem distorção */
.hero-preview img {
  width: 100% !important;
  height: auto !important;
}

/* Deixar tudo “mais grande” sem quebrar nada */
body {
  zoom: 1.15;
}


.page-shell {max-width:1500px!important;margin:0 auto!important;padding:40px!important;}
.hero-preview{display:flex!important;justify-content:center!important;}
.hero-preview img{max-width:800px!important;height:auto!important;}
.feature-grid{margin-top:1.5rem;display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.8rem 2.5rem;}
.feature-item{display:flex;align-items:flex-start;gap:1rem;}
.feature-icon{width:44px;height:44px;border-radius:16px;background:var(--bg-card);border:1px solid var(--border-subtle);display:flex;justify-content:center;align-items:center;font-size:1.4rem;}
