/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0D1B2A;
  color: #E0E1DD;
  line-height: 1.6;
}
html, body {
  overflow-x: hidden;
}

/* Container centralizado */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Cabeçalho */
header {
  background: #1B263B;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a img {
  max-width: 133px;
  height: auto;
}

/* Menu de navegação */
nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #E0E1DD;
  font-weight: bold;
}
/* Estilização do ícone do WhatsApp */
.whatsapp-icon-nav {
  width: 20px;
  height: 20px;
}

/* Menu mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #E0E1DD;
  margin: 4px 0;
}

/* HERO SLIDER */
/* Fundo do hero slider: usamos imagens locais para cada slide */
/* Slide 1: Manutenção de celulares – manutencao-celular.jpeg */
/* Slide 2: Manutenção de notebooks – manutencao-note.jpeg */
/* Slide 3: Desktop – desktop.jpeg */

.hero {
  height: calc(100vh - 80px);
  position: relative;
  margin-top: 80px; /* Garante que o slider não fique atrás do header */
}

.hero-swiper {
  height: 100%;
}

.hero-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  width: 800px;
  height: 200px;
  background: rgba(0, 0, 0, 1);
  padding: 20px;
  border-radius: 5px;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #415A77;
  color: #E0E1DD;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #778DA9;
}

/* Controles e animação específicos do Hero Slider */
.hero-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-next,
.hero-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
}

.hero-next {
  right: 20px;
}

.hero-prev {
  left: 20px;
}

/* Seções Gerais */
.services,
.about,
.contact,
.instagram {
  padding: 60px 0;
}

.services h2,
.about h2,
.contact h2,
.instagram h2 {
  text-align: center;
  margin-bottom: 40px;
}
.contact h3 {
  text-align: center;
}

/* Itens de Serviço */
.service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-item {
  background: #1B263B;
  padding: 20px;
  border-radius: 5px;
  flex: 1 1 300px;
  max-width: 300px;
  text-align: center;
}

/* CARROSSEL DO INSTAGRAM */
/* O carrossel utiliza o Swiper com os embeds do Instagram encapsulados em cada slide */
.insta-swiper {
  width: 100%;
  padding: 20px 0;
}

.insta-swiper .swiper-slide {
  text-align: center;
}

.insta-swiper .swiper-slide blockquote {
  margin: 0 auto;
}

/* Formulário de Contato */
form {
  max-width: 600px;
  margin: auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

/* Rodapé */
/* Rodapé */
footer {
  background: #1B263B;
  padding: 20px 0;
  text-align: center;
}
footer a { 
  color: #E0E1DD; 
  text-decoration: none; 
  font-weight: bold; 
}

/* Responsividade */
@media (max-width: 1024px) {
  .insta-swiper {
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    display: none;
  }
  nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
}

/* Estilo extra para posts do Instagram fora do carrossel (opcional) */
.instagram-posts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
}

.instagram-posts blockquote {
  flex: 0 0 auto;
}
.whatsapp-icon {
  position: fixed;
  right: 30px;
  bottom: 60px;  /* Você pode ajustar esse valor se desejar que fique acima do footer */
  z-index: 9999;
}

.whatsapp-icon img {
  height: 80px;
  width: auto;
}
