@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');



:root {
  --roxo: #a946ff;
  --rosa: #ff4f91;
  --bg: #0b0d1a;
  --text: #fff;
  --glass: rgba(255, 255, 255, 0.04);
  --card: #0e1220;
  --radius: 14px;
  --gap: 18px;
  --container-padding: 8%
    /* ===== PRIMARY ===== */
    --color-primary-1: #a946ff;
  --color-primary-2: #6c23ac;
  --color-primary-3: #25093d;
  --color-primary-4: #12041e;

  /* ===== SECONDARY ===== */
  --color-secondary-1: #ffffff;
  --color-secondary-2: #000000;
  --color-secondary-3: #e21ab3;
  --color-secondary-4: #2c0fbb;

  /* ===== ACCENTS / HIGHLIGHTS ===== */
  --color-accent-1: #00e5ff;
  /* ciano neon para highlights */
  --color-accent-2: #ff007a;
  /* rosa vibrante para CTAs */
  --color-accent-3: #b57bff;
  /* roxo claro para hover */

  /* ===== GRADIENTS ===== */
  --gradient-primary: linear-gradient(135deg, #a946ff, #6c23ac);
  --gradient-secondary: linear-gradient(135deg, #e21ab3, #2c0fbb);
  --gradient-accent: linear-gradient(135deg, #a946ff, #00e5ff);

  /* ===== NEUTRALS ===== */
  --color-neutral-1: #0d0d0d;
  /* dark base */
  --color-neutral-2: #1a1a1a;
  /* soft dark */
  --color-neutral-3: #2e2e2e;
  /* bordas leves */
  --color-neutral-4: #f2f2f2;
  /* cinza claro para contraste */
  --color-neutral-5: #cccccc;
  /* cinza para textos secundários */

  /* ===== FEEDBACK ===== */
  --color-success: #00c26e;
  --color-warning: #ffb800;
  --color-error: #ff375f;
  --color-info: #009dff;

  /* ===== SHADOWS (soft tech vibes) ===== */
  --shadow-light: 0 0 10px rgba(169, 70, 255, .25);
  --shadow-strong: 0 0 25px rgba(169, 70, 255, .45);

  /* ===== TRANSPARENCY LAYERS ===== */
  --overlay-dark: rgba(0, 0, 0, .55);
  --overlay-light: rgba(255, 255, 255, .1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html,
body {
  height: 100%
}

body {
  font-family: 'Poppins', system-ui, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden
}

#loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--bg);
  z-index: 9999
}

.loader__logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(45deg, var(--roxo), var(--rosa));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(169, 70, 255, .12)
}

.loader__text {
  margin-top: 12px;
  opacity: .9
}

/* =================================================================== */

/* GERAL — centralizar texto */
.texto-sobre {
  flex: 1 1 420px;
  text-align: center; /* Agora fica no meio no desktop e mobile */
}

/* DESKTOP — dar espaço entre o topo da section e o texto */
@media (min-width: 768px) {
  #sobre {
    padding-top: 60px; /* Ajusta a altura que você quiser */
  }
}

/* MOBILE — remover gap entre header e section */
@media (max-width: 767px) {

  header,
  #inicio,
  .hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  #sobre {
    margin-top: 0 !important;
    padding-top: 10px !important; /* só pra não colar agressivo */
  }
}

/* =================================================================== */

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(11, 13, 26, .9);
  backdrop-filter: blur(6px);
  z-index: 9999;
  transition: .3s ease;
}

/* logo */
.logo img {
  height: 55px;
  width: auto;
  transition: .3s ease;
}

/* nav links (desktop) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: .2s;
}

/* underline hover */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--color-secondary-3);
  transition: width .25s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* BOTÃO (invisível no desktop) */
.btn-mobile {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.85rem;
  cursor: pointer;
  display: none;
  /* mostrado via media query */
  z-index: 10000;
  position: absolute;
  /* garante que fique dentro da navbar */
  right: 2.5%;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px;
  border-radius: 6px;
}

