/*===========================
  Variables
============================*/
:root {
  /* Cores */
  --primary-color: #152138;
  --secondary-color: #2a3f66;
  --accent-color: #3d5a98;
  --highlight-color: #4d88ff;
  --light-color: #f8f9fa;
  --dark-color: #0a1325;
  --text-color: #333;
  --text-light: #f8f9fa;
  --text-muted: #6c757d;
  --body-bg: #fff;
  --border-color: #e9ecef;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;

  /* Layout */
  --header-height: 80px;
  --container-width: 1280px;
  --container-padding: 2rem;

  /* Transições */
  --transition-fast: 0.3s;
  --transition-medium: 0.5s;
  --transition-slow: 0.8s;

  /* Tipografia */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Roboto", sans-serif;
  --font-size-base: 62.5%;
  --font-size-sm: 1.4rem;
  --font-size-base: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2.4rem;
  --font-size-3xl: 2.8rem;
  --font-size-4xl: 3.2rem;
  --font-size-5xl: 3.6rem;
  --font-size-6xl: 4.2rem;

  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

  /* Bordas */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-circle: 50%;

  /* Breakpoints */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

/* Dark Mode Variables */
.dark-mode {
  --primary-color: #1a2a4a;
  --secondary-color: #2c4065;
  --accent-color: #3b5a99;
  --highlight-color: #5188f5;
  --light-color: #1a1a1a;
  --dark-color: #0f1729;
  --text-color: #f0f0f0;
  --text-light: #f8f9fa;
  --text-muted: #a0a0a0;
  --body-bg: #111827;
  --border-color: #2a2a2a;
  --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) var(--light-color);
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--body-bg);
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

h1 {
  font-size: 4.2rem;
}
h2 {
  font-size: 3.6rem;
}
h3 {
  font-size: 2.8rem;
}
h4 {
  font-size: 2.2rem;
}
h5 {
  font-size: 1.8rem;
}
h6 {
  font-size: 1.6rem;
}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6 {
  color: var(--text-light);
}

p {
  margin-bottom: 1.5rem;
}

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

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

ul,
ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: var(--font-primary);
  font-size: 1.6rem;
}

::selection {
  background-color: var(--accent-color);
  color: var(--text-light);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}

.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-content-start {
  justify-content: flex-start;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}

.align-items-start {
  align-items: flex-start;
}
.align-items-end {
  align-items: flex-end;
}
.align-items-center {
  align-items: center;
}
.align-items-baseline {
  align-items: baseline;
}
.align-items-stretch {
  align-items: stretch;
}

.bg-primary {
  background-color: var(--primary-color);
}
.bg-secondary {
  background-color: var(--secondary-color);
}
.bg-accent {
  background-color: var(--accent-color);
}
.bg-light {
  background-color: var(--light-color);
}
.bg-dark {
  background-color: var(--dark-color);
}

.text-primary {
  color: var(--primary-color);
}
.text-secondary {
  color: var(--secondary-color);
}
.text-accent {
  color: var(--accent-color);
}
.text-light {
  color: var(--text-light);
}
.text-muted {
  color: var(--text-muted);
}

.highlight {
  color: var(--highlight-color);
  position: relative;
  display: inline-block;
}

.mt-10 {
  margin-top: 1rem;
}
.mt-20 {
  margin-top: 2rem;
}
.mt-30 {
  margin-top: 3rem;
}
.mt-40 {
  margin-top: 4rem;
}
.mt-50 {
  margin-top: 5rem;
}

.mb-10 {
  margin-bottom: 1rem;
}
.mb-20 {
  margin-bottom: 2rem;
}
.mb-30 {
  margin-bottom: 3rem;
}
.mb-40 {
  margin-bottom: 4rem;
}
.mb-50 {
  margin-bottom: 5rem;
}

.py-10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-20 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-30 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-40 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-50 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-10 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-20 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-30 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-40 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.px-50 {
  padding-left: 5rem;
  padding-right: 5rem;
}

