/* Araras Studio — design tokens */
:root {
  --bg-deep: #0a0c10;
  --bg-elevated: #12151c;
  --bg-card: #161a24;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --text: #e8eaef;
  --text-muted: #9aa3b2;
  --accent: #e8a838;
  --accent-soft: rgba(232, 168, 56, 0.15);
  --accent-2: #4fd1c5;
  --danger: #f87171;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(232, 168, 56, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 40%, rgba(79, 209, 197, 0.06), transparent 45%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #111;
  z-index: 9999;
  border-radius: var(--radius-md);
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #c76a1d 100%);
  position: relative;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(10, 12, 16, 0.35);
  border-radius: 6px;
  border-left-color: transparent;
  transform: rotate(-35deg);
}

.logo-accent {
  color: var(--accent);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.75rem;
}

.nav-list a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent) !important;
  border: 1px solid rgba(232, 168, 56, 0.35);
}

.nav-cta:hover {
  background: rgba(232, 168, 56, 0.22);
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: 10%;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--accent-2);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero-highlight {
  color: var(--accent);
  position: relative;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 36ch;
  margin: 0 0 1.75rem;
}

.hero-lead strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c97a20);
  color: #141109;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-subtle);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--border-subtle);
}

.btn-secondary:hover {
  border-color: rgba(232, 168, 56, 0.4);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border-subtle);
}

.hero-stats dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
}

