/* ========================================
   RESET E CONFIGURAÇÕES GLOBAIS
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
  max-width: 100vw;
  overflow-x: hidden;
}

/* ========================================
   VÍDEO DE FUNDO E OVERLAY
======================================== */

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* ========================================
   HEADER E NAVEGAÇÃO
======================================== */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to right, #111, #1a0f0f);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  z-index: 1000;
  flex-wrap: wrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.6s ease-in-out;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-size: 17px;
  color: white;
  letter-spacing: 1px;
}

.logo-text span:last-child {
  font-size: 17px;
  color: #ff6a00;
  letter-spacing: 1px;
}

/* Navegação */
nav {
  display: flex;
  margin-right: 230px;
  gap: 30px;
  align-items: center;
  transition: all 0.3s ease;
}

nav a {
  color: white;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
}

nav a.active1 {
  color: #ff6a00;
  background-color: rgba(255, 106, 0, 0.1);
  font-weight: bold;
}

nav .highlight {
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
}

nav .highlight:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Dropdown do Menu */
.dropdown {
  position: relative;
  background-color: #ff6a00;
  color: black;
  font-weight: bold;
  border-radius: 5px;
}

#menuDropdownBtn {
  background-color: transparent;
  border: none;
  color: black;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#menuDropdownBtn:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: #ffffff;
}

.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background-color: #1a1a1a;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  min-width: 180px;
}

.dropdown-options a {
  color: white;
  padding: 10px;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.dropdown-options a:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
}

/* ========================================
   BOTÃO WHATSAPP FLUTUANTE
======================================== */

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 50px;
  background-color: #25D366;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 1000;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 35px;
  height: 35px;
}

/* Opções do WhatsApp */
.whatsapp-options {
  position: fixed;
  bottom: 90px;
  right: 100px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.whatsapp-options a {
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  font-size: 14px;
}

.whatsapp-options a:hover {
  background-color: #1eb95f;
  transform: scale(1.05);
}

/* ========================================
   SEÇÃO ABOUT - LAYOUT PRINCIPAL
======================================== */

.about-section {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  min-height: 100vh;
  position: relative;
  padding-top: 80px;
}

.branco {
  background: linear-gradient(to bottom, #ff6a00 50%, transparent 50%);
  width: 100%;
  padding: 50px 20px 30px;
  margin-bottom: 10px;
  position: relative;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.about-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* ========================================
   COMPONENTES DE MÍDIA
======================================== */

/* Vídeo Container */
.video-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 30px;
}

.video-wrapper {
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.video-wrapper:hover {
  transform: translateY(-5px);
}

.video-wrapper img {
  width: 100%;
  height: auto;
  max-height: 300px; /* limita altura */
  object-fit: cover;
  border-radius: 10px;
}

/* ========================================
   SEÇÕES DE CONTEÚDO
======================================== */

/* Conteúdo de Texto Geral */
.text-content {
  width: 100%;
  max-width: 800px;
  background: #554848;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid #ff6a00;
  margin-bottom: 50px;
}

.text-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #ff6a00;
  margin-bottom: 15px;
  font-weight: bold;
}

.text-content p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
  color: #fff;
  margin-bottom: 15px;
  text-align: justify;
}

/* Seção de Clientes */
.clients-section {
  margin-top: 25px;
}

.clients-list {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.clients-list li {
  background: #1a1616;
  padding: 8px 15px;
  margin: 5px 0;
  border-radius: 5px;
  border-left: 4px solid #ff6a00;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #fff;
}

/* Seção Diferencial */
.differential-section {
  margin-top: 25px;
  padding: 20px;
  background: #1a1616;
  border-radius: 10px;
  border: 2px solid #ff6a00;
  display: flex;
  align-items: center;
  gap: 30px;
}

.differential-content {
  flex: 1;
}

.differential-image {
  flex: 0 0 250px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.differential-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Seções Missão, Visão e Valores */
.mission-section,
.vision-section,
.values-section {
  margin-top: 25px;
  padding: 20px;
  background: #1a1616;
  border-radius: 10px;
  border: 2px solid #ff6a00;
}

.values-section p {
  margin-bottom: 12px;
}

/* ========================================
   FOOTER
======================================== */

footer {
  height: auto;
  padding: 10px 150px;
  background-color: #1f1a1a;
  color: white;
}

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

.top-footer i {
  font-size: 25px;
}

.top-footer a {
  text-decoration: none;
  color: #ff6a00;
}

.top-footer p {
  font-weight: bold;
}

.top-footer span {
  color: #ff6a00;
}

.footer {
  border: 2px solid #ff6a00;
  width: 100%;
}

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

/* ========================================
   ANIMAÇÕES
======================================== */

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