/* ================= MOBILE ================= */
@media (max-width: 820px) {

  .btn-mobile {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    /* logo + navbar altura */
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    padding: 2.2rem 1rem;
    border-radius: 12px;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);

    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .28s ease, transform .28s ease;
    transform-origin: top center;
    transform: translateX(-50%) translateY(-6%);
  }

  /* estado aberto */
  .nav-links.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  /* mobile link style */
  .nav-links a {
    color: #fff;
    font-size: 1.12rem;
    font-weight: 600;
    text-align: center;

    .nav-links a:hover {
      color: var(--color-secondary-3);
    }
    .nav-links a:active {
    transform: scale(0.95);
    color: var(--color-secondary-3);
  }
  }
}

/* ================= DESKTOP ================= */
@media (min-width: 821px) {
  .nav-links {
    display: flex !important;
    flex-direction: row;
    gap: 2rem;
    position: static;
    padding: 0;
    width: auto;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .btn-mobile {
    display: none;
  }

  /* logo */
  .logo img {
    height: 150px;
    width: auto;
    transition: .3s ease;
  }

  .nav-links a:hover {
    color: var(--color-secondary-3);
  }
}




.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px var(--container-padding) 40px;
  gap: 30px;
  overflow: visible !important;
}

.hero-content {
  max-width: 560px
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px
}

.hero p {
  opacity: .95;
  margin-bottom: 18px
}

.hero-img img {
  max-width: 460px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(169, 70, 255, .08)
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(45deg, var(--rosa), var(--roxo));
  color: #fff;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(169, 70, 255, .08)
}

.btn.small {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: .9rem
}

.btn.outlined {
  background: 0;
  border: 1px solid rgba(255, 255, 255, .06);
  color: var(--text)
}

.cta {
  box-shadow: 0 14px 44px rgba(255, 79, 145, .08)
}

section {
  padding: 80px var(--container-padding);
  text-align: center
}

.section-title {
  margin-bottom: 24px;
  font-size: 1.6rem;
  color: var(--roxo)
}

.container-sobre {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center; /* centraliza o bloco */
  flex-wrap: wrap;
  text-align: center; /* centraliza texto dentro quando quebrar */

  .texto-sobre {
  flex: 1 1 420px;
  text-align: center; /* CENTRALIZA NO DESKTOP E MOBILE */
}
}



.mvv {
  margin-top: 2.5rem;
  background: radial-gradient(circle at top, rgba(169, 70, 255, .06), transparent);
  padding: 32px;
  border-radius: 18px
}

.mvv-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.mvv-card {
  flex: 1 1 240px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
  padding: 18px;
  border-radius: 12px;
  text-align: left
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px
}

.servico-card {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .35)
}

#portfolio {
  background: radial-gradient(circle at top, rgba(169, 70, 255, .08), rgba(255, 79, 145, .04) 70%, transparent);
  padding: 100px var(--container-padding);
  text-align: center;
  position: relative;
  overflow: hidden
}

#portfolio .title {
  font-size: 2.4rem;
  color: var(--roxo);
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase
}

#portfolio .subtitle {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 50px
}

.casos-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  list-style: none;
  margin-top: 20px;
  justify-items: center
}

.video-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 35px rgba(0, 0, 0, .4);
  backdrop-filter: blur(8px);
  transition: transform .4s ease, box-shadow .4s ease, border .3s ease;
  border: 1px solid rgba(255, 255, 255, .05);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .6s ease forwards
}

.video-card:nth-child(2n) {
  animation-delay: .1s
}

.video-card:nth-child(3n) {
  animation-delay: .2s
}

.video-card:nth-child(4n) {
  animation-delay: .3s
}

.video-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 45px rgba(169, 70, 255, .25);
  border-color: rgba(255, 255, 255, .1)
}

.video-card video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: #000;
  transition: transform .6s ease, filter .4s ease
}

.video-card:hover video {
  transform: scale(1.06);
  filter: brightness(1.15)
}

