/*
Theme Name: DSJ Global Theme
Theme URI: https://dsjglobal.com
Author: Felipe Moraes
Description: Tema customizado para DSJ Global - A Global House of Brands
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dsj-global
Tags: one-page, business, modern, bootstrap

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

:root {
  --primary-color: #0063f2;
  --neutral-light: #fafafa;
  --neutral-dark: #191919;
  --white: #ffffff;
  --overlay-dark: rgba(0, 6, 14, 0.7);
}

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



/* For modern browsers (Chrome, Safari, Firefox, Opera, Edge) */
::selection {
  background: var(--primary-color); /* Background color of the selected text */
  color: var(--neutral-light);     /* Text color of the selected text */
}

/* Vendor prefix for older versions of Firefox */
::-moz-selection {
  background: var(--primary-color);
  background: #0063f2;
  color: var(--neutral-light);
  color: #fafafa; 
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always; /* Non-standard, very limited support */
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter Tight', sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 1rem;
}

button, .btn, .btn-ghost, .btn-primary {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* .site-header.transparent {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
} */

.site-header.solid {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.1);
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-logo a {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s ease;
  display: inline-block;
}

.site-header.solid .site-logo a {
  color: var(--neutral-dark);
}

/* Logo dinâmico (imagens PNG) */
.site-logo img.logo {
  height: 30px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.site-logo img.logo-white {
  opacity: 1;
}

.site-logo img.logo-dark {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.site-logo a {
  position: relative;
}

.site-header.solid .site-logo img.logo-white {
  opacity: 0;
}

.site-header.solid .site-logo img.logo-dark {
  opacity: 1;
}

/* Logo SVG Styles (Fallback) */
.logo-svg {
  width: 60px;
  height: auto;
  display: block;
}

.logo-svg text {
  fill: var(--white);
  transition: fill 0.3s ease;
}

.site-header.solid .logo-svg text {
  fill: var(--neutral-dark);
}

.site-logo a:hover .logo-svg text {
  fill: var(--primary-color);
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
}

.main-navigation a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  transition: color 0.3s ease;
}

.site-header.solid .main-navigation a {
  color: var(--neutral-dark);
}

.main-navigation a:hover {
  color: var(--primary-color);
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.main-navigation a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  /* height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 12rem 2rem 10rem 2rem;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn-ghost {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--neutral-dark);
  transform: translateY(-2px);
}

/* Not An Agency Section */
.not-agency-section {
  /* background: var(--neutral-dark); */
  /* color: var(--white); */
  padding: 6rem 0;
  border-bottom: 1px solid rgba(0, 6, 14, 0.1);
}

.not-agency-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}

.not-agency-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.not-agency-content p {
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* Methodology Section */
.methodology-section {
  padding: 8rem 0;
  background: var(--neutral-light);
}

.methodology-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.methodology-content h2 {
  /* text-align: center; */
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 4rem;
  color: var(--neutral-dark);
}

.methodology-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.method-card {
  border: 1px solid rgba(0, 6, 14, 0.2);
  padding: 40px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 8px 30px rgba(0, 99, 242, 0.15); */
}

.method-card .icon {
  margin-bottom: 1.5rem;
}

.method-card h3 {
  font-size: 1.8rem;
  /* margin-top: 4rem; */
  margin-bottom: 1rem;
  /* color: var(--primary-color); */
}

.method-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--neutral-dark);
}

/* Leadership Section */
.leadership-section {
  padding-bottom: 8rem;
  background: var(--white);
}

.leadership-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.leadership-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 4rem;
  color: var(--neutral-dark);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.leader-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.leader-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.leader-card .role {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.leader-card p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Ticker Section */
.ticker-section {
  color: var(--white);
  padding: 1.5rem 0;
  overflow: hidden;
  background: var(--neutral-dark);
}

.ticker-content {
  display: flex;
  animation: ticker 40s linear infinite;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
  gap: 4rem;
  will-change: transform;
}

.ticker-item {
  display: inline-block;
  flex-shrink: 0;
}

.ticker-item[aria-hidden="true"] {
  pointer-events: none;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Careers Section */
.careers-section {
  position: relative;
  padding: 8rem 0;
  /* background: var(--neutral-dark); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.careers-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.5);
}

.careers-content {
  color: var(--neutral-light);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.careers-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

.careers-content p {
  font-size: 1.2rem;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0052d1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 99, 242, 0.3);
}

/* Footer */
.site-footer {
  background: var(--neutral-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1.3rem;
  /* color: var(--primary-color); */
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.8;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-logo {
  height: 30px;
  margin-bottom: 1rem;  
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    padding: 1rem 0;
  }

  .site-header .container {
    padding: 0 1rem;
  }

  .site-logo img.logo {
    height: 24px;
  }

  .main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
  }

  .main-navigation ul li {
    display: none;
  }

  .main-navigation ul li a[href="#contact"],
  .main-navigation ul li:last-child {
    display: block !important;
  }

  .main-navigation ul li:last-child a {
    display: block;
  }

  .main-navigation a {
    display: block;
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: var(--white);
  }

  .site-header.transparent .main-navigation a {
    color: var(--white);
  }

  .site-header.solid .main-navigation a {
    color: var(--neutral-dark);
  }

  .main-navigation a::after {
    display: none;
  }

  .mobile-menu-toggle {
    display: none;
  }

  /* .hero-content {
    padding: 0 2rem;
  } */

  .hero-content h1 {
    font-size: 3em;
    margin-bottom: 1rem;
  }

  .hero-content p {
    /* font-size: clamp(1rem, 1.2vw, 1.1rem); */
    margin-bottom: 1.5rem;
  }

  .btn-ghost,
  .btn-primary {
    font-size: 0.9rem;
    padding: 0.9rem 1.5rem;
  }

  .not-agency-section {
    padding: 4rem 0;
  }

  .not-agency-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .not-agency-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .not-agency-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .methodology-section {
    padding: 4rem 0;
  }

  .methodology-content {
    padding: 0 1rem;
  }

  .methodology-content h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }

  .methodology-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .method-card {
    padding: 20px;
  }

  .method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .method-card p {
    font-size: 0.95rem;
  }

  .leadership-section {
    padding: 4rem 0;
  }

  .leadership-content {
    padding: 0 1rem;
  }

  .leadership-content h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }

  .leadership-grid {
    display: flex;
    flex-direction: column;
  }

  .leader-photo {
    max-width: 100%;
    height: 100%;
  }

  .leader-card h3 {
    font-size: 1.4rem;
  }

  .leader-card .role {
    font-size: 0.95rem;
  }

  .leader-card p {
    font-size: 0.95rem;
  }

  .ticker-content {
    font-size: 0.9rem;
    gap: 2rem;
  }

  .ticker-item {
    padding: 0 1rem;
  }

  .careers-section {
    padding: 4rem 0;
  }

  .careers-content {
    padding: 0 1rem;
  }

  .careers-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  .careers-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .footer-section h4 {
    font-size: 1.2rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.95rem;
  }
}


/* Lenis Smooth Scrolling Styles */

html.lenis,
html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}
