* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #000103;
  color: white;
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  background: rgba(12, 14, 19, 0.6);
  backdrop-filter: blur(12px);
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.logo span {
  color: #00ff41;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

.btn-nav {
  background: #00FF41;
  padding: 10px 20px;
  border-radius: 25px;
  color: black;
}

/* HERO */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  min-height: 90vh;
}

.hero-text {
  max-width: 600px;
}

.badge {
  display: inline-block;
  background: rgba(0, 191, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #00FF41;
}

h1 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 20px;
}

h1 span {
  color: #00FF41;
}

p {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 18px;
}

.buttons button {
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  margin-right: 15px;
  transition: 0.3s;
  border: none;
}

.btn-primary {
  background: #00FF41;
  color: black;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #444;
  color: white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
}

/* HERO IMAGE */

.hero-image {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
  position: relative;
}

.organic-lines {
  position: absolute;
  width: 420px;
  height: 420px;
  animation: organicMove 12s ease-in-out infinite alternate;
  filter: blur(0.5px);
}

@keyframes organicMove {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 50px;
  }

  h1 {
    font-size: 40px;
  }
}

.organic-lines {
  position: absolute;
  width: 420px;
  height: 420px;
  animation: organicMove 12s ease-in-out infinite alternate;
  filter: blur(0.5px) drop-shadow(0 0 8px #00ff41);
}

@keyframes organicMove {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}


/* Página Sobre */

/* ===== ABOUT PAGE ===== */

.about-hero {
  padding: 100px 8%;
  background: #000000;
  min-height: 100vh;
}

.about-title {
  text-align: center;
  margin-bottom: 60px;
}

.about-title span {
  color: #00ff41;
  font-size: 14px;
  letter-spacing: 2px;
}

.about-title h1 {
  font-size: 42px;
  margin: 10px 0;
}

.about-title .line {
  width: 60px;
  height: 3px;
  background: #00ff41;
  margin: 0 auto;
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: #b0c4de;
  line-height: 1.6;
}

.skills-card {
  flex: 1;
  background: #47464636;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,255,65,0.1);
}

.skills-card h3 {
  margin-bottom: 25px;
}

.skill {
  margin-bottom: 20px;
}

.skill span {
  font-size: 14px;
}

.progress {
  height: 8px;
  background: #1a2c4a;
  border-radius: 20px;
  margin-top: 8px;
  overflow: hidden;
}

.bar {
  height: 100%;
  background: #00ff41;
  border-radius: 20px;
  transition: width 1s ease;
}
/* Linha separadora fina */
.divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}

/* Container Soft Skills */
.soft-section {
  margin-top: 10px;
}

/* Título pequeno */
.soft-title {
  font-size: 11px;
  letter-spacing: 1px;
  color: #7a8da6;
  margin-bottom: 12px;
}

/* Tags */
.soft-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.soft-skills span {
  background: #081523;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  color: #b8c7da;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.soft-skills span:hover {
  border-color: #00ff41;
  color: #00ff41;
}
/* Navbar active link */
nav a.active {
  color: #00ff41;
}

/* Responsivo */

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
  }
}


/* Projetos */

/* ===== PROJECTS SECTION ===== */

