/*
Theme Name: Hypersolution Theme
Theme URI: https://github.com/gustconti2/hypersolution-theme
Author: Gustavo Conti
Author URI: https://github.com/gustconti2
Description: Custom theme for Hypersolution
Version: 0.1.0
*/

/* ===== Base reset ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  background-color: #000;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  font-family: Outfit;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Reset links */
a {
  color: inherit;
  text-decoration: none;
}

/* Remove default margins */
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote {
  margin: 0;
}

/* Images behave nicely */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Buttons & inputs inherit font */
button,
input,
textarea,
select {
  font: inherit;
}

/* ===== Layout ===== */

a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
}

.accented-text {
  color: rgb(149, 211, 111);
}

/* ===== Header ===== */

/* Mobile */
body.admin-bar .site-header {
  top: 56px;
}

/* Desktop */
@media (min-width: 783px) {
  body.admin-bar .site-header {
    top: 42px;
  }
}

.nav-list {
  display: flex;
  gap: 24px;
}

main {
  padding: 0px;
}

/* =========================
   HERO
========================= */

body {
  margin: 0;
  background: #000;
}

/* =========================
   HERO CONTAINER
========================= */

.hero-container {
  position: relative;

  width: 100%;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 200px 0 150px 0;

  background-color: #000;

  /* Radial + Linear + Pattern */
  background-image:
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.75) 55%,
      rgba(0, 0, 0, 0.95) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.85) 100%
    ),
    url("assets/images/background\ hero.png");

  background-size:
    cover,
    /* radial */ cover,
    /* linear */ 600px; /* pattern */

  background-repeat: no-repeat, no-repeat, repeat;

  background-position: center, center, center;
}

/* =========================
   HERO BOX
========================= */

