/* === SOBRE NÓS === */
.sobre {
  background: #0b0c10;
  color: var(--text);
  padding: 80px 20px;
  text-align: center;
}
.sobre h1 {
  color: var(--primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.sobre p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}
.sobre .btn {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: #000;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.sobre .btn:hover { opacity: 0.85; }


/* =============================================
   TÍTULOS E SUBTÍTULOS DE SEÇÕES
   ============================================= */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.section h2 {
  color: var(--primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section h2::after {
  content: '';
  display: block;
  width: 3px;
  height: 40px;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  border-radius: 3px;
}

.section p.lead {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
  max-width: 600px;
}



/* ========================================
   ABOUT.CSS - Estilos da página Quem Somos
   ======================================== */

/* =============================================
   SEÇÃO PRINCIPAL ABOUT
   ============================================= */
.about {
  background: radial-gradient(circle at top, rgba(102,252,241,0.1), rgba(11,12,16,0.95));
  border-top: 1px solid rgba(102,252,241,0.15);
  padding: 100px 20px 80px;
  min-height: calc(100vh - 65px);
}

.about h2 {
  color: var(--primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.about h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  margin: 15px auto 0;
  border-radius: 2px;
}

.about p.lead {
  text-align: center;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 50px;
}

.about p.lead strong {
  color: var(--primary);
  font-weight: 700;
}

/* =============================================
   CONTEÚDO ABOUT (TEXTO + IMAGEM)
   ============================================= */
.about-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-text h3 {
  color: var(--primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-text h3::before {
  content: '';
  display: block;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.about-text p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-text ul li {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  padding-left: 30px;
  position: relative;
}

.about-text ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: bold;
}

.about-text ul li strong {
  color: var(--primary);
  font-weight: 700;
}

/* =============================================
   IMAGEM ABOUT
   ============================================= */
.about-image {
  position: sticky;
  top: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  border: 2px solid rgba(102, 252, 241, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(102, 252, 241, 0.3);
}

/* =============================================
   RESPONSIVIDADE - ABOUT
   ============================================= */


@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }

  .about-image {
    top: 80px;
  }

  .about-image img {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 120px 20px 60px; /* Aumentei o padding-top de 80px para 120px */
  }

  .about h2 {
    font-size: 2rem;
    margin-top: 20px; /* Adicionei margem superior extra */
  }

  .about p.lead {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    position: static;
    order: -1;
  }

  .about-image img {
    max-width: 100%;
    border-radius: 12px;
  }

  .about-text h3 {
    font-size: 1.4rem;
  }

  .about-text p {
    font-size: 1rem;
    text-align: left;
  }

  .about-text ul li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 100px 15px 40px; /* Aumentei o padding-top de 60px para 100px */
  }

  .about h2 {
    font-size: 1.7rem;
    margin-top: 20px; /* Adicionei margem superior extra */
  }

  .about p.lead {
    font-size: 1rem;
  }

  .about-text {
    gap: 25px;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

  .about-text h3::before {
    height: 24px;
  }

  .about-text ul li {
    padding-left: 25px;
    font-size: 0.95rem;
  }
}



/* =============================================
   SEÇÃO - CARROSSEL DE MARCAS
   ============================================= */

.brands-section {
  background: radial-gradient(circle at top, rgba(102,252,241,0.1), rgba(11,12,16,0.95));
  padding: 60px 0;
  overflow: hidden;
}

.brands-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 40px;
  font-weight: 600;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.brand-item {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 217, 255, 0.1);
}

.brand-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 217, 255, 0.3);
  transform: translateY(-5px);
}

.brand-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.brand-item:hover img {
  opacity: 1;
}

/* =============================================
   ANIMAÇÃO DO CARROSSEL
   ============================================= */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   RESPONSIVIDADE
   ============================================= */

@media (max-width: 768px) {
  .why-choose {
    padding: 60px 20px;
  }

  .why-choose h3 {
    font-size: 1.6rem;
  }

  .why-choose p {
    font-size: 1rem;
  }

  .brands-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .brand-item {
    width: 150px;
    height: 90px;
    margin: 0 20px;
  }
}

@media (max-width: 480px) {
  .brands-title {
    font-size: 1.4rem;
  }

  .brand-item {
    width: 120px;
    height: 80px;
    margin: 0 15px;
  }
}

/* =============================================
   SEÇÃO FORMULÁRIO DE CONTATO
   ============================================= */
#contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(31, 40, 51, 0.8);
  border: 1px solid rgba(102, 252, 241, 0.15);
  border-radius: 10px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--muted);
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: var(--primary);
  background: rgba(31, 40, 51, 0.95);
  box-shadow: 0 0 0 3px rgba(102, 252, 241, 0.1);
}

#contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

#contact-form button {
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0b0c10;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(102, 252, 241, 0.3);
}

#contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 252, 241, 0.5);
}

#contact-form button:active {
  transform: translateY(-1px);
}

#mensagem-sucesso {
  display: none;
  color: var(--primary);
  margin-top: 20px;
  padding: 20px;
  background: rgba(102, 252, 241, 0.1);
  border: 1px solid rgba(102, 252, 241, 0.3);
  border-radius: 10px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVIDADE - FORMULÁRIO DE CONTATO
   ============================================= */
@media (max-width: 768px) {
  #contact-form {
    padding: 0 20px;
  }

  #contact-form input,
  #contact-form textarea {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  #contact-form button {
    padding: 14px 30px;
    font-size: 1rem;
  }

  #mensagem-sucesso {
    font-size: 1rem;
    padding: 16px;
  }
}

/* =============================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* =============================================
   RESPONSIVIDADE - WHATSAPP
   ============================================= */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }
}