/* Reset base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1b1b1b;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

/* Container principal */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Secções */
.portfolio-section {
  padding: 80px 0;
}

.portfolio-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

/* Texto com glow */
.glow-text {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  color: #eb1471;
  text-shadow: 0 0 8px #eb1471aa, 0 0 18px #eb1471aa;
  margin-bottom: 3rem;
}

/* Secção sobre mim */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #eb1471, transparent);
  box-shadow: 0 0 10px #eb1471aa;
}

.about-section::before {
  left: 0;
}

.about-section::after {
  right: 0;
}

.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  padding: 6rem 2rem;
  min-height: 90vh;
  flex-direction: column;
}

.about-left {
  display: flex;
  justify-content: center;
}

.about-left img {
  max-width: 360px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 1.5rem auto;
  transition: transform 0.3s ease;
}

.about-left img:hover {
  transform: scale(1.04);
}

.about-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2rem;
}

.about-right p {
  font-size: 1.1rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin: 0.4rem 0;
}

/* Grade de vídeos */
.portfolio-grid,
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 1rem 0;
}

/* Itens vídeo */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-item--vertical {
  width: 220px;
  aspect-ratio: 9 / 16;
}

.portfolio-item--horizontal {
  width: 320px;
  aspect-ratio: 16 / 9;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.portfolio-item:hover img {
  transform: scale(1.03);
}

.portfolio-item .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  text-align: center;
  padding: 0.5rem;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

/* Itens galeria (fotografia) */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  border-radius: 12px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--4by5 {
  aspect-ratio: 4 / 5;
  max-width: 260px;
  width: 100%;
}

.gallery-item--16by9 {
  aspect-ratio: 16 / 9;
  max-width: 400px;
  width: 100%;
}