.video-info {
  padding: 20px;
  text-align: left
}

.video-info h4 {
  font-size: 1.1rem;
  color: var(--roxo);
  margin-bottom: 10px;
  font-weight: 600
}

.video-info p {
  font-size: .9rem;
  opacity: .9;
  margin-bottom: 14px;
  line-height: 1.5
}

.video-info small {
  opacity: .75;
  font-size: .8rem
}

.tag-conversion {
  display: inline-block;
  background: linear-gradient(90deg, var(--rosa), var(--roxo));
  color: #fff;
  font-size: .75rem;
  border-radius: 50px;
  padding: 4px 10px;
  margin-bottom: 10px;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(255, 79, 145, .2)
}

.casos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px
}

.casos-tags span {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: .8rem;
  color: #ccc;
  transition: all .3s ease
}

.casos-tags span:hover {
  background: linear-gradient(45deg, var(--roxo), var(--rosa));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px)
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media(max-width:1024px) {
  .video-card video {
    height: 220px
  }
}

@media(max-width:768px) {
  #portfolio {
    padding: 70px 6%
  }

  #portfolio .title {
    font-size: 1.8rem
  }

  .video-card video {
    height: 200px
  }
}

.contato {
  background: linear-gradient(180deg, #0e1220, #0b0d1a);
  padding: 80px var(--container-padding);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 0 60px rgba(169, 70, 255, .08)
}

.contato-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap
}

.contato-texto {
  flex: 1 1 420px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, .4)
}

.contato-texto h2 {
  font-size: 1.8rem;
  color: var(--roxo);
  margin-bottom: 10px
}

.contato-texto p {
  opacity: .9;
  margin-bottom: 20px
}

.form-contato {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.form-contato input,
.form-contato textarea {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
  color: var(--text);
  font-size: .95rem;
  resize: none
}

.form-contato input:focus,
.form-contato textarea:focus {
  outline: 0;
  border-color: var(--roxo);
  background: rgba(169, 70, 255, .05)
}

.redes-sociais {
  flex: 1 1 320px;
  background: linear-gradient(135deg, var(--roxo) 0%, var(--rosa) 100%);
  color: var(--branco);
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, .25);
  transition: transform .3s ease, box-shadow .3s ease
}

.redes-sociais:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .4)
}

.redes-sociais h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 1px
}

.redes-sociais a {
  display: inline-block;
  margin: 12px;
  padding: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .15);
  transition: all .3s ease
}

.redes-sociais a:hover {
  background-color: var(--branco);
  transform: translateY(-3px) scale(1.1)
}

.redes-sociais a img {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 50%
}

.credit {
  text-align: center;
  margin-top: 60px;
  font-size: .9rem;
  opacity: .8
}

@media(max-width:900px) {
  .contato-container {
    flex-direction: column;
    align-items: stretch
  }

  .redes-sociais {
    margin-top: 40px
  }
}

.popup-lead {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 360px;
  background: linear-gradient(180deg, #0d1220, #0b0d1a);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .6);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all .35s;
  z-index: 9998
}

.popup-lead.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  background: 0;
  color: var(--text);
  cursor: pointer
}


/* BLOG SECTION */
.blog-section {
  padding: 80px 0;
  background: transparent;
  /* remove o fundo branco */
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
  padding: 0 10px;
}

