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

/* Corpo com fundo principal hero.png */
body {
  font-family: 'Raleway', sans-serif;
  background: url('imagens/hero.png') no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
  overflow-y: scroll;
}

/* Container geral */
.content {
  position: relative;
  z-index: 1;
}

/* ===================== */
/* HERO SECTION          */
/* ===================== */
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Overlay para deixar o Hero mais escuro */
#hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); 
  z-index: 1;
}

/* Faixa inclinada com image2.png */
.angled-image2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('imagens/image2.png') no-repeat center center / cover;
  transform-origin: top right;
  overflow: hidden;
}

/* Conteudo do Hero fica acima do overlay e da faixa */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 50%
  padding: 20px;
}

.bem-vindo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #32abc1;
}

.logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.slogan {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.4;
}

/* ===================== */
/* DEMAIS SESSOES        */
/* ===================== */

section:not(#hero,#perfil-empresa) {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 60px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sessao Servicos */
.servico-item.web {
  background-image: url('imagens/webdev.jpg');
  background-size: cover;
  background-position: center;
}

.servico-item.cyber {
  background-image: url('imagens/cybersecurity.jpg');
  background-size: cover;
  background-position: center;
}

.servico-item.design {
  background-image: url('imagens/webdesign.jpg');
  background-size: cover;
  background-position: center;
}

.servico-item.network {
  background-image: url('imagens/infranetwork.jpg');
  background-size: cover;
  background-position: center;
}

.servico-item.solar {
  background-image: url('imagens/solar.jpg');
  background-size: cover;
  background-position: center;
}

.servico-item {
  flex: 0 0 calc(33.333% - 40px); 
  min-width: 350px; 
  aspect-ratio: 1 / 1;
  padding: 20px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.8);
  background-blend-mode: darken; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

#servicos h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #32abc1;
}

.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.servico-item h3 {
  text-align: center;
  margin: 0;
  color: #32abc1;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 4.5rem;
}

.servico-item p {
  margin: auto 0;
  line-height: 1.8;
  text-align: center;
}

/* Container Principal Citacoes */
.quotes {
  display: flex;              
  justify-content: center;    
  align-items: center;        
  gap: 40px;                  
  flex-wrap: wrap;            
}

/* Cada bloco de citacao */
.blockquote-container {
  max-width: 500px;           
  text-align: justify;         
}

/* blockquote */
#depoimento blockquote {
  font-family: 'Great Vibes', cursive;
  font-weight: 100;
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 10px;
  color: #fff;
}

/* Assinatura */
.assinatura {
  color: #aaa;
  margin-bottom: 20px;        
}

/* ===================== */
/* CHAMADA E CONTATO     */
/* ===================== */
/* 1) Background com overlay */
#contato {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: #fff;
}
#contato .contato-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('imagens/contato-bg.jpg') center/cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.6;
  z-index: 1;
}

/* 2) Container flex por cima do bg */
.contato-flex {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}

/* 3) Chamada + botão */
.contato-texto {
  flex: 1 1 300px;
}
.contato-texto h2 {
  font-size: 2.5rem;
  margin-bottom: .5rem;
  color: #32abc1;
}
.contato-texto p {
  margin-bottom: 1.5rem;
  color: #e0e0e0;
  line-height: 1.6;
  text-align: justify;
}
.btn-cta {
  display: inline-block;
  padding: .75rem 1.5rem;
  background: #32abc1;
  color: #fff;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: 500;
  transition: transform .2s;
}
.btn-cta:hover {
  transform: translateY(-3px);
}

/* 4) Lista como cards */
.contato-lista {
  flex: 1 1 300px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  padding: 0; margin: 0;
}
.contato-lista li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: .5rem;
  text-decoration: none;
  transition: background .3s, transform .3s;
}
.contato-lista li a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* 5) Ícones circulares */
.icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: #32abc1;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.icon img {
  width: 34px; height: 34px;
}

/* 6) Texto dos cards */
.text .label {
  display: block;
  font-weight: 600;
  color: #32abc1;
}
.text .value {
  display: block;
  color: #fff;
  margin-top: 2px;
}

footer {
  background-color: #000000;
  text-align: center;
}