/* Reset e Variáveis - Tema Escuro */
:root {
  --primary-color: #1a1a2e;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --success-color: #2ecc71;
  --dark-color: #16213e;
  --darker-color: #0f141f;
  --text-color: #e0e0e0;
  --text-light: #a0a0a0;
  --bg-light: #1e2a47;
  --card-bg: #243142;
  --border-color: #2d3e50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: var(--primary-color);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

/* Navegação */
.navbar {
  background-color: var(--darker-color);
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.company-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

/* Menu Hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.navbar nav ul {
  display: flex;
}

.navbar nav ul li {
  margin-left: 2rem;
}

.navbar nav ul li a {
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.navbar nav ul li a:hover {
  color: var(--secondary-color);
}

.navbar nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s;
}

.navbar nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(10, 15, 30, 0.85), rgba(10, 15, 30, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
  color: white;
  text-align: center;
  margin-top: 60px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  color: var(--text-color);
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-light);
}

.dark {
  background-color: var(--dark-color);
  color: white;
}

.light {
  background-color: var(--bg-light);
  color: var(--text-color);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid var(--border-color);
}

.dark .card {
  background-color: var(--card-bg);
  color: white;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--secondary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.card p {
  flex-grow: 1;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.card .btn {
  margin-top: auto;
}

.card .btn.whatsapp {
  background-color: #25D366;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.card .btn.whatsapp:hover {
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Vantagens */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit {
  text-align: center;
  padding: 2rem 1rem;
}

.benefit i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.benefit p {
  color: var(--text-light);
}

/* Processo */
.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: var(--secondary-color);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 1rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.step p {
  color: var(--text-light);
}

/* Destaques */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.highlight {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.dark .highlight {
  background-color: var(--card-bg);
  color: white;
}

.highlight i {
  font-size: 2.5rem;
  color: var(--success-color);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(46, 204, 113, 0.3);
}

.highlight h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.highlight p {
  color: var(--text-light);
}

/* Contato */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.whatsapp {
  background-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp:hover {
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.email {
  background-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.email:hover {
  background-color: #c0392b;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.contact-info {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.contact-info strong {
  color: var(--text-color);
}

/* QR Code - Escondido na versão web */
.qrcode-print {
  display: none;
}

/* Rodapé */
footer {
  background-color: var(--darker-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-contact {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Reset e Variáveis - Tema Escuro */
:root {
  --primary-color: #1a1a2e;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --success-color: #2ecc71;
  --dark-color: #16213e;
  --darker-color: #0f141f;
  --text-color: #e0e0e0;
  --text-light: #a0a0a0;
  --bg-light: #1e2a47;
  --card-bg: #243142;
  --border-color: #2d3e50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: var(--primary-color);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

/* Navegação */
.navbar {
  background-color: var(--darker-color);
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.company-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

/* Menu Hamburguer - SEMPRE VISÍVEL INICIALMENTE */
.menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: transparent;
  border: none;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Navegação Desktop */
.navbar nav ul {
  display: flex;
}

.navbar nav ul li {
  margin-left: 2rem;
}

.navbar nav ul li a {
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.navbar nav ul li a:hover {
  color: var(--secondary-color);
}

.navbar nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s;
}

.navbar nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(10, 15, 30, 0.85), rgba(10, 15, 30, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
  color: white;
  text-align: center;
  margin-top: 60px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  color: var(--text-color);
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-light);
}

.dark {
  background-color: var(--dark-color);
  color: white;
}

.light {
  background-color: var(--bg-light);
  color: var(--text-color);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid var(--border-color);
}

.dark .card {
  background-color: var(--card-bg);
  color: white;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--secondary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.card p {
  flex-grow: 1;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.card .btn {
  margin-top: auto;
}

.card .btn.whatsapp {
  background-color: #25D366;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.card .btn.whatsapp:hover {
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Vantagens */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit {
  text-align: center;
  padding: 2rem 1rem;
}

.benefit i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.benefit p {
  color: var(--text-light);
}

/* Processo */
.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: var(--secondary-color);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 1rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.step p {
  color: var(--text-light);
}

/* Destaques */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.highlight {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.dark .highlight {
  background-color: var(--card-bg);
  color: white;
}

.highlight i {
  font-size: 2.5rem;
  color: var(--success-color);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(46, 204, 113, 0.3);
}

.highlight h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.highlight p {
  color: var(--text-light);
}

/* Contato */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.whatsapp {
  background-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp:hover {
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.email {
  background-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.email:hover {
  background-color: #c0392b;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.contact-info {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.contact-info strong {
  color: var(--text-color);
}

/* QR Code - Escondido na versão web */
.qrcode-print {
  display: none;
}

/* Rodapé */
footer {
  background-color: var(--darker-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-contact {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ========== RESPONSIVIDADE ========== */

/* Desktop - Esconde o botão hamburguer */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }

  .navbar nav {
    display: block !important;
  }
}

/* Mobile - Mostra o botão hamburguer e ajusta o menu */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo img {
    height: 35px;
  }

  .company-name {
    font-size: 1rem;
  }

  /* Menu Hamburguer para Mobile */
  .menu-toggle {
    display: flex !important;
  }

  .navbar nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--darker-color);
    border-top: 1px solid var(--border-color);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navbar nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar nav ul {
    flex-direction: column;
    padding: 1rem 0;
  }

  .navbar nav ul li {
    margin: 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }

  .navbar nav ul li:last-child {
    border-bottom: none;
  }

  .navbar nav ul li a {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .navbar nav ul li a:hover {
    background-color: var(--primary-color);
  }

  .navbar nav ul li a::after {
    display: none;
  }

  /* Animação do menu hamburguer */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero {
    margin-top: 100px;
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-buttons a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .card-img {
    width: 100px;
    height: 100px;
  }

  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .process-steps::before {
    display: none;
  }

  .section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .benefits,
  .highlights {
    grid-template-columns: 1fr;
  }
}