main {
  width: 100%;
}

/* HOME */

.home {
  position: relative;
  min-height: 100vh;
  padding: 120px 8% 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ====== VÍDEO DE FUNDO ====== */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ====== OVERLAY ROXO ESCURO ====== */
.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 0, 40, 0.65);
  z-index: 1;
}

/* ====== CONTEÚDO ====== */
.home-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #EDE6FF;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ====== TÍTULO PRINCIPAL ====== */
.home-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #C792FF;
  text-shadow: 0 0 14px #A855F7, 0 0 26px #7C3AED60;
}

/* ====== SUBTÍTULO ====== */
.home-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #DCC2FF;
  text-shadow: 0 0 10px #A855F740;
}

/* ====== PARÁGRAFOS ====== */
.home-content p {
  font-size: 19px;
  font-weight: 600;
  color: #E5D4FF;
  line-height: 1.6;
}

/* ====== LISTA DE DESTAQUES ====== */
.highlights {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.highlights li {
  color: #F3E8FF;
  margin-bottom: 8px;
  font-weight: 500;
  text-shadow: 0 0 10px #A855F770;
}

/* SOBRE */
.sobre {
  background-color: #05010F;
  min-height: 100vh;
  color: #E6D7FF;
  padding: 28px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sobre-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sobre-content p {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 700px;
  text-align: justify;
  margin: 0 auto 20px;
  color: #CFA8FF;
}

.sobre-skills {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.sobre-skills div {
  background-color: #120326;
  color: #D580FF;
  width: 180px;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1em;
  line-height: 1.2;
  text-align: center;
  transition: 0.25s ease;
  box-shadow: 0 0 12px #9A00FF40;
}

.sobre-skills div:hover {
  background-color: #200447;
  box-shadow: 0 0 14px #B300FF90;
  transform: translateY(-4px);
}

.sobre .btn-default {
  margin-top: 15px;
}


/* SERVICES */
.services {
  width: 100%;
  min-height: 100vh;
  color: #E6D7FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #05010F;
  border-top: 1px solid #120326;
  border-bottom: 1px solid #120326;
}

.services h2 {
  margin-bottom: 20px;
  font-weight: bolder;
  font-size: 40px;
  color: #D580FF;
  text-shadow: 0 0 8px #9A00FF50;
}

.services-skill-cards {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.services-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 250px;
  background: #120326;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 0 12px #9A00FF20;
  transition: transform .3s ease, box-shadow .3s ease;
}

.services-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px #B300FF60;
}

.services-card img {
  width: 160px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 6px #B300FF50);
}

.services-card span {
  color: #E6D7FF;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 0 6px #B300FF40;
}

.services-card p {
  font-size: 15px;
  line-height: 1.4;
  color: #CFA8FF;
}



/* CONTATO */
.contact {
  background-color: #05010F;
  min-height: 100vh;
  color: #E6D7FF;
  text-align: center;
  padding: 80px 10%;
  border-top: 1px solid #14022B;
  border-bottom: 1px solid #14022B;
}

.contact h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #D580FF;
  text-shadow: 0 0 8px #9A00FF50;
}

.contact p {
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #CFA8FF;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #E9C8FF;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 1em;
  background-color: #120326;
  color: #F5E6FF;
  box-shadow: 0 0 6px #B300FF20 inset;
  transition: box-shadow .3s ease, background .3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  box-shadow: 0 0 10px #B300FF70;
  background-color: #1A0735;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #B88AF5;
}

.btn-default {
  background-color: #B300FF;
  color: #F5E6FF;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: .3s ease;
  box-shadow: 0 0 12px #B300FF40;
}

.btn-default:hover {
  background-color: #9A00FF;
  transform: scale(1.05);
  box-shadow: 0 0 18px #D580FF90;
}

.span-required,
.email-required,
.msg-required {
  color: #FF4FBC;
}


/* RESPONSIVO */
@media screen and (max-width: 1170px) {
  .home {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .home-content {
    align-items: center;
  }

  .home-content h1 {
    font-size: 1.8rem;
    max-width: 90%;
    line-height: 1.4;
  }

  .home-content p {
    font-size: 1rem;
    max-width: 90%;
  }

  .home .content-img {
    order: -1;
  }

  .div-btn-default {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}