/* CARD */
.blog-card {
  background: rgba(255, 255, 255, 0.05);
  /* leve transparência elegante */
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform .35s ease, box-shadow .35s ease;
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

/* IMAGEM */
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* CONTEÚDO */
.blog-content {
  padding: 22px;
}

.blog-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.blog-content p {
  font-size: 0.97rem;
  opacity: 0.75;
  margin-bottom: 22px;
  line-height: 1.45;
}

/* BOTÃO */
.blog-btn {
  font-weight: 600;
  text-decoration: none;
  color: #a946ff;
  transition: .25s;
  display: inline-flex;
  align-items: center;
}

.blog-btn::after {
  content: "→";
  margin-left: 6px;
  transition: transform .25s ease;
}

.blog-btn:hover {
  color: #8d2ee8;
}

.blog-btn:hover::after {
  transform: translateX(4px);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blog-card img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .blog-content h3 {
    font-size: 1.25rem;
  }

  .blog-content p {
    font-size: 0.9rem;
  }
}

/* CARD BASE */
.blog-card {
  position: relative;
  overflow: hidden;
}

/* IMAGEM */
.blog-card img {
  transition: transform 0.6s ease;
  display: block;
}

/* ZOOM NO HOVER */
.blog-card:hover img {
  transform: scale(1.12);
}

/* OVERLAY ESCURO NO HOVER */
.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: background 0.4s ease;
  pointer-events: none;
}

.blog-card:hover::after {
  background: rgba(0, 0, 0, 0.115);
  /* efeito de profundidade */
}

/* DEIXAR O TEXTO DAR UM LEVE LIFT NO HOVER */
.blog-content {
  position: relative;
  transition: transform .35s ease, opacity .35s ease;
}

.blog-card:hover .blog-content {
  transform: translateY(-3px);
  opacity: 1;
}

/* WRAPPER PARA A BORDA NEON */
.blog-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* BORDA NEON ANIMADA */
.blog-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(120deg,
      rgba(169, 70, 255, 0.8),
      rgba(255, 79, 145, 0.8),
      rgba(169, 70, 255, 0.8));
  background-size: 300% 300%;
  filter: blur(6px);
  animation: neonBorder 6s linear infinite;
  z-index: -1;
  opacity: 0;
  /* só aparece no hover */
  transition: opacity .4s ease;
}

.blog-card:hover::before {
  opacity: 1;
}

@keyframes neonBorder {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}





/* ==================== */





#blog {
  padding: 4rem 1.5rem;
  background: #000;
  /* PRETÃO FINO */
  box-shadow: 0 0 80px 20px rgba(96, 59, 142, 0.504);
  /* GLOW AO REDOR */
  position: relative;
  z-index: 2;

}

.servico-card {
  box-shadow: 0 4px 14px rgb(204, 0, 255);
}

/* video header */

.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  /* FULL TELA */
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 5%;
  box-shadow: 0 0 80px 20px rgba(96, 59, 142, 0.504);
  /* GLOW AO REDOR */
}

/* VÍDEO DE FUNDO */

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* OVERLAY ESCURO */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.036);
  /* contraste */
  z-index: -1;
}

/* CONTEÚDO */
.hero-content {
  position: relative;
  max-width: 600px;
  color: #fff;
  z-index: 5;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 15px 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: 85vh;
    /* menos altura pro mobile */
    padding: 0 1.5rem;
    text-align: center;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
  }
}

/* video serviço */

#servicos {
  padding: 4rem 1.5rem;
  background: #000;
  /* PRETÃO FINO */
  box-shadow: 0 0 80px 20px rgba(96, 59, 142, 0.504);
  /* GLOW AO REDOR */
  border-radius: 30px;
  /* PRA DAR O EFEITO DE BLOCO DESTACADO */
  position: relative;
  z-index: 2;
}

/* TÍTULO */
#servicos .section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  color: #fff;
  /* CONTRASTE BONITO */
}

/* GRID */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* CARD */
.servico-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;

  /* sem glow inicialmente */
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.servico-card:hover {
  transform: translateY(-6px);

  /* Glow só quando passa o mouse */
  box-shadow:
    0 0 18px rgb(204, 0, 255),
    0 0 32px rgb(140, 0, 255);
}

/* IMAGEM */
.servico-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* TÍTULOS */
.servico-card h3 {
  font-size: 1.3rem;
  margin-bottom: .5rem;
  color: #111;
}

/* TEXTO */
.servico-card p {
  color: #444;
  font-size: .95rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }

  #servicos .section-title {
    font-size: 2rem;
  }
}


