/*
Theme Name: NewOpp Theme
Theme URI: https://newopprh.com.br
Author: Vinícius Bastos
Author URI: https://midias.me
Description: Tema personalizado para Grupo New Opportunity - Recrutamento, Seleção e Gestão de Pessoas
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: newopp
*/

:root {
  --orange: #F47B20;
  --orange-dark: #D96A15;
  --orange-light: #FFA54F;
  --black: #1A1A1A;
  --dark: #0D0D0D;
  --gray-900: #222222;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-300: #BBBBBB;
  --gray-100: #F0F0F0;
  --white: #FFFFFF;
  --cream: #FDF8F3;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
  padding: 10px 0;
}
.navbar .container {
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.navbar.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a:hover { color: var(--orange); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px; font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border: none;
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 1001;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--white);
  position: absolute; left: 0; transition: all 0.3s ease;
}
.navbar.scrolled .hamburger span { background: var(--black); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); background: var(--black); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); background: var(--black); }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
  background: var(--white); z-index: 999; padding: 100px 32px 40px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column; gap: 24px;
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
  text-decoration: none; font-size: 24px; font-weight: 600;
  color: var(--black); display: block; padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:hover { color: var(--orange); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%; width: 80vw; height: 80vw;
  background: radial-gradient(circle, rgba(244,123,32,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; width: 100%; height: 200px;
  background: linear-gradient(transparent, var(--dark));
  z-index: 1;
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero .container { position: relative; z-index: 2; }
.hero-content {
  max-width: 720px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,123,32,0.12); border: 1px solid rgba(244,123,32,0.25);
  padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; color: var(--orange-light);
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease forwards;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); animation: pulse 2s ease-in-out infinite;
}
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800; line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.15s both;
}
.hero h1 .highlight {
  color: var(--orange);
  position: relative;
}
.hero p {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7; color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 540px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--white);
  padding: 16px 36px; border-radius: 60px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: all 0.3s ease; border: none; cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(244,123,32,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 16px 36px; border-radius: 60px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease; cursor: pointer;
  font-family: inherit;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 72px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 36px; font-weight: 800; color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-top: 6px; font-weight: 500;
}

/* Floating shapes */
.hero-shape {
  position: absolute; border-radius: 50%;
  z-index: 0;
}
.hero-shape-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,123,32,0.08), transparent);
  top: 10%; right: 5%;
  animation: float 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(244,123,32,0.06), transparent);
  bottom: 20%; right: 25%;
  animation: float 6s ease-in-out infinite 2s;
}

/* ===================== MARQUEE ===================== */
.marquee-section {
  background: var(--orange);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px; animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 3px;
  display: flex; align-items: center; gap: 60px;
  flex-shrink: 0;
}
.marquee-item::after {
  content: '◆'; font-size: 8px; opacity: 0.5;
}

/* ===================== ABOUT ===================== */
.about {
  padding: 120px 0;
  background: var(--white);
}
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; width: 30px; height: 2px; background: var(--orange);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800; line-height: 1.15;
  color: var(--black);
  margin-bottom: 24px;
}
.about-text h2 .highlight { color: var(--orange); }
.about-text p {
  font-size: 16px; line-height: 1.8; color: var(--gray-500);
  margin-bottom: 18px;
}
.about-visual {
  position: relative;
}
.about-card {
  background: var(--cream);
  border-radius: 24px; padding: 48px;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: var(--orange); opacity: 0.08;
  border-radius: 50%;
}
.about-values {
  display: grid; gap: 24px;
}
.about-value {
  display: flex; gap: 16px; align-items: flex-start;
}
.about-value-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--orange); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.about-value-icon svg { width: 22px; height: 22px; color: var(--white); }
.about-value h4 {
  font-family: 'Sora', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--black);
  margin-bottom: 4px;
}
.about-value p {
  font-size: 14px; color: var(--gray-500); line-height: 1.6;
}

