:root {
  --bg: #000000;
  --text: #e9e9ec;
  --accent: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* =============== RESET =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

/* =============== NAVBAR =============== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.navbar-brand img {
  max-height: 60px;
}

.nav__links {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 280px;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 20px;
  gap: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.nav__links.open {
  transform: translateX(0);
}

.nav__links a {
  color: var(--text);
  font-size: 1rem;
  text-align: left;
  font-weight: 500;
  transition: color 0.3s;
}

.nav__links a:hover {
  color: #fff;
}

@media(min-width: 992px) {
  .nav__links {
    position: static;
    flex-direction: row;
    height: auto;
    gap: 2rem;
    padding: 0;
    background: transparent;
    transform: translateX(0);
  }
}

.hamburger {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 10px;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 10000;
}

.hamburger span {
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px,7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-7px); }

@media(min-width: 992px) {
  .hamburger { display: none; }
}

/* =============== HERO =============== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-image: url('../assets/bg-2.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.589) 25%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  color: #fff;
  text-align: center;
}

.hero__content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero__content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero_btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* =============== SOBRE MIM SPLIT =============== */
.about {
  position: relative;
  background-color: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  gap: 50px;
}

.about_container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 30px;
  color: #fff;
}

/* imagem com fade */
.about_image {
  flex: 0 0 400px;
  height: 400px;
  position: relative;
  border-top-left-radius: 30px;
  overflow: hidden; /* importante para o pseudo-elemento */
}

.about_image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.589) 25%, rgba(0, 0, 0, 0.329) 55%, rgba(0,0,0,0) 100%);
  z-index: 2;
}

.about_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* texto */
.about_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about_text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about_text p {
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .about_container {
    flex-direction: column;
    align-items: center;
  }

  .about_image {
    width: 100%;
    height: 300px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .about_text {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .about_container {
    flex-direction: column; /* imagem em cima, texto embaixo */
    align-items: center;
  }

  .about_image {
    width: 100%;
    height: 300px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px; /* arredonda topo inteiro no mobile */
  }

  .about_text {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}


/* =============== SOCIAL CARD =============== */
.social-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background: #fff;
}

.social-card {
  background-color: #08ff72;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 95%;
  max-width: 790px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.social-info {
  color: #000;
  max-width: 550px;
  text-align: left;
  z-index: 2;
}

.social-info h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 10px 0;
}

.social-info p {
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 25px;
}

.btn-verperfil {
  background-color: #000;
  color: #08ff72;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-verperfil:hover {
  background-color: #fff;
  color: #000;
}

.social-icon-bg {
  background: #fff;
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.social-icon {
  width: 55px;
  object-fit: contain;
}

.social-image {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.phone3d {
  width: 450px;
  animation: floatPhone 5s ease-in-out infinite;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
  .social-card {
    flex-direction: column; /* texto acima, celular abaixo */
    gap: 20px; /* espaço entre texto e celular */
    padding: 30px 20px;
  }

  .phone3d {
    width: 250px; /* reduz tamanho do celular */
    margin-top: 15px; /* distancia o celular do botão */
  }

  .social-info {
    text-align: center; /* centraliza o texto */
  }

  .social-info h2 {
    font-size: 2rem;
  }

  .social-info p {
    font-size: 1rem;
  }

  .btn-verperfil {
    padding: 8px 25px;
    font-size: 0.9rem;
  }
}


/* =============== SERVIÇOS =============== */
.services {
  padding: 100px 15px;
  text-align: center;
}

.service_item img {
  max-width: 60px;
  margin-bottom: 20px;
}

.service_item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* =============== PORTFÓLIO / VÍDEO =============== */
.sobre_content {
  margin: 50px auto;
  max-width: 900px;
  text-align: center;
}

.sobre_content .ratio {
  max-height: 500px;
  overflow: hidden;
}

.sobre_content iframe {
  width: 100%;
  height: 100%;
  max-height: 500px;
}

/* =============== FOOTER =============== */
.footer {
  background-color: #111;
  color: #fff;
  font-family: "Inter", sans-serif;
  padding: 50px 0;
  text-align: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #08FF72;
}

.footer-link {
  font-weight: 500;
  font-size: 1.1rem;
 