.hero-box {
  width: 910px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   TÍTULO
========================= */

.hero-title {
  font-weight: 380;
  font-size: 72px;
  line-height: 95%;
  color: #ffffff;
}

/* =========================
   TEXTO
========================= */

.hero-text {
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================
   BOTÃO
========================= */

.container-botao {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

/* =========== SECTION cards -  ========== */

.cards-container {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.cards-box {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.cards-section {
  width: 100%;
}

/* ========= TÍTULO ========= */

.cards-title {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  margin-bottom: 30px;
}

/* ========== WRAPPER DOS CARDS =========== */

.card-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* ========= CARD INDIVIDUAL ========= */

.card {
  background: linear-gradient(180deg, #1a1f29 0%, #141821 100%);
  width: 260px;
  padding: 30px 25px 35px 25px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid #2a2f3a;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgb(149, 211, 111);
}

/* ========== BLOCO VERDE SUPERIOR ========== */

.card-image {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image img {
  object-fit: cover;
  display: block; /* mantém proporção */
}

/* ========== TEXTO DO CARD ========== */

.cards-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 50px;
}

.card-text {
  font-size: 13px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* ======== TEXTO ABAIXO DOS CARDS ======== */

.cards-message {
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
}

/* ==========BOTÂO============= */

.cardbutton {
  display: flex;
  justify-content: center;
}

.btn-primary {
  margin-top: 50px;
  padding: 12px 28px;
  border-radius: 12px;
  border: 1px solid #2a2f3a;
  background-color: rgb(149, 211, 111);
  color: #050505;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  border-color: rgb(149, 211, 111);
  background-color: #141821;
  transform: translateY(-2px);
  color: #f8f7f7;
}

@media (max-width: 992px) {
  .card-wrapper {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 320px;
  }
}

/* ===== SECTION mission ===== */

.mission {
  background-color: #000;
  padding: 100px 20px;
  color: #fff;
}

.mission .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ===== TITLE ===== */

.mission-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 60px;
}

.highlight {
  color: rgb(149, 211, 111);
}

/* ===== CONTENT GRID ===== */

.mission-content {
  display: grid;
  gap: 40px;
}

/* Mobile = 1 coluna */
.mission-content {
  grid-template-columns: 1fr;
}

/* Desktop = 2 colunas */
@media (min-width: 900px) {
  .mission-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== TEXT BLOCKS ===== */

.mission-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #b5b5b5;
  margin-bottom: 20px;
}

/* ===== Content Value ===== */

.value {
  background: #0b0f14;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.value-card {
  background: #0f141b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 60px 50px;
  max-width: 800px;
  width: 100%;
}

.value-title {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 60px;
  line-height: 1.3;
}

.value-title span {
  color: rgb(149, 211, 111);
}

.value-item {
  display: flex;
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.value-item:first-of-type {
  border-top: none;
}

.value-number {
  font-size: 14px;
  font-weight: 600;
  color: rgb(149, 211, 111);
  min-width: 30px;
  margin-top: 6px;
}

.value-content h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 500;
}

.value-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-content li {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===== Content method ===== */

.method {
  background: #0b0f14;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.method-container {
  max-width: 1100px;
  width: 100%;
}

.method-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  margin-bottom: 30px;
}

.method-title {
  font-size: 60px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 25px;
}

.method-title span {
  color: rgb(149, 211, 111);
}

.method-description {
  max-width: 600px;
  margin: 0 auto 70px auto;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Card ===== */

.method-card {
  display: flex;
  gap: 40px; /* REDUZIDO (antes 60px) */
  background: #0f141b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 60px;
  text-align: left;
  align-items: center;
}

/* ===== Steps ===== */

.method-steps {
  flex: 1;
}

.method-brand {
  font-size: 12px;
  letter-spacing: 6px;
  color: #64748b;
  display: block;
  margin-bottom: 40px;
}

/* TODAS AS FASES AGORA IGUAIS */

.step {
  margin-bottom: 40px;
}

.step h4 {
  font-size: 22px; /* AUMENTADO */
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.step p {
  font-size: 16px; /* AUMENTADO */
  color: #94a3b8;
  line-height: 1.6;
}

/* REMOVIDO:
   - opacity
   - .step.active
   - transições desnecessárias
*/

/* ===== Visual (Imagem) ===== */

.method-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-image {
  width: 100%;
  max-width: 440px; /* LEVEMENTE MENOR para aproximar do texto */
  height: auto;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(149, 211, 111, 0.12);
  transition: transform 0.4s ease;
}

.method-image:hover {
  transform: translateY(-6px);
}

/* ===== Footer ===== */

.method-footer {
  margin-top: 30px;
  font-size: 13px;
  color: #64748b;
}

/* ===== Responsivo ===== */

@media (max-width: 992px) {
  .method-title {
    font-size: 42px;
  }

  .method-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    gap: 40px;
  }

  .method-steps {
    margin-bottom: 40px;
  }

  .method-image {
    max-width: 100%;
  }
}
/* ===== Foundation ===== */

.foundation {
  background: #0b0f14;
  padding: 70px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.foundation-container {
  max-width: 800px;
  width: 100%;
}

.foundation-title {
  font-size: 60px;
  margin-bottom: 25px;
}

.foundation-title span {
  color: rgb(149, 211, 111);
}

.foundation-description {
  max-width: 600px;
  margin: 0 auto 60px auto;
  font-size: 15px;
  line-height: 1.6;
  color: #94a3b8;
}

/* ===== CARDS ===== */

.foundation-card {
  display: flex;
  align-items: center;
  background: #0f141b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  gap: 25px;
}

.foundation-icon {
  width: 70px; /* mantém o tamanho do quadrado */
  height: 70px;
  border-radius: 16px;
  overflow: hidden; /* garante que nada ultrapasse */
  flex-shrink: 0;
}

.foundation-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* faz a imagem preencher completamente */
  display: block;
}

.foundation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.foundation-content h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 6px;
}

.foundation-content p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
}

/* ===== BUTTON ===== */

.foundation-button {
  margin-top: 40px;
}

@media (max-width: 480px) {
  .foundation-title {
    font-size: 22px;
  }
}

/* ====== PROOF SECTION ====== */

.section {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.section-box {
  max-width: 1200px;
  width: 100%;
}

.proof {
  background: #000;
  color: #fff;
  text-align: center;
}

/* ======= HEADER ======= */

.proof-header {
  text-align: center;
  margin-bottom: 70px;
}

.proof-title-pill {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  background-color: #0f0f0f;
  border: 1px solid rgb(149, 211, 111);
  color: rgb(149, 211, 111);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: lowercase;
}

.proof-subtitle {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
}

.proof-subtitle span {
  color: rgb(149, 211, 111);
}

/* ======= WRAPPER ======= */

.proof-wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* ====== CARD ====== */

.proof-card {
  width: 320px;
  background: linear-gradient(180deg, #1a1f29 0%, #141821 100%);
  border-radius: 18px;
  border: 1px solid #2a2f3a;
  overflow: hidden;
  transition: 0.3s ease;
}

.proof-card:hover {
  transform: translateY(-8px);
  border-color: rgb(149, 211, 111);
}

/* ======= BLOCO VERDE SUPERIOR ======== */

.proof-visual {
  height: 160px;
  overflow: hidden;
}

.proof-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 65%; /* 👈 sobe a imagem */
  display: block;
}

.proof-visual {
  background: linear-gradient(135deg, #52d681, #3bbf73);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-circle {
  width: 65px;
  height: 65px;
  background: #000;
  border-radius: 50%;
}

/* ======== CONTEÚDO ========= */

.proof-content {
  padding: 30px;
}

.proof-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}

.proof-text {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* ====== BOTÃO ======= */

.proof-btn {
  margin-top: 20px;
  padding: 9px 22px;
  border-radius: 8px;
  border: 1px solid rgb(149, 211, 111);
  background: transparent;
  color: rgb(149, 211, 111);
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s ease;
}

.proof-btn:hover {
  background: rgb(149, 211, 111);
  color: #000;
}

.proof-text-container {
  height: 120px;
}

/* ======== RESPONSIVO ======== */

@media (max-width: 768px) {
  .proof-wrapper {
    gap: 30px;
  }

  .proof-card {
    width: 100%;
    max-width: 340px;
  }
  .proof-text-container {
    height: auto;
  }
}

/* ======== QUESTIONS ======== */

.questions {
  padding: 120px 0;
  background: #000;
  color: #fff;
}

.questions-header {
  text-align: center;
  margin-bottom: 80px;
}

.questions-title-pill {
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 24px;

  border: 1px solid #2a2a2a;
  border-radius: 999px;

  font-size: 14px;
  color: #aaa;
}

.questions-title {
  margin-top: 90px;
  font-size: 80px;
  font-weight: 600;
  line-height: 1.2;
}

.questions-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ========== ITEM ========== */

.question-item {
  background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: border 0.3s ease;
}

.question-item.active {
  border: 1px solid #2a2a2a;
}

/* ========= BOTÃO ========= */

.question-trigger {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;

  padding: 22px 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  cursor: pointer;
  text-align: left;
}

/* ========= ÍCONE ========== */

.question-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* ======== CONTEÚDO ======== */

.question-content {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  padding: 0 24px;
}

.question-content p {
  padding: 0 0 24px 0;
  color: #aaa;
  font-size: 16px;
  line-height: 1.6;
}

.question-item.active .question-icon {
  transform: rotate(-135deg);
}

/* ========================================
   SECTION DIAGNOSTIC
======================================== */

.diagnostic {
  padding: clamp(80px, 10vw, 140px) px;
  background: #000;
  color: #fff;
  text-align: center;
}

.diagnostic-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* ========================================
   LOGO
======================================== */

.diagnostic-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 0px;
}

.diagnostic-logo img {
  display: block;
  width: clamp(60px, 8vw, 80px);
  height: auto;
  margin-bottom: 16px;
  margin-right: 3px;
}

.diagnostic-logo-text {
  font-size: clamp(10px, 1.5vw, 12px);
  letter-spacing: 4px;
  color: #aaa;
  text-transform: uppercase;
}

/* ========================================
   TITLE
======================================== */

.diagnostic-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

.diagnostic-title span {
  color: rgb(149, 211, 111);
}

/* ========================================
   TEXT
======================================== */

.diagnostic-text {
  font-size: clamp(15px, 2.2vw, 18px);
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   MOBILE REFINEMENT
======================================== */

@media (max-width: 480px) {
  .diagnostic-title {
    line-height: 1.3;
  }

  .diagnostic-text {
    margin-bottom: 32px;
  }
}

/* ========= footer ========== */

.footer {
  background: #000;
  padding: 70px 24px 40px;
  border-top: 1px solid #111;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ========= links principais ========== */

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgb(149, 211, 111);
}

/* ========= links ========== */

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-legal a {
  font-size: 13px;
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: rgb(149, 211, 111);
}

/* ========= copyright ========== */

.footer-copy p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* ========= responsivo ========== */

@media (max-width: 768px) {
  .footer-links {
    gap: 25px;
  }

  .footer-legal {
    gap: 20px;
  }
}

/* ====== CONTACT SECTION ====== */

.contact-section {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  background: radial-gradient(circle at top, #0f1115 0%, #000000 70%);
}

.contact-container {
  max-width: 1000px; /* aumenta a largura geral */
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */

.contact-header {
  text-align: center;
  max-width: 700px;
  margin-bottom: 60px;
}

.contact-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-title {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 18px;
  color: #9ca3af;
  line-height: 1.6;
}

/* ===== CARD ===== */

.contact-card {
  position: relative;
  overflow: hidden;
}

/* IMAGEM DECORATIVA */
.contact-degrade {
  position: absolute;
  bottom: 0;
  right: 0;

  width: 260px;
  height: auto;

  opacity: 0.55;

  z-index: 0;
  pointer-events: none;
}

#contact-form {
  position: relative;
  z-index: 2;
}

.form-row {
  display: flex;
  gap: 30px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full {
  width: 100%;
}

/* LABEL */

.form-group label {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 8px;
}

/* INPUTS */

.form-group input,
.form-group textarea {
  background: #0f1115;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  transition: 0.3s ease;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #95d36f;
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

/* ===== FOOTER ===== */

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  gap: 20px;
}

.contact-button {
  background: #95d36f;
  color: #000;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.contact-note {
  font-size: 13px;
  color: #9ca3af;
}

/* ========================================= */
/* ============ RESPONSIVIDADE ============ */
/* ========================================= */

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .contact-title {
    font-size: 40px;
  }

  .contact-card {
    padding: 40px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 20px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .contact-card {
    padding: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-button {
    width: 100%;
    text-align: center;
  }
}

/* ===== MOBILE  ===== */

@media (max-width: 480px) {
  .contact-title {
    font-size: 26px;
  }

  .contact-badge {
    font-size: 12px;
  }

  .contact-card {
    padding: 24px;
  }
}

/* ================================
   PREFOOTER 
================================ */

.prefooter-section {
  margin-top: 20px;
  position: relative;
  border-top: 1px solid rgb(149, 211, 111, 0.1);
  background: #050505;
  padding: 160px 20px;
  text-align: center;
  overflow: hidden;
}

/* Glow radial verde suave */
.prefooter-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.12) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Linha divisória antes do footer */
.prefooter-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

/* Container */
.prefooter-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Logo */
.prefooter-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.prefooter-logo img {
  max-width: 130px;
  height: auto;
  opacity: 0.95;
  transition: 0.4s ease;
}

.prefooter-logo img:hover {
  transform: scale(1.05);
}

/* Título */
.prefooter-title {
  font-size: 60px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

/* Subtítulo */
.prefooter-subtitle {
  font-size: 19px;
  color: #9ca3af;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================
   RESPONSIVIDADE
================================ */

/* Tablet */
@media (max-width: 1024px) {
  .prefooter-section {
    padding: 120px 20px;
  }

  .prefooter-title {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .prefooter-subtitle {
    font-size: 17px;
    max-width: 600px;
  }

  .prefooter-logo img {
    max-width: 110px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .prefooter-section {
    padding: 100px 20px;
  }

  .prefooter-section::before {
    width: 450px;
    height: 450px;
    top: 35%;
  }

  .prefooter-title {
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .prefooter-subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .prefooter-logo {
    margin-bottom: 30px;
  }

  .prefooter-logo img {
    max-width: 95px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .prefooter-title {
    font-size: 28px;
  }

  .prefooter-subtitle {
    font-size: 15px;
  }
}