/* Section Styles */
.section {
  padding: 10rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.section-header.left-align {
  text-align: left;
}

.section-header.left-align .section-subtitle {
  margin: 0;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
  color: var(--text-light);
}

.bg-light {
  background-color: #f8f9fa;
}

.dark-mode .bg-light {
  background-color: #1e293b;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast) ease;
  cursor: pointer;
  text-align: center;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: width var(--transition-fast) ease;
  z-index: -1;
}

.btn:hover::after {
  width: 100%;
}

.btn-primary {
  background-color: var(--highlight-color);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(77, 136, 255, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(77, 136, 255, 0.4);
  color: var(--text-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: var(--highlight-color);
  border: 2px solid var(--highlight-color);
}

.btn-outline:hover {
  background-color: var(--highlight-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

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

.btn-light:hover {
  background-color: var(--light-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

.btn-lg {
  padding: 1.6rem 3.2rem;
  font-size: 1.8rem;
}

.btn i {
  margin-right: 0.8rem;
}

.btn.full-width {
  width: 100%;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-preloader {
  margin-bottom: 2rem;
  transform: scale(1);
  animation: pulse 2s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  position: relative;
}

.loading-progress {
  height: 100%;
  background-color: var(--highlight-color);
  width: 0;
  border-radius: 4px;
  animation: loading 2s ease-in-out infinite;
  position: absolute;
  left: 0;
  top: 0;
}

.preloader p {
  color: var(--text-light);
  font-size: 1.6rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.dot {
  width: 4px;
  height: 4px;
  background-color: var(--text-light);
  border-radius: 50%;
  display: inline-block;
  animation: dots 1.2s infinite;
  opacity: 0.3;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dots {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes loading {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all var(--transition-fast) ease;
  height: var(--header-height);
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(21, 33, 56, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .header.scrolled {
  background-color: rgba(10, 19, 37, 0.95);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-size: 2.4rem;
  font-weight: 600;
}

.logo a span {
  color: var(--text-light);
}

.logo img {
  margin-right: 1rem;
  transition: transform var(--transition-fast) ease;
}

.logo:hover img {
  transform: rotate(10deg);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 1.5rem;
}

.nav-link {
  color: var(--text-light);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1rem 0;
  position: relative;
  transition: color var(--transition-fast) ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--highlight-color);
  transition: width var(--transition-fast) ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--highlight-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-btns {
  display: flex;
  align-items: center;
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  margin-left: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast) ease;
}

.theme-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle .fa-sun {
  display: none;
}

.dark-mode .theme-toggle .fa-moon {
  display: none;
}

.dark-mode .theme-toggle .fa-sun {
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  margin-left: 1.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all var(--transition-fast) ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  bottom: 15px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translate(-50%, 6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translate(-50%, -8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: var(--primary-color);
  z-index: 99;
  padding: 4rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-fast) ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-container {
  max-width: 400px;
  margin: 0 auto;
}

.mobile-nav-list {
  margin-bottom: 4rem;
}

.mobile-nav-item {
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  color: var(--text-light);
  font-size: 2rem;
  font-weight: 500;
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition-fast) ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--highlight-color);
}

.mobile-contact-info {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-info h4 {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.mobile-contact-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.mobile-contact-info i {
  margin-right: 1rem;
  color: var(--highlight-color);
}

.social-media {
  display: flex;
  margin-top: 2.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-right: 1.5rem;
  transition: background-color var(--transition-fast) ease, transform var(--transition-fast) ease;
}

.social-icon:hover {
  background-color: var(--highlight-color);
  transform: translateY(-3px);
  color: var(--text-light);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  background-color: var(--primary-color);
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 0 0 50%;
  color: var(--text-light);
}

.hero-text h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-text p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  max-width: 500px;
  color: var(--text-light);
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.hero-image {
  flex: 0 0 45%;
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 1;
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

.scroll-down a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-light);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--text-light);
  border-radius: 2px;
  margin-top: 10px;
  animation: scroll 2s infinite;
}

.scroll-text {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

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

/* Stats Container */
.stats-container {
  position: relative;
  margin-top: -100px;
  z-index: 2;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem;
  background-color: var(--text-light);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dark-mode .stats-wrapper {
  background-color: var(--dark-color);
}

.stat-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(77, 136, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--highlight-color);
  margin-right: 1.5rem;
}

.stat-content h3 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.dark-mode .stat-content h3 {
  color: var(--text-light);
}

.stat-content p {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Services Section */
.services-tabs {
  margin-top: 5rem;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast) ease;
  color: var(--text-muted);
}

.tab-btn i {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.tab-btn span {
  font-size: 1.6rem;
  font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--highlight-color);
  border-bottom-color: var(--highlight-color);
}

.tabs-content {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.tab-panel.active {
  display: block;
}

.tab-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.tab-image {
  flex: 0 0 45%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast) ease;
}

.tab-image:hover img {
  transform: scale(1.05);
}

.tab-info {
  flex: 1;
}

.tab-info h3 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.tab-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--highlight-color);
}

.tab-info p {
  margin-bottom: 2.5rem;
}

.service-features {
  margin-bottom: 3rem;
}

.service-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--highlight-color);
  margin-right: 1rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  transition: transform var(--transition-fast) ease, background-color var(--transition-fast) ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.feature-content h3 {
  color: var(--text-light);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-image {
  flex: 0 0 45%;
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-color: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge .number {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 1.2rem;
  text-align: center;
  max-width: 70px;
}

.about-text {
  flex: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
}

.value-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(77, 136, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--highlight-color);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.value-text h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.value-text p {
  font-size: 1.4rem;
  margin-bottom: 0;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 6rem auto 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--border-color);
}

.timeline-item {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 4rem;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content {
  width: 45%;
  background-color: var(--text-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-left: auto;
  position: relative;
}

.dark-mode .timeline-content {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: auto;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(77, 136, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--highlight-color);
  margin-bottom: 1.5rem;
}

.timeline-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.dark-mode .timeline-content h3 {
  color: var(--text-light);
}

.timeline-content p {
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonial-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.slider-container {
  display: flex;
  overflow: hidden;
}

.testimonial-card {
  flex: 0 0 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  transition: transform var(--transition-fast) ease;
}

.testimonial-content {
  position: relative;
  margin-bottom: 3rem;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  opacity: 0.2;
  color: var(--text-light);
}

.testimonial-content p {
  font-size: 1.8rem;
  color: var(--text-light);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 2rem;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.author-info h4 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.author-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.rating {
  color: var(--warning-color);
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.prev-btn,
.next-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-light);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-fast) ease;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
  transition: all var(--transition-fast) ease;
  cursor: pointer;
}

.dot.active {
  width: 20px;
  border-radius: 10px;
  background-color: var(--text-light);
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.cta-text {
  flex: 0 0 55%;
}

.cta-text h2 {
  color: var(--text-light);
  font-size: 3.6rem;
  margin-bottom: 2rem;
}

.cta-text p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Contact Section */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 5rem;
  position: relative;
}

.contact-info {
  flex: 0 0 calc(40% - 2rem);
}

.contact-whatsapp-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  z-index: 2;
}

.contact-map {
  flex: 0 0 calc(60% - 2rem);
  margin-top: 6rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.info-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(77, 136, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--highlight-color);
  margin-right: 2rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.info-content p {
  margin-bottom: 0.5rem;
}

.contact-form-container {
  flex: 0 0 calc(60% - 2rem);
  background-color: var(--text-light);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dark-mode .contact-form-container {
  background-color: var(--secondary-color);
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.form-group {
  flex: 0 0 calc(50% - 1rem);
}

.form-group.full-width {
  flex: 0 0 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.dark-mode .form-group label {
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background-color: var(--body-bg);
  transition: border-color var(--transition-fast) ease;
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
  background-color: var(--dark-color);
  color: var(--text-light);
  border-color: var(--accent-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--highlight-color);
}

.map-container {
  margin-top: 5rem;
}

.map-wrapper {
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: 6rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col.company-info {
  flex: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo img {
  margin-right: 1rem;
}

.footer-logo span {
  font-size: 2rem;
  font-weight: 600;
}

.footer-social {
  display: flex;
  margin-top: 2rem;
}

.footer-social .social-link {
  margin-right: 1.5rem;
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--highlight-color);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast) ease, transform var(--transition-fast) ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--text-light);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
  margin-right: 1rem;
  color: var(--highlight-color);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 2rem;
}

.footer-bottom-links a:hover {
  color: var(--text-light);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: all var(--transition-fast) ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translate(100%, -50%);
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-size: 1.4rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast) ease;
}

.whatsapp-tooltip::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 6px 6px 0;
  border-style: solid;
  border-color: transparent var(--dark-color) transparent transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all var(--transition-medium) ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all var(--transition-medium) ease;
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all var(--transition-medium) ease;
}

.reveal-down {
  opacity: 0;
  transform: translateY(-50px);
  transition: all var(--transition-medium) ease;
}

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed,
.reveal-down.revealed {
  opacity: 1;
  transform: translate(0);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media screen and (max-width: 1200px) {
  html {
    font-size: 58%;
  }

  .container {
    max-width: 960px;
  }

  .hero-text h1 {
    font-size: 4.5rem;
  }

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

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media screen and (max-width: 992px) {
  html {
    font-size: 56%;
  }

  .container {
    max-width: 720px;
  }

  .section {
    padding: 8rem 0;
  }

  .hero-content {
    flex-direction: column;
    gap: 5rem;
  }

  .hero-text {
    flex: 0 0 100%;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-image {
    flex: 0 0 100%;
  }

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

  .about-content {
    flex-direction: column;
  }

  .about-image {
    flex: 0 0 100%;
  }

  .timeline-item {
    margin-left: 30px;
  }

  .timeline-number {
    left: -30px;
    transform: none;
  }

  .timeline-content {
    width: auto;
    margin-left: 30px;
    margin-right: 0;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 30px;
    margin-right: 0;
  }

  .process-timeline::before {
    left: 0;
    transform: none;
  }

  .cta-content {
    flex-direction: column;
    gap: 3rem;
  }

  .cta-text {
    flex: 0 0 100%;
    text-align: center;
  }

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

  .contact-info,
  .contact-map {
    flex: 0 0 100%;
  }

  .contact-whatsapp-btn {
    position: relative;
    left: 0;
    transform: none;
    bottom: 0;
    margin: 2rem 0;
  }

  .contact-map {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 54%;
  }

  .container {
    max-width: 540px;
  }

  h1 {
    font-size: 3.8rem;
  }
  h2 {
    font-size: 3.2rem;
  }
  h3 {
    font-size: 2.4rem;
  }

  .header-inner {
    height: 70px;
  }

  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-text h1 {
    font-size: 4rem;
  }

  .hero {
    padding-top: 10rem;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
  }

  .tab-btn {
    flex: 0 0 auto;
    padding: 1.5rem;
  }

  .tab-content {
    flex-direction: column;
    gap: 3rem;
  }

  .tab-image,
  .tab-info {
    flex: 0 0 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-col.company-info {
    flex: 0 0 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 1.5rem;
  }

  .footer-bottom-links a {
    margin: 0 1rem;
  }

  .form-group {
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 52%;
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 3.2rem;
  }

  .section-subtitle {
    font-size: 1.6rem;
  }

  .btn {
    padding: 1rem 2rem;
  }

  .whatsapp-button {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 2.4rem;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* Estilos para páginas de conteúdo (Política de Privacidade e Termos de Serviço) */
.page-content {
  padding-top: 12rem;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 4rem;
}

.content-block h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.dark-mode .content-block h2 {
  color: var(--text-light);
}

.content-block h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--accent-color);
}

.dark-mode .content-block h3 {
  color: var(--highlight-color);
}

.content-block p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.content-block ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.content-block ul li {
  margin-bottom: 0.8rem;
  position: relative;
  list-style-type: disc;
}

.contact-whatsapp-btn {
  margin-top: 3rem;
  text-align: center;
}

.contact-map {
  flex: 0 0 calc(60% - 2rem);
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 5rem;
}

.contact-info {
  flex: 0 0 calc(40% - 2rem);
}

@media screen and (max-width: 992px) {
  .contact-info,
  .contact-map {
    flex: 0 0 100%;
  }
}

/* Galáxia Effect */
.galaxy-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
  overflow: hidden;
}

.galaxy-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Ajuste para o modo escuro */
.dark-mode .galaxy-container {
  opacity: 0.5;
}

/* Ajuste do z-index do conteúdo principal */
.hero-content {
  position: relative;
  z-index: 1;
}

/* Methodology Section Styles */
.methodology-section {
  margin-top: 5rem;
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.methodology-step {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--text-light);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
}

.dark-mode .methodology-step {
  background-color: var(--secondary-color);
}

.methodology-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--highlight-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.dark-mode .step-content h4 {
  color: var(--text-light);
}

.step-content p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.dark-mode .step-content p {
  color: var(--text-light);
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .methodology-step {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number {
    margin-bottom: 1rem;
  }
}
