@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600&family=Gloock&display=swap');

:root {
  --color-primary: #FF8154;
  --color-primary-dark: #e06d45;
  --color-secondary: #FFE9D9;
  --color-bg: #1E1E1E;
  --color-bg-darker: #111111;
  --color-surface: #2A2A2A;
  --color-surface-light: #353535;
  --color-text: #F5F5F5;
  --color-text-muted: #b0b0b0;

  --font-heading: 'Gloock', serif;
  --font-body: 'Albert Sans', sans-serif;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(255, 129, 84, 0.15);
}

::selection {
  background-color: var(--color-bg);
}

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

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-bg);
  /* background-image: radial-gradient(125% 125% at 50% 10%, var(--color-bg) 50%, var(--color-primary) 300%); */
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 15, 15, 0.2) 1px, transparent 0), radial-gradient(circle at 1px 1px, rgba(15, 15, 15, 0.3) 1px, transparent 0), radial-gradient(circle at 1px 1px, rgba(15, 15, 15, 0.1) 1px, transparent 0);
  background-size: 20px 20px, 30px 30px, 25px 25px;
  background-position: 0 0, 10px 10px, 15px 5px;
  background-attachment: fixed;
  /* background-image: radial-gradient(circle at 25% 25%, #1f1f1f 0.5px, transparent 1px), radial-gradient(circle at 75% 75%, #111111 0.5px, transparent 1px);
  background-size: 10px 10px;
  image-rendering: pixelated; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}

span {
  color: var(--color-primary);
}

/* Base Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.highlight {
  color: var(--color-primary);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1rem;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border: 1px solid rgba(255, 233, 217, 0.3);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1rem;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  color: var(--color-primary);
  background-color: rgba(255, 129, 84, 0.05);
}

/* Utilities */
.glass {
  position: relative;
  background: rgba(30, 30, 30, 0.4);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.02);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Light Effect for Cards */
.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

/* Avoid conflict with pricing-card featured badge */
.pricing-card.featured::before {
  content:  'Mais Escolhido';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: var(--color-bg);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 10;
}

/* Ensure content stays above glass effect */
.glass > * {
  position: relative;
  z-index: 1;
}

/* Section Light Effects */
.section {
  position: relative;
  padding: 100px 0;
}

.section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1000px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 129, 84, 0.6), transparent);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-surface-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Specific Section Styles */

/* Navbar */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 900px;
  z-index: 1000;
  padding: 16px 40px;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding var(--transition-normal);
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-logo-icon {
  color: var(--color-primary);
}

.navbar-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.navbar-links a:hover {
  color: var(--color-primary);
}

/* Mobile Menu Elements */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
}

@keyframes menuFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 129, 84, 0.1) 0%, rgba(30, 30, 30, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 129, 84, 0.1);
  color: var(--color-primary);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  width: fit-content;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

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

.hero-cta {
  display: flex;
  gap: 16px;
}

.hero-parallax-bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  pointer-events: none;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat-card {
  padding: 24px;
  border-radius: 12px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 8px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition-normal);
}

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

.team-image {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--color-surface);
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition-normal);
}

.team-card:hover .team-image img {
  filter: grayscale(0%);
}

.team-info {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: none;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.team-role {
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  padding: 40px 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-normal);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-header {
  margin-bottom: 32px;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--color-text-muted);
}

.feature-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Hiring CTA */
.hiring-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hiring-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 129, 84, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-title {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.contact-item-desc {
  color: var(--color-text-muted);
}

/* Bento & Status Animations */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

.bento-card {
  padding: 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
  cursor: pointer;
  color: var(--color-text);
}

.bento-card:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.05);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-secondary);
}

.form-input {
  width: 100%;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(255, 129, 84, 0.2);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF8154' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar {
    gap: 24px;
    padding: 12px 24px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .navbar-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 16px;
    flex-direction: column;
    padding: 24px;
    border-radius: 24px;
    animation: menuFade 0.3s ease forwards;
  }

  .mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .mobile-links a {
    font-size: 1.125rem;
    font-weight: 500;
  }

  .navbar {
    width: 90vw;
    padding: 16px 24px;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
/* Vanilla JS Reveal States */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.up {
  transform: translateY(40px);
}
.reveal.right {
  transform: translateX(-40px);
}
.reveal.left {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Utility Classes for Inline Styles */

/* Display & Layout */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.inset-0 {
  inset: 0;
}

.block {
  display: block;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

/* Sizing */
.h-32 {
  height: 32px;
}

.h-56 {
  height: 56px;
}

.w-auto {
  width: auto;
}

.aspect-square {
  aspect-ratio: 1;
}

/* Spacing */
.mb-0 {
  margin-bottom: 0;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-40 {
  margin-top: 40px;
}

/* Text */
.text-left {
  text-align: left;
}

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

.font-body {
  font-family: var(--font-body);
}

.font-heading {
  font-family: var(--font-heading);
}

.text-sm {
  font-size: 0.9rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 2rem;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-text {
  color: var(--color-text);
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

/* Display */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

/* Grid */
.grid {
  display: grid;
}

.grid-cols-auto-fit-260 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Background & Colors */
.bg-primary-opacity {
  background-color: rgba(255, 129, 84, 0.1);
}

.bg-green-opacity {
  background-color: rgba(34, 197, 94, 0.05);
}

.border-green-opacity {
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-80 {
  opacity: 0.8;
}

/* Rounded */
.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-24 {
  border-radius: 24px;
}

/* Padding */
.p-12 {
  padding: 12px;
}

.p-20 {
  padding: 20px;
}

.p-24 {
  padding: 24px;
}

.p-40 {
  padding: 40px;
}

.p-60 {
  padding: 60px;
}

.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

/* Positioning */
.top-neg-20 {
  top: -20%;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-neg-20 {
  bottom: -20%;
}

.pt-64 {
  padding-top: 64px;
}

/* Max Width */
.max-w-600 {
  max-width: 600px;
}

.max-w-800 {
  max-width: 800px;
}

/* Cursor */
.cursor-default {
  cursor: default;
}

.cursor-pointer {
  cursor: pointer;
}

.w-full {
  width: 100%;
}

.m-0 {
  margin: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-1 {
  margin-bottom: 4px;
}

.rounded-12 {
  border-radius: 12px;
}
