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

html, body {
  margin: 0;
  padding: 0;
  background: rgb(10, 10, 10);
  scroll-behavior: smooth;
  height: 100%;
}

/* fontes e cores */
body {
    font-family:Arial, Helvetica, sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 1.6;
    position:relative;
    z-index: 1;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}
p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}
/* menu */
.menu {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 999px;
  padding: 12px 28px;
}
.menu ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: #949494;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: rgb(148, 148, 148);
}
.menu a.active {
  color: white;
}
@media (max-width: 768px) {
  .menu {
    top: 12px;
    padding: 8px 16px;
  }

  .menu ul {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .menu a {
    font-size: 0.85rem;
  }
}
/* seções */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) clamp(20px, 8vw, 120px);
  text-align: center;
}
#about {
  scroll-margin-top: 60px;
  min-height: auto;
}
span {
  font-family: 'Times New Roman', Times, serif;
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  font-weight: normal;
}

.hero {
    font-family: 'Times New Roman', Times, serif;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 7rem, 20vw, 4rem;
}
.hero span {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(6rem, 10vw, 8rem);
    font-weight: normal;
}
.hero .creator p {
  font-size: clamp(1rem, 3.2vw, 2.2rem);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero span {
    font-size: clamp(6rem, 10vw, 8rem);
  }
}
.about {
  max-width: 800px;
  margin-left: auto;
  margin-right: clamp(20px, 6vw, 120px);
  text-align: right;
}

.about p {
  font-size: clamp(1rem, 2vw, 1.3rem);
}
@media (max-width: 768px) {

  .section {
    padding: 60px 16px;
  }

  .about {
    text-align: center;
    max-width: 100%;
    padding-inline: 0;
  }

  #about span {
    font-size: 2.2rem;
  }

  #about p {
    font-size: 1.05rem;
  }
}
.site-scale {
  flex: 1;
}

@media (min-width: 1600px) {
  .about {
    max-width: 800px;
    margin-right: 0;
  }

  #about span {
    font-size: clamp(3.4rem, 4vw, 4.8rem);
  }
}
  /* #about p {
    font-size: 1.4rem;
    max-width: 620px;
    margin-left: auto;
  } */

@media (min-width: 1600px) {
  body {
    font-size: 1.6rem;
  }

  .video-card {
    width: 960px;
  }
}
@media (min-width: 1600px) {
  .section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 1600px) {
  body {
    font-size: 1.8rem;
  }

  p {
    font-size: 1.25rem;
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 100vh;
  }
}

/* portfolio cards */

.portfolio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  margin-top: 60px;
}
.vid {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: normal;
}
.video-card {
  position: relative;
  width: 820px;       /* controle real do tamanho */
  max-width: 88vw;    /* impede encostar nas bordas */
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: visible;
  transition: transform 0.4s ease;
}

/* brilho */
.video-card::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.35)
  );
  filter: blur(18px);
  opacity: 0.9;
  z-index: 0;
}

.video-card iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

.video-card:hover {
  transform: scale(1.015);
}

.video-card:hover::before {
  filter: blur(10px);
  opacity: 1;
}

.shorts-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.short-card {
  width: 260px;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  background: black;
  position: relative;
  overflow: visible; 
}

/* glow suave em volta */
.short-card::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 36px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.35)
  );
  filter: blur(18px);
  opacity: 0.9;
  z-index: 0;
}

.short-card iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 28px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

 .contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-left {
  max-width: 45%;
  text-align: center;
}
.contact span {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.5;
}
.cont {
  max-width: 45%;
  text-align: left;
}

.cont span {
  font-size: clamp(1.2rem, 3vw, 2rem);
}
.cont p {
  font-size: clamp(1.2rem, 2.2vw, 1.2rem);
} 
.cont a:hover {
  color:#949494;
}

@media (max-width: 768px) {
  .contact-layout {
    flex-direction: column;
    gap: 40px;
  }

  .contact-left,
  .cont {
    max-width: 100%;
  }
}

footer {
  background: #0e0e0e;
  padding: 1px 1px;
  width: 100%;
  top: 0;
  z-index: 10;
  position: relative;
  width: 100%;
}
footer p {
  font-size: 12px;
  text-align: left;
  padding: 10px;
  color: #535353;
}
footer a:hover {
  color:#949494;
}