/*
Theme Name: Alivzen
Theme URI: http://seusite.com
Author: Seu Nome
Author URI: http://seusite.com
Description: Tema Alivzen baseado no HTML original, com gradiente animado e efeitos
Version: 1.5
*/

/* ==========================
   VARIÁVEIS GLOBAIS
========================== */
:root {
  --bg: #0f0f12; 
  --bg-soft: #1a0f23; 
  --bg-alt: #1f112b; 
  --text: #f5f5f7;
  --muted: #cfcfd6;
  --primary: #92278f;
  --primary-2: #c94fcf;
  --accent: #ff4081;
  --success: #2ecc71;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
}

/* ==========================
   GLOBAL
========================== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: linear-gradient(-45deg, var(--bg), var(--bg-soft), var(--bg-alt), var(--primary));
  background-size: 400% 400%;
  animation: gradientBG 20s ease infinite;
}

/* Gradiente animado */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
}

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

a:hover {
  text-decoration: underline;
}

/* ==========================
   HEADER
========================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: rgba(0,0,0,0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

header img {
  max-height: 60px;
  width: auto;
}

nav a {
  margin-left: 25px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

/* ==========================
   HERO SECTION
========================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 550px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--primary), var(--primary-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero img {
  max-width: 400px;
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

/* Botões */
.btn {
  padding: 14px 30px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-right: 12px;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* ==========================
   SEÇÃO BENEFÍCIOS
========================== */
.benefits {
  padding: 70px 8%;
  text-align: center;
}

.benefits h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.benefit-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
}

/* ==========================
   INFORMAÇÕES IMPORTANTES
========================== */
.info-section {
  text-align: center;
  padding: 70px 8%;
  background: rgba(255,255,255,0.08); /* Mais claro que o resto */
}

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

.info-card {
  background: rgba(255,255,255,0.12); /* Mais claro para destacar */
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  text-align: left;
}

.info-card:hover {
  transform: translateY(-8px);
}

.info-card h3 {
  margin-bottom: 10px;
}

.highlight {
  font-weight: bold;
  color: var(--accent);
}

/* ==========================
   FOOTER
========================== */
footer {
  background: rgba(0,0,0,0.6);
  padding: 40px 8%;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

footer .footer-logo {
    width: 150px !important; /* Ajuste para o tamanho que quiser */
    max-width: 150px !important; /* Garante limite máximo */
    height: auto !important;     /* Mantém proporção */
    display: block;
    margin: 0 auto 20px auto;    /* Centraliza horizontalmente */
}


/* ==========================
   ANIMAÇÕES
========================== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
