/* NAVBAR PERSONALIZADA */
.custom-navbar {
  background-color: #000;
  padding: 15px 30px;
  font-family: 'Arial', sans-serif;
}

.custom-navbar .navbar-brand {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
}
.custom-navbar .navbar-brand:hover {
  color: #00ff88;
}

.custom-navbar .nav-link {
  color: #fff;
  position: relative;
  padding: 8px 15px;
  transition: color 0.3s ease;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #00ff88;
}
.custom-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 2px;
  background-color: #00ff88;
  transition: 0.3s;
}

.custom-navbar .navbar-toggler {
  border: none;
  background-color: transparent;
}
.custom-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .custom-navbar .navbar-collapse {
    background-color: #000;
    padding: 10px 20px;
  }
  .custom-navbar .nav-link {
    padding: 10px 0;
  }
}

/* CARROSSEL */
.carousel-inner {
  max-height: 85vh;
  overflow: hidden;
}
.carousel-item img {
  object-fit: cover;
  height: 85vh;
  width: 100%;
}

.carousel-caption-custom {
  position: absolute;
  top: 30%;
  left: 10%;
  color: white;
  z-index: 10;
}
.carousel-caption-custom h1 {
  font-size: 3rem;
  font-weight: 200;
}
.carousel-caption-custom h2 {
  font-size: 3.5rem;
  font-weight: bold;
}
.carousel-caption-custom p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Botão */
.botao-portfolio {
  display: inline-flex;
  align-items: center;
  background-color: #c4ff35;
  color: #000;
  border: none;
  border-radius: 9999px;
  padding: 10px 20px;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}
.botao-portfolio:hover {
  background-color: #b8f02e;
}
.botao-portfolio .seta {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid #000;
  display: flex;
  align-items: center;
}
.botao-portfolio .seta svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #000;
  stroke-width: 2;
}

@media (max-width: 768px) {
  .carousel-caption-custom h1,
  .carousel-caption-custom h2 {
    font-size: 2rem;
  }
  .carousel-caption-custom {
    top: 20%;
    left: 5%;
  }
}

/* SOBRE */
.sobre-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c4ff35;
  padding: 40px 20px;
  gap: 30px;
  flex-wrap: wrap;
}
.sobre-img img {
  width: 250px;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  object-fit: cover;
}
.sobre-texto {
  max-width: 500px;
  color: #000;
}
.sobre-texto h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.sobre-texto p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.sobre-texto h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.sobre-texto small {
  font-size: 0.9rem;
  color: #333;
}

@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
    text-align: center;
  }
  .sobre-img img {
    border-radius: 50px;
  }
}

/* TRAJETÓRIA */
.resumo {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.resumo h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.resumo strong {
  color: #c4ff35;
}
.resumo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.coluna {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}
.coluna h3 {
  font-size: 1.5rem;
  color: #c4ff35;
  margin-bottom: 20px;
  text-align: left;
}
.card {
  background-color: #2c2c2c;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  text-align: left;
}
.card .data {
  font-size: 0.9rem;
  color: #aaa;
  display: block;
  margin-bottom: 8px;
}
.card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}
.card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .resumo-grid {
    flex-direction: column;
    align-items: center;
  }
} 
/* PORTFÓLIO */
.portfolio {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.portfolio h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.portfolio h2 span {
  color: #c4ff35;
  font-weight: bold;
}
.portfolio-filter {
  margin-bottom: 30px;
}
.portfolio-filter button {
  background: none;
  border: none;
  color: #ccc;
  margin: 0 10px;
  font-size: 1rem;
  cursor: pointer;
  padding: 6px 12px;
  transition: 0.3s;
}
.portfolio-filter button.active,
.portfolio-filter button:hover {
  color: #c4ff35;
  font-weight: bold;
}
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.portfolio-item {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 10px;
  width: 250px;
  transition: transform 0.3s;
}
.portfolio-item:hover {
  transform: scale(1.05);
}
.portfolio-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.portfolio-item h3 {
  font-size: 1.1rem;
  color: #c4ff35;
}
.portfolio-item p {
  font-size: 0.9rem;
  color: #aaa;
}

/* RODAPÉ */
.footer {
  background-color: #1e1e1e;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
}
.footer .social-icons {
  margin-bottom: 20px;
}
.footer .social-icons a {
  display: inline-block;
  margin: 0 10px;
  background-color: #fff;
  color: #000;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  font-size: 1.2rem;
  transition: 0.3s;
}
.footer .social-icons a:hover {
  background-color: #00ff88;
  color: #000;
}
.footer-info {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}
.footer-credit {
  color: #777;
}
.footer-credit a {
  color: #aaa;
  text-decoration: underline;
}
.footer-credit a:hover {
  color: #00ff88;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

/* Habilidades */
body {
  margin: 0;
  background-color: #0d0d1f;
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.skills-section {
  padding: 40px 20px;
  text-align: center;
}

.skills-section h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 40px;
  border-top: 2px solid #25d366;
  border-bottom: 2px solid #25d366;
  display: inline-block;
  padding: 10px 20px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
}

.skill-card {
  background-color: #1a1a2e;
  border-radius: 12px;
  padding: 20px;
  width: 100px;
  text-align: center;
  color: #25d366;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
  border-bottom: 3px solid #25d366;
}

.skill-card i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.skill-card span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

.skill-card:hover {
  transform: translateY(-5px);
  background-color: #292942;
}
/* Habilidades */