:root {
  --orange: #ff7b00;
  --orange-light: #ff9533;
  --orange-dark: #e06e00;
  --dark: #0a0a0a;
  --dark-light: #1a1a1a;
  --dark-medium: #2a2a2a;
  --light: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  --gradient-orange: linear-gradient(135deg, #ff7b00 0%, #ff9533 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --gradient-text: linear-gradient(135deg, #ff7b00 0%, #ff9533 100%);

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);

  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --gradient-primary: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-light) 100%
  );

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--light);
  overflow-x: hidden;
}

/* Estiliza o fundo da barra de rolagem */
::-webkit-scrollbar {
  width: 10px; /* Largura da barra de rolagem */
}

/* Estiliza a trilha (fundo da barra) */
::-webkit-scrollbar-track {
  background: var(--dark-medium); /* Cor do fundo*/
  /* border-radius: 10px;  Bordas arredondadas */
}

/* Estiliza o "thumb" (a parte móvel da barra) */
::-webkit-scrollbar-thumb {
  background: var(--orange-light); /* Cor do "thumb" */
  border-radius: 10px;
}

/* Muda a cor quando o usuário passa o mouse */
::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

/* Muda a cor quando o usuário estiver ativo */
::-webkit-scrollbar-thumb:active {
  background: var(--orange-dark);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    135deg,
    var(--orange-dark) 0%,
    var(--orange) 100%
  );
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Text utilities */
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modern Navigation */
.modern-nav {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  padding: 1rem 0;
}

.modern-nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  padding: 0.5rem 0;
}

.brand-logo .logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.nav-link-modern {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  margin: 0 0.5rem;
  cursor: pointer;
}

.nav-link-modern:hover,
.nav-link-modern.active {
  color: white !important;
  background: rgba(255, 123, 0, 0.1);
}

.btn-orange-modern {
  background: var(--gradient-orange);
  border: none;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.btn-orange-modern:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

/* Custom Toggler */
.custom-toggler {
  border: none;
  padding: 0.25rem;
  width: 30px;
  height: 30px;
  position: relative;
}

.custom-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  margin: 4px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.custom-toggler:not(.collapsed) span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.custom-toggler:not(.collapsed) span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-modern {
  background: var(--gradient-dark);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 15vh;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 123, 0, 0.1) 0%,
    transparent 50%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 123, 0, 0.1);
  border: 1px solid rgba(255, 123, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-orange-gradient {
  background: var(--gradient-orange);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-orange-gradient:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-orange-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-orange-gradient:hover::before {
  left: 100%;
}

.btn-outline-modern {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-outline-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  animation: fadeInUp 1s ease-out 1s both;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 3;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--gradient-orange);
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 3s ease-in-out infinite;
}

.hero-image-modern {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--border-radius-xl);
  position: relative;
  z-index: 2;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  right: -15%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 30%;
  left: -5%;
  animation-delay: 2s;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.card-content h6 {
  margin: 0;
  font-weight: 600;
  color: var(--gray-800);
}

.card-content p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.5);
}

/* Features Section */
.features-modern {
  padding: 4rem 0;
  background: var(--light);
}

.section-header {
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 123, 0, 0.1);
  border: 1px solid rgba(255, 123, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card-modern {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card-modern:hover::before {
  transform: scaleX(1);
}

.feature-icon-container {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.feature-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 123, 0, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature-icon-modern {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  color: var(--orange);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-modern:hover .feature-icon-bg {
  background: var(--gradient-orange);
}

.feature-card-modern:hover .feature-icon-modern {
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.feature-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.feature-link:hover {
  gap: 0.75rem;
}

/* CTA Section */
.cta-modern {
  padding: 6rem 0;
  background: var(--gradient-dark);
  color: white;
}

.cta-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  padding: 3rem;
}

.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

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

.footer-content {
  margin-bottom: 3rem;
}

.footer-brand .logo-container {
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-stats {
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-card {
    display: none;
  }

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

  .cta-content {
    padding: 2rem;
    text-align: center;
  }

  .hero-visual {
    margin-top: 3rem;
  }
}

@media (max-width: 576px) {
  .hero-modern {
    /* padding: 2rem 0; */
  }

  .features-modern {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .feature-card-modern {
    padding: 1.5rem;
  }
}

/* Utility Classes */
.min-vh-75 {
  min-height: 75vh;
}

/* Loading Animation */
.loading {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Scroll Animations */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* tela sobre */
.team-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.team-card h4 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
}

.stat-card {
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-600);
  font-weight: 500;
}

/* tela contato */
.contact-form-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}

.contact-info {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: fit-content;
}

.contact-info h3 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 123, 0, 0.1);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-details h5 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--gray-600);
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.accordion-button {
  background: white;
  border: none;
  font-weight: 500;
  color: var(--gray-900);
}

.accordion-button:not(.collapsed) {
  background: rgba(255, 123, 0, 0.05);
  color: var(--orange);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.1);
}

@media (max-width: 767px) {
  .contact-form-card,
  .contact-info {
    padding: 2rem;
  }
}