.projects-section {
  padding: 100px 8%;
  background: #000102;
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-header span {
  color: #00ff41;
  font-size: 14px;
  letter-spacing: 2px;
}

.projects-header h2 {
  font-size: 36px;
  margin: 10px 0;
}

.projects-header p {
  color: #9db3c7;
  max-width: 600px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  background: #0c1d35;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0,255,65,0.15);
}

.project-image {
  height: 180px;
  background: linear-gradient(135deg, #00ff41 0%, #071427 100%);
  opacity: 0.15;
}

.project-content {
  padding: 25px;
}

.project-content h3 {
  margin-bottom: 10px;
}

.project-content p {
  font-size: 14px;
  color: #b0c4de;
  margin-bottom: 15px;
}

.tags span {
  display: inline-block;
  background: #132844;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.project-links {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.project-links a {
  font-size: 14px;
  color: #00ff41;
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  margin-top: 60px;
  padding: 12px 28px;
  border: 1px solid #00ff41;
  border-radius: 30px;
  color: #00ff41;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #00ff41;
  color: black;
}

.projects-footer {
  text-align: center;
}

/* Responsivo */

@media (max-width: 1000px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== CONTACT PAGE ===== */

.contact-section {
  padding: 100px 8%;
  background: #000000;
  min-height: 100vh;
}

.contact-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.section-tag {
  color: #00ff41;
  font-size: 14px;
  letter-spacing: 2px;
}

.contact-info h1 {
  font-size: 38px;
  margin: 15px 0;
}

.contact-info p {
  color: #9db3c7;
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item strong {
  display: block;
  color: white;
}

.contact-item span {
  color: #9db3c7;
}

.socials a {
  display: inline-block;
  margin-right: 15px;
  margin-top: 20px;
  color: #00ff41;
  text-decoration: none;
}

/* FORM */

.contact-form {
  flex: 1;
  background: #47464636;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0,255,65,0.1);
}

.form-row {
  display: flex;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #000000;
  border: 1px solid #10131a;
  border-radius: 8px;
  color: white;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #00ff41;
  box-shadow: 0 0 10px rgba(0,255,65,0.3);
}
nav a {
  color: white;
}

nav a.active:not(.btn-nav) {
  color: #00ff41;
}

.btn-nav {
  background: #00ff41;
  color: black;
  padding: 8px 20px;
  border-radius: 25px;
}

.btn-nav.active {
  background: #00ff41;
  color: black;
}
.btn-submit {
  width: 100%;
  padding: 14px;
  background: #00ff41;
  color: rgb(2, 2, 2);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  transform: translateY(-3px);
}

.contact-form small {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: #c9c8c8;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}


/* ===== PROJECTS PAGE ===== */

.projects-page {
  padding: 100px 8%;
  background: #000000;
  min-height: 100vh;
}

.projects-header {
  text-align: center;
  margin-bottom: 40px;
}

.projects-header h1 {
  font-size: 40px;
}

.projects-header span {
  color: #00ff41;
}

.projects-header p {
  color: #9db3c7;
  margin-top: 10px;
}

.project-filters {
  text-align: center;
  margin-bottom: 50px;
}

.filter {
  padding: 10px 18px;
  margin: 5px;
  background: #0c1d35;
  border: 1px solid #1a2c4a;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.filter.active,
.filter:hover {
  background: #00ff41;
  color: black;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  background: #0c1d35;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0,255,65,0.15);
}

.project-image {
  height: 180px;
  background: linear-gradient(135deg, #00ff41, #071427);
  opacity: 0.15;
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  margin-bottom: 10px;
}

.project-content p {
  font-size: 14px;
  color: #b0c4de;
  margin-bottom: 15px;
}

.tags span {
  display: inline-block;
  background: #132844;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* Responsivo */

@media (max-width: 1000px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* tecnologias */


.tech-section {
  padding: 50px 8%;
  background: #47464636;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-small-title {
  font-size: 12px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 30px;
}

.tech-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.tech-item {
  color: #fdfdfd;
  opacity: 0.7;
  transition: 0.3s;
}

.tech-item:hover {
  color: #00ff41;
  opacity: 1;
}


/* Serviços */


.services-section {
  padding: 100px 8%;
  background: #000000;
  text-align: center;
}

.services-section h2 {
  font-size: 36px;
  margin: 10px 0 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #47464636;
  padding: 40px 25px;
  border-radius: 15px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0,255,65,0.15);
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  color: #9db3c7;
  font-size: 14px;
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* seta */ 

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  cursor: pointer;
  animation: bounce 1.2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 20px;
  border-left: 2px solid #00ff41;
  border-bottom: 2px solid #00ff41;
  transform: rotate(-45deg);
}

@keyframes bounce {
  0%   { transform: translate(-50%, 0); }
  50%  { transform: translate(-50%, 10px); }
  100% { transform: translate(-50%, 0); }
}

.linguagens-section {
    padding: 100px 20px;
    text-align: center;
}

.linguagens-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.linguagem-square {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #00ff41;
    box-shadow: 0 0 10px #00ff41;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.linguagem-square i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.linguagem-square:hover {
    background: rgba(0, 255, 13, 0.1);
    color: #06c706;
    box-shadow: 0 0 15px #06c706, 0 0 25px #06c706;
    transform: scale(1.05);
}

.project-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card:visited {
  color: inherit;
}

.project-card:hover {
  text-decoration: none;
  color: inherit;
}

.project-card:active {
  color: inherit;
}

@media (max-width: 768px) {

  .navbar{
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  nav a{
    margin-left: 0;
    display: block;
    margin-bottom: 10px;
  }

}