/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
}

:root {
  --branco: #fff; 
  --azul: #2e0c93;
  --botao: linear-gradient(to right, #040969, #120343);
  --deg: linear-gradient(45deg, #040969, #052598);
  --span: #2e0c93;
  --preto: #000;
  --card: #1c1c1c;
  --cardt: #1e90ff;
  --icon: #333;
}

/* Container padrão */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Header */
header {
  background: var(--preto);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

nav .logo img {
  height: 70px;
}

.ul-ativo {
  display: flex;
  gap: 2.6rem;
}

.ul-ativo li a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s;
  position: relative;
  left: -100px;
}

.ul-ativo li a:hover {
  color: #2e0c93;
}

.menu {
  height: 50px;
  width: 50px;
  position: relative;
  right: 200px;
  cursor: pointer;
}

.btn-login {
  padding: 10px 25px;
  margin-top: -15px;
  color: #fff;
  border: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, #040969, #052598);;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-login:hover {
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Main */
.main-content {
  width: 100%;
  height: 80vh;
  background-image: url('../img/casanv.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.main-title {
  position: relative;
  left: 35rem;
  background-color: rgba(9, 6, 6, 0.5);
  padding: 2rem;
  border-radius: 15px;
  margin-top: -40px;
  text-align: center;
}

.main-title h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.main-title h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-contato {
  padding: 10px 25px;
  margin-top: 10px;
  color: #fff;
  border: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, #040969, #052598);;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-contato:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Sobre */
.title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.title span {
  color:#2e0c93;
}

.about .row {
  margin-top: -50px;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about h2 {
  padding: 30px;
}

.container-img {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.container-img img {
  width: 70%;
  border-radius: 10px;
  position: relative;
  left: 150px;
}

.content {
  flex: 1;
  min-width: 100px;
}

.content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.btn {
  background: var(--botao);
  cursor: pointer;
  color: #fff; 
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 30px;
  transition: letter-spacing 0.3s;
}

.btn:hover {
  letter-spacing: 1.5px;
}

/* Resultados */
.resultados {
  background: var(--deg);
  margin-bottom: 20px;
  padding: 2rem 0;
  height: 115px;
}

.resultados-text {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

/* Diferenciais */
.diferencias {
  background-color: #000;
  padding: 60px 20px;
}

.diferencias .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.card {
  background-color: #1c1c1c;
  color: #fff;
  width: 300px;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(30, 144, 255, 0.4);
}

.card img {
  width: 70px;
  margin-bottom: 15px;
}

.card .titulo {
  font-size: 1.4rem;
  color: #1e90ff;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .diferencias .container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .main-title {
    left: auto;
    margin: 0 auto;
  }
}

/* Casa */
.casa {
  background-color: #000;
  padding: 60px 20px;
}

.casa .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.casa-img {
  flex: 1;
  min-width: 300px;
}

.casa-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.3);
}

.casa-text {
  flex: 1;
  min-width: 300px;
}

.casa-text h2 {
  font-size: 2.2rem;
  color: #1e90ff;
  margin-bottom: 20px;
}

.casa-text p {
  font-size: 1.1rem;
  line-height: 1.8;
}


/* Newsletter */
.newsletters {
  background-color: #000;
  margin-top: 4rem;
  padding: 0 2rem; 
}

.box-newsletters {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  background-image: url('../img/news.png');
  background-size: cover;
  background-position: center center; 
  border-radius: 15px;
  overflow: hidden;
  max-width: 1000px; 
  margin: 0 auto; 
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
}

.box-newsletters::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.box-newsletters{
  position: relative;
  z-index: 1;
}

.box-newsletters h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color:#1e90ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.box-newsletters p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #fff;
}

/* Input e botão lado a lado */
.box-newsletters form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.box-newsletters input {
  padding: 0.8rem 1rem;
  width: 40%;
  border-radius: 8px;
  border: none;
  margin-right: 1rem;
  outline: none;
  font-size: 1rem;
  transition: box-shadow 0.3s ease;
}

.box-newsletters input:focus {
  box-shadow: 0 0 10px rgba(30, 144, 255, 0.6);
}

/* Botão da newsletter */
.box-newsletters button.news {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  background-image: linear-gradient(to right, #040969, #120343);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 2;
}

.box-newsletters button.news:hover {
  transform: scale(1.1);
  background: linear-gradient(45deg, #1e90ff, #052598);
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.7);
}

/* Responsivo */
@media (max-width: 768px) {
  .box-newsletters input {
    width: 100%;
    margin: 0 0 1rem 0;
  }

  .box-newsletters form {
    flex-direction: column;
  }

  .box-newsletters button.news {
    width: 100%;
  }
}



/* Container principal em linha */
footer .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 70px; /* Espaço entre colunas */
  padding: 50px 30px;
  background-color:#000;
  flex-wrap: wrap; /* Responsivo para telas menores */
  text-align: center;
}

/* Estilo das listas */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Títulos */
footer h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
}

/* Redes sociais centralizadas */
.redes-sociais {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

/* Ícones das redes sociais */
.redes-sociais img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

/* Hover com cor específica */
.facebook:hover {
  filter: drop-shadow(0 0 6px #3b5998);
  transform: scale(1.1);
}

.twitter:hover {
  filter: drop-shadow(0 0 6px #1da1f2);
  transform: scale(1.1);
}

.instagram:hover {
  filter: drop-shadow(0 0 6px #e1306c);
  transform: scale(1.1);
}

.linkedin:hover {
  filter: drop-shadow(0 0 6px #0077b5);
  transform: scale(1.1);
}

/* Links */
footer ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #2e0c93;
}

/* Contatos com ícone */
.contatos li {
  font-size: 16px;
  margin: 8px 0;
}

.phone-icon {
  margin-right: 8px;
  color:  #333;;
  font-size: 18px;
}
.email-icon {
  margin-right: 8px;
  color: #333;
  font-size: 18px;
}

/* Rodapé inferior */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #fff;
}