.hero-stats dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-card {
  width: 100%;
  max-width: 380px;
  padding: 1.5rem 1.5rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

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

.panel-pill {
  float: right;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.panel-pill--ok {
  background: rgba(79, 209, 197, 0.15);
  color: var(--accent-2);
}

.panel-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.panel-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}

.panel-list li:last-of-type {
  border-bottom: none;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.dot--on {
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.panel-foot {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.section--games {
  background: linear-gradient(180deg, transparent, rgba(18, 21, 28, 0.6));
  border-top: 1px solid var(--border-subtle);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.game-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.game-card--accent {
  border-color: rgba(232, 168, 56, 0.25);
  background: linear-gradient(160deg, var(--bg-card), rgba(232, 168, 56, 0.06));
}

.game-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.35rem 0 0.75rem;
}

.game-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.game-card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.game-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(79, 209, 197, 0.12);
  color: var(--accent-2);
}

.game-badge--alt {
  background: var(--accent-soft);
  color: var(--accent);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.section--advantages {
  border-top: 1px solid var(--border-subtle);
}

.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.adv-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.2s, transform 0.2s;
}

.adv-card:hover {
  border-color: rgba(232, 168, 56, 0.2);
  transform: translateY(-2px);
}

.adv-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.adv-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.adv-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section--pricing {
  background: rgba(18, 21, 28, 0.5);
  border-top: 1px solid var(--border-subtle);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.price-desc {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  min-height: 2.8rem;
}

.price-tag {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-currency {
  font-size: 1rem;
  vertical-align: super;
  margin-right: 0.15rem;
  color: var(--text-muted);
}

.price-period {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex-grow: 1;
}

.price-features li {
  padding: 0.45rem 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-features li:first-child {
  border-top: none;
  padding-top: 0;
}

.price-card--featured {
  border-color: rgba(232, 168, 56, 0.45);
  box-shadow: 0 0 0 1px rgba(232, 168, 56, 0.08), var(--shadow-soft);
  transform: scale(1.02);
}

.price-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  background: var(--accent);
  color: #141109;
}

.section--cta {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 168, 56, 0.25);
  background: linear-gradient(120deg, rgba(232, 168, 56, 0.12), var(--bg-card) 45%, rgba(79, 209, 197, 0.08));
}

.cta-copy {
  max-width: 42ch;
}

.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.5rem;
  font-weight: 800;
}

.cta-copy p {
  margin: 0;
  color: var(--text-muted);
}

.cta-actions {
  text-align: right;
}

.cta-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 28ch;
  margin-left: auto;
}

/* Confirmação de pagamento */
.confirm-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.confirm-main {
  flex: 1;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
}

.confirm-wrap {
  max-width: 880px;
}

.confirm-hero {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.confirm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: #141109;
  background: linear-gradient(135deg, var(--accent-2), #2a9d8f);
  box-shadow: 0 0 0 4px rgba(79, 209, 197, 0.15);
}

.confirm-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.confirm-lead {
  margin: 0 auto 1.5rem;
  max-width: 48ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.confirm-lead strong {
  color: var(--text);
}

.confirm-plan {
  display: inline-block;
  margin: 0;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  font-size: 0.95rem;
  font-weight: 500;
}

.confirm-plan-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.confirm-videos {
  margin-bottom: 2.5rem;
}

.confirm-videos .section-head {
  margin-bottom: 2rem;
}

.video-grid {
  display: grid;
  gap: 1.75rem;
}

.video-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.video-card-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elevated);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.confirm-actions {
  text-align: center;
}

.confirm-help {
  margin: 1.25rem auto 0;
  max-width: 40ch;
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (min-width: 720px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2rem 0;
  background: var(--bg-deep);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: -1;
  }

  .game-grid,
  .advantages,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card--featured {
    transform: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 12, 16, 0.97);
    border-bottom: 1px solid var(--border-subtle);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav.is-open {
    max-height: 320px;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0;
  }

  .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
  }

  .cta-actions {
    text-align: left;
  }

  .cta-note {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover,
  .adv-card:hover {
    transform: none;
  }
}

/* =========================================
   FORMULÁRIO CONFIRMAÇÃO
========================================= */

.confirm-form{
	margin: 40px 0;
	padding: 32px;
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 22px;
	backdrop-filter: blur(10px);
}

/* TÍTULOS */

.confirm-form-title{
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #fff;
}

.confirm-form-text{
	font-size: 15px;
	line-height: 1.7;
	opacity: .75;
	margin-bottom: 28px;
	color: #d7d7d7;
}

/* INPUTS */

.confirm-form input[type="text"],
.confirm-form input[type="email"],
.confirm-form input[type="tel"],
.confirm-form input[type="number"],
.confirm-form input[type="url"],
.confirm-form textarea,
.confirm-form select{

	width: 100%;
	padding: 16px 18px;
	margin-top: 8px;
	margin-bottom: 20px;

	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);

	border-radius: 14px;

	color: #fff;
	font-size: 15px;
	font-weight: 500;

	outline: none;

	transition:
		border-color .25s ease,
		background .25s ease,
		transform .2s ease,
		box-shadow .25s ease;
}

/* PLACEHOLDER */

.confirm-form input::placeholder,
.confirm-form textarea::placeholder{
	color: rgba(255,255,255,.45);
}

/* FOCO */

.confirm-form input:focus,
.confirm-form textarea:focus,
.confirm-form select:focus{

	border-color: #4da3ff;

	background: rgba(255,255,255,.06);

	box-shadow:
		0 0 0 4px rgba(77,163,255,.12);

	transform: translateY(-1px);
}

/* TEXTAREA */

.confirm-form textarea{
	min-height: 140px;
	resize: vertical;
}

/* LABELS */

.confirm-form label{
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #f1f1f1;
	margin-bottom: 4px;
}

/* BOTÃO SUBMIT */

.confirm-form input[type="submit"],
.confirm-form button,
.confirm-form .wpcf7-submit{

	width: 100%;
	padding: 18px 24px;

	border: none;
	border-radius: 16px;

	background: linear-gradient(
		135deg,
		#0066ff,
		#4da3ff
	);

	color: #fff;

	font-size: 16px;
	font-weight: 700;

	cursor: pointer;

	transition:
		transform .2s ease,
		box-shadow .25s ease,
		opacity .2s ease;
}

/* HOVER */

.confirm-form input[type="submit"]:hover,
.confirm-form button:hover,
.confirm-form .wpcf7-submit:hover{

	transform: translateY(-2px);

	box-shadow:
		0 12px 30px rgba(0,102,255,.25);
}

/* CLICK */

.confirm-form input[type="submit"]:active,
.confirm-form button:active,
.confirm-form .wpcf7-submit:active{

	transform: scale(.98);
}

/* MENSAGENS CONTACT FORM 7 */

.confirm-form .wpcf7-response-output{
	margin-top: 24px;
	border-radius: 12px;
	padding: 16px;
	font-size: 14px;
}

/* ERROS */

.confirm-form .wpcf7-not-valid-tip{
	margin-top: -12px;
	margin-bottom: 12px;
	font-size: 13px;
	color: #ff7b7b;
}

/* MOBILE */

@media(max-width:768px){

	.confirm-form{
		padding: 24px;
	}

	.confirm-form-title{
		font-size: 24px;
	}

	.confirm-form input[type="submit"],
	.confirm-form button,
	.confirm-form .wpcf7-submit{
		padding: 16px;
	}
}

/* =========================================
   PARCEIROS
========================================= */

.section--partners{
	position: relative;
	text-align: center;
}

.partners-grid{

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

	gap: 24px;

	margin-top: 48px;
}

/* CARD */

.partner-card{

	width: 220px;
	height: 130px;

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

	padding: 24px;

	background: rgba(255,255,255,.03);

	border: 1px solid rgba(255,255,255,.08);

	border-radius: 22px;

	backdrop-filter: blur(10px);

	transition:
		transform .25s ease,
		border-color .25s ease,
		background .25s ease,
		box-shadow .25s ease;
}

.partner-card:hover{

	transform: translateY(-5px);

	border-color: rgba(77,163,255,.35);

	background: rgba(255,255,255,.05);

	box-shadow:
		0 15px 40px rgba(0,0,0,.2);
}

/* LOGO */

.partner-card img{

	width: 100%;
	height: 70px;

	object-fit: contain;

	filter: brightness(.96);

	transition:
		transform .25s ease,
		filter .25s ease;
}

.partner-card:hover img{

	transform: scale(1.04);

	filter: brightness(1.08);
}

/* =========================================
   CONTATO
========================================= */

.section--contact{
	padding-top: 100px;
	text-align: center;
}

/* BOX FORM */

.contact-box{

	max-width: 760px;

	margin: 48px auto 0;

	padding: 40px;

	background: rgba(255,255,255,.03);

	border: 1px solid rgba(255,255,255,.08);

	border-radius: 24px;

	backdrop-filter: blur(12px);

	text-align: left;
}

/* =========================================
   FORMULÁRIO
========================================= */

.contact-box input[type="text"],
.contact-box input[type="email"],
.contact-box input[type="tel"],
.contact-box input[type="number"],
.contact-box input[type="url"],
.contact-box textarea,
.contact-box select{

	width: 100%;

	padding: 16px 18px;

	margin-top: 8px;
	margin-bottom: 20px;

	background: rgba(255,255,255,.04);

	border: 1px solid rgba(255,255,255,.08);

	border-radius: 14px;

	color: #fff;

	font-size: 15px;
	font-weight: 500;

	outline: none;

	transition:
		border-color .25s ease,
		background .25s ease,
		transform .2s ease,
		box-shadow .25s ease;
}

/* PLACEHOLDER */

.contact-box input::placeholder,
.contact-box textarea::placeholder{
	color: rgba(255,255,255,.45);
}

/* FOCUS */

.contact-box input:focus,
.contact-box textarea:focus,
.contact-box select:focus{

	border-color: #4da3ff;

	background: rgba(255,255,255,.06);

	box-shadow:
		0 0 0 4px rgba(77,163,255,.12);

	transform: translateY(-1px);
}

/* TEXTAREA */

.contact-box textarea{
	min-height: 140px;
	resize: vertical;
}

/* LABELS */

.contact-box label{

	display: block;

	font-size: 14px;
	font-weight: 600;

	color: #f1f1f1;

	margin-bottom: 4px;
}

/* BOTÃO */

.contact-box input[type="submit"],
.contact-box button,
.contact-box .wpcf7-submit{

	width: 100%;

	padding: 18px 24px;

	border: none;
	border-radius: 16px;

	background: linear-gradient(
		135deg,
		#0066ff,
		#4da3ff
	);

	color: #fff;

	font-size: 16px;
	font-weight: 700;

	cursor: pointer;

	transition:
		transform .2s ease,
		box-shadow .25s ease,
		opacity .2s ease;
}

/* HOVER BOTÃO */

.contact-box input[type="submit"]:hover,
.contact-box button:hover,
.contact-box .wpcf7-submit:hover{

	transform: translateY(-2px);

	box-shadow:
		0 12px 30px rgba(0,102,255,.25);
}

/* ACTIVE */

.contact-box input[type="submit"]:active,
.contact-box button:active,
.contact-box .wpcf7-submit:active{

	transform: scale(.98);
}

/* MENSAGENS */

.contact-box .wpcf7-response-output{

	margin-top: 24px;

	border-radius: 12px;

	padding: 16px;

	font-size: 14px;
}

/* ERROS */

.contact-box .wpcf7-not-valid-tip{

	margin-top: -12px;
	margin-bottom: 12px;

	font-size: 13px;

	color: #ff7b7b;
}

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

@media(max-width:768px){

	.partner-card{
		width: 160px;
		height: 100px;
	}

	.partner-card img{
		height: 50px;
	}

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

@media(max-width:520px){

	.partners-grid{
		flex-direction: column;
	}

	.partner-card{
		width: 100%;
		max-width: 280px;
	}
}