/* video contato */

/* Footer vira container do vídeo */
.contato {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  color: #fff;
  /* mantém tudo legível */
}

/* Vídeo de fundo ocupando tudo */
.contato .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay escuro por cima do vídeo */
.contato::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Conteúdo do footer */
.contato-container,
.credit,
.contato-texto,
.redes-sociais {
  position: relative;
  z-index: 3;
}

/* Opcional - deixa os inputs mais premium com glass effect */
.form-contato input,
.form-contato textarea {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.form-contato input::placeholder,
.form-contato textarea::placeholder {
  color: #e9e9e9;
}

/* Redes sociais */
.icone-social {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.4));
}

/* Ajuste mobile */
@media (max-width: 768px) {
  .contato-container {
    flex-direction: column;
    gap: 30px;
  }
}


/* ===========================
   FOOTER — ESTILO NOVO
   =========================== */

footer.footer {
  position: relative;
  padding: 80px 8%;
  background: #000000;
  overflow: hidden;
  color: #fff;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 0 80px 25px rgba(140, 0, 255, 0.35);
}

/* Vídeo */
footer.footer .footer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
footer.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  z-index: 2;
}

/* Conteúdo principal */
footer.footer .footer-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Texto */
footer.footer .footer-info {
  flex: 1 1 380px;
}

footer.footer h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #a946ff;
}

footer.footer p {
  opacity: 0.9;
  margin-bottom: 22px;
}

/* INPUTS */
footer.footer .footer-form input,
footer.footer .footer-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 12px;
}

footer.footer .footer-form input::placeholder,
footer.footer .footer-form textarea::placeholder {
  color: #e8e8e8;
}

/* Botão */
footer.footer .footer-form button {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  background: linear-gradient(45deg, #ff4f91, #a946ff);
  border: 0;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(169, 70, 255, 0.35);
  transition: transform .3s ease;
}

footer.footer .footer-form button:hover {
  transform: scale(1.02);
}

/* Redes Sociais */
.redes-sociais {
  flex: 1 1 320px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 22px;
  padding: 40px 25px;
  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.10);

  /* glow suave */
  box-shadow:
    0 0 35px rgba(140, 0, 255, 0.28),
    inset 0 0 18px rgba(255, 255, 255, 0.04);

  transition: transform .3s ease, box-shadow .3s ease, border .3s ease;
}

.redes-sociais:hover {
  transform: translateY(-8px);

  box-shadow:
    0 0 60px rgba(169, 70, 255, 0.45),
    inset 0 0 25px rgba(255, 255, 255, 0.06);

  border-color: rgba(255, 255, 255, 0.18);
}

/* Título */
.redes-sociais h3 {
  font-size: 1.8rem;
  margin-bottom: 22px;
  font-weight: 700;
  color: #ffffff;
}

/* Ícones */
.redes-sociais a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;
  margin: 10px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition: .3s ease;

  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}

.redes-sociais a:hover {
  transform: translateY(-4px) scale(1.12);
  background: linear-gradient(135deg, #ff4f91, #a946ff);
  border-color: transparent;

  box-shadow:
    0 0 20px rgba(169, 70, 255, 0.65),
    0 0 40px rgba(255, 79, 145, 0.45);
}

.redes-sociais a img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

/* Créditos */
footer.footer .footer-credit {
  text-align: center;
  margin-top: 40px;
  opacity: 0.85;
  font-size: 0.9rem;
}







/* =================================
          RESPONSIVE MOBILE
================================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 6%;
  }

  .blog-card img {
    height: 180px;
  }

  .blog-card:hover img {
    transform: scale(1.05);
  }

  section {
    padding: 70px 6%;
  }
}

@media (max-width: 480px) {

  .title {
    font-size: 1.8rem;
  }

  .blog-content h3 {
    font-size: 1.1rem;
  }

  .blog-content p {
    font-size: 0.85rem;
  }

  section {
    padding: 50px 5%;
  }
}