/* ===================== DUAL CTA ===================== */
.dual-cta {
  padding: 100px 0;
  background: var(--gray-100);
  position: relative;
}
.dual-cta .container > h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800; text-align: center;
  margin-bottom: 16px;
  color: var(--black);
}
.dual-cta .container > p {
  text-align: center; font-size: 17px; color: var(--gray-500);
  margin-bottom: 56px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.dual-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.dual-card {
  border-radius: 24px; padding: 56px 48px;
  position: relative; overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.dual-card:hover { transform: translateY(-6px); }
.dual-card--candidate {
  background: var(--dark); color: var(--white);
}
.dual-card--candidate:hover { box-shadow: 0 30px 60px rgba(0,0,0,0.25); }
.dual-card--company {
  background: var(--orange); color: var(--white);
}
.dual-card--company:hover { box-shadow: 0 30px 60px rgba(244,123,32,0.3); }
.dual-card-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.dual-card--candidate .dual-card-icon { background: rgba(244,123,32,0.15); }
.dual-card--company .dual-card-icon { background: rgba(255,255,255,0.2); }
.dual-card-icon svg { width: 30px; height: 30px; }
.dual-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 26px; font-weight: 800; margin-bottom: 16px;
}
.dual-card p {
  font-size: 15px; line-height: 1.7; opacity: 0.8; margin-bottom: 28px;
}
.dual-card ul {
  list-style: none; margin-bottom: 36px;
}
.dual-card li {
  font-size: 14px; padding: 8px 0;
  display: flex; align-items: center; gap: 10px;
  opacity: 0.85;
}
.dual-card li::before {
  content: '✓'; font-weight: 700; color: var(--orange);
  width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  background: rgba(244,123,32,0.15); border-radius: 50%; font-size: 11px; flex-shrink: 0;
}
.dual-card--company li::before {
  background: rgba(255,255,255,0.2); color: var(--white);
}
.dual-card .btn-card {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all 0.3s ease; font-family: inherit; cursor: pointer; border: none;
}
.dual-card--candidate .btn-card {
  background: var(--orange); color: var(--white);
}
.dual-card--candidate .btn-card:hover { background: var(--orange-dark); transform: translateY(-2px); }
.dual-card--company .btn-card {
  background: var(--white); color: var(--orange);
}
.dual-card--company .btn-card:hover { background: var(--cream); transform: translateY(-2px); }

.dual-card-shape {
  position: absolute; width: 200px; height: 200px;
  border-radius: 50%; opacity: 0.06;
}
.dual-card--candidate .dual-card-shape { background: var(--orange); top: -60px; right: -60px; }
.dual-card--company .dual-card-shape { background: var(--white); bottom: -80px; left: -80px; }

/* ===================== SERVICES ===================== */
.services {
  padding: 120px 0;
  background: var(--white);
}
.services-header {
  text-align: center; margin-bottom: 72px;
}
.services-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800; color: var(--black);
  margin-bottom: 16px;
}
.services-header p {
  font-size: 17px; color: var(--gray-500);
  max-width: 520px; margin: 0 auto;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: 20px; padding: 40px 28px;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
  cursor: default;
}
.service-card:hover {
  background: var(--dark);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}
.service-card:hover * { color: var(--white); }
.service-card:hover .service-icon { background: var(--orange); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(244,123,32,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: all 0.4s ease;
}
.service-icon svg { width: 26px; height: 26px; color: var(--orange); transition: color 0.4s ease; }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--black);
  margin-bottom: 12px; transition: color 0.4s ease;
}
.service-card p {
  font-size: 14px; line-height: 1.7; color: var(--gray-500);
  transition: color 0.4s ease;
}

/* ===================== MISSION VISION ===================== */
.mission {
  padding: 100px 0;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.mission::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(244,123,32,0.08), transparent 60%);
}
.mission .container { position: relative; z-index: 1; }
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.mission-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 48px;
  transition: border-color 0.3s ease;
}
.mission-card:hover { border-color: rgba(244,123,32,0.3); }
.mission-card-label {
  font-size: 12px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.mission-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--white);
  margin-bottom: 16px; line-height: 1.3;
}
.mission-card p {
  font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.55);
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}
.cta-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800; color: var(--black);
  margin-bottom: 20px; line-height: 1.15;
}
.cta-section h2 .highlight { color: var(--orange); }
.cta-section p {
  font-size: 17px; color: var(--gray-500);
  max-width: 500px; margin: 0 auto 40px; line-height: 1.7;
}
.cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ===================== CONTACT ===================== */
.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-info h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800; color: var(--black);
  margin-bottom: 20px;
}
.contact-info > p {
  font-size: 16px; color: var(--gray-500); line-height: 1.7;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--orange); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 22px; height: 22px; color: var(--white); }
.contact-detail h4 {
  font-size: 14px; font-weight: 700; color: var(--black);
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  font-size: 14px; color: var(--gray-500); text-decoration: none; line-height: 1.6;
}
.contact-detail a:hover { color: var(--orange); }

.contact-form {
  background: var(--white);
  border-radius: 24px; padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.contact-form h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--black);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--gray-700); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--gray-100);
  border-radius: 12px; font-size: 14px;
  font-family: inherit; color: var(--black);
  background: var(--white);
  transition: border-color 0.3s ease;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-submit {
  width: 100%; padding: 16px;
  background: var(--orange); color: var(--white);
  border: none; border-radius: 12px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: all 0.3s ease;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.7; margin-top: 16px; max-width: 300px;
}
.footer h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  z-index: 999; text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeIn 1s ease 1.5s both;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 12px 32px rgba(37,211,102,0.4); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-content { padding: 100px 0 60px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .dual-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .dual-card { padding: 40px 28px; }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }
