/* NOVA PALETA TECH */
:root {
    --primaria: #0a192f;
    --secundaria: #112240;
    --cinza-claro: #1a2332;
    --texto-escuro: #e6f1ff;
    --destaque: #64ffda;
    --destaque-hover: #00bfae;
    --bs-light-rgb: 10,25,47 !important;
    --bs-info-rgb: 100,255,218 !important;
    --bs-secondary-rgb: 17,34,64 !important;
    --bs-warning-rgb: 100,255,218 !important;
  }

  /* Remover as definições do data-theme="dark" já que agora será padrão */
  
  body {
    background-color: var(--cinza-claro);
    color: var(--texto-escuro);
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  }
  
  .bg-primaria {
    background-color: var(--primaria) !important;
  }

  .bg-secundaria {
    background-color: var(--secundaria) !important;
  }

  .text-muted {
    color: #8892b0 !important;
  }

  .text-info {
    color: var(--destaque) !important;
  }

  a, .btn-link {
    color: var(--destaque);
  }
  a:hover, .btn-link:hover {
    color: var(--destaque-hover);
  }

  /* ===== SOBRE (VISUAL TECH) ===== */
#sobre {
  background: linear-gradient(135deg, var(--primaria) 60%, var(--secundaria) 100%);
  color: var(--texto-escuro);
  padding: 90px 0 70px 0;
  position: relative;
  overflow: hidden;
}

#sobre .container {
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

#sobre .sobre-card {
  background: rgba(17,34,64,0.98);
  border-radius: 22px;
  box-shadow: 0 8px 40px 0 rgba(100,255,218,0.10), 0 1.5px 0 0 #00bfae33;
  padding: 48px 40px 36px 40px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #233554;
  transition: box-shadow 0.3s, border 0.3s, transform 0.2s;
  position: relative;
  overflow: visible;
  text-align: start;
}

#sobre .sobre-card:hover {
  box-shadow: 0 12px 48px 0 rgba(100,255,218,0.22);
  border: 1.5px solid var(--destaque);
  transform: translateY(-6px) scale(1.01);
}

#sobre .row.align-items-center {
  align-items: center;
  gap: 0;
}

#sobre .foto-sobre {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  height: 100%;
}

#sobre .foto-sobre img {
  object-fit: cover;
  width: 180px;
  height: 240px;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  border: 3px solid var(--destaque);
  box-shadow: 0 0 32px 0 #00bfae33, 0 0 0 6px #112240;
  background: linear-gradient(135deg, var(--destaque) 0%, var(--destaque-hover) 100%);
  transition: box-shadow 0.3s, border 0.3s;
}

#sobre .foto-sobre img:hover {
  box-shadow: 0 0 48px 0 #00bfae77, 0 0 0 8px #112240;
  border-color: var(--destaque-hover);
}

#sobre h2 {
  color: var(--destaque);
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: 1.5px;
  text-shadow: 0 0 16px #00bfae33;
  text-align: center;
}

#sobre h4 {
  color: var(--destaque);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  text-align: left;
}

#sobre .sobre-info {
  font-size: 1.08rem;
  color: #e6f1ff;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

#sobre .sobre-valores {
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
  margin-bottom: 0.5rem;
}

#sobre .sobre-valores ul {
  margin: 0 0 0 0;
  padding-left: 1.2rem;
  list-style: none;
}

#sobre .sobre-valores li {
  color: #b6eaff;
  margin-bottom: 10px;
  font-size: 1.01rem;
  position: relative;
  padding-left: 18px;
}

#sobre .sobre-valores li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--destaque);
  border-radius: 50%;
  box-shadow: 0 0 8px #00bfae99;
}

#sobre .sobre-valores li strong {
  color: var(--destaque);
  font-weight: 600;
  letter-spacing: 0.5px;
}

#sobre .skills-title {
  color: var(--destaque);
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 1px;
}

#sobre .skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
  margin-top: 8px;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

#sobre .skill-badge {
  color: #fff !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 1.07rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

#sobre .skill-badge span {
  color: #fff !important;
  font-size: 1.07rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

#sobre .skill-badge:hover {
  color: var(--destaque) !important;
}

@media (max-width: 992px) {
  #sobre .sobre-card {
    padding: 24px 10px 18px 10px;
  }
  #sobre .foto-sobre img {
    width: 120px;
    height: 160px;
  }
}
@media (max-width: 768px) {
  #sobre .sobre-card {
    padding: 12px 2px 10px 2px;
  }
  #sobre .foto-sobre img {
    width: 90px;
    height: 120px;
  }
  #sobre .sobre-valores {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 576px) {
  #sobre .skills-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  #sobre .skill-badge {
    font-size: 0.98rem;
    padding: 6px 12px;
  }
}

/* ===== FIM SOBRE ===== */

  /* Remover o theme-toggle já que não será mais usado */
  /* .theme-toggle {
    cursor: pointer;
    color: white;
    margin-left: 1rem;
  } */

  .bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  }

  .text-center a {
    text-decoration: none;
    color: var(--texto-escuro);
  }

  .hero {
    background-color: var(--primaria);
    color: white;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
  }

  .social-icons a:hover {
    color: var(--destaque);
    transition: color 0.3s ease;
  }

  .timeline {
    position: relative;
    margin-left: 20px;
    padding-left: 40px;
    border-left: 3px solid #4F7302;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 40px;
    background-color: #0D0D0D;
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid transparent;
    box-shadow: 0 2px 6px white;
  }
  
  .timeline-item:hover {
    border-left-color: var(--destaque);
  }
  
  .timeline-icon {
    position: absolute;
    left: -42px;
    top: 20px;
    width: 60px;
    height: 60px;
    background: white;
    color: #000;
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--destaque);
  }

  .timeline-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .timeline-content h5 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: #A7F205;
  }
  
  .timeline-content p {
    margin-bottom: 0.8rem;
    color: #ccc;
  }
  
  .timeline-content ul {
    padding-left: 1.2rem;
    list-style-type: disc;
    color: #ADD96C;
    margin-bottom: 1rem;
  }

  @media (max-width: 768px) {
    .timeline {
      margin-left: 0;
      padding-left: 0;
      border-left: none;
    }
  
    .timeline-item {
      padding-left: 0;
      margin-left: 0;
      box-shadow: none;
    }
  
    .timeline-icon {
      position: static;
      margin: 0 auto 20px auto;
      display: flex;
      justify-content: center;
      border: 1px solid #A7F205 !important;
    }
  
    .timeline-content {
      text-align: center;
    }
  
    .timeline-content h5,
    .timeline-content p,
    .timeline-content ul {
      text-align: left;
    }
  
    .timeline-content ul {
      padding-left: 1rem;
    }
  }
  
  .badges .badge {
    margin: 5px 5px 0 0;
    background-color: var(--destaque) !important;
    color: var(--primaria) !important;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-block;
  }
  
  .text-muted {
    color: white !important;
  }

  .bi {
    color: var(--destaque) !important;
  }

  .bi:hover {
    color: var(--destaque-hover) !important;
  }

  .img-fluid {
    max-width: 300px;
    background: linear-gradient(to right, var(--destaque), var(--destaque-hover));
    padding: 6px;
    border-radius: 20px !important;
  }

  .bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
    color: black !important;
  }

  .education-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #111;
    color: #fff;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .edu-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .edu-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  
  .edu-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
  }
  
  .edu-card h3 {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .edu-card p {
    margin: 4px 0;
    font-size: 0.95rem;
  }
  
  .edu-card a {
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
  }

  .testimonial-text {
    font-style: italic;
    color: #ccc; /* Mudando de #555 para #ccc para melhor contraste no tema escuro */
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
  }
  
  .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* Aumentando a sombra para tema escuro */
    max-width: 500px;
    background-color: #1a1a1a !important; /* Fundo escuro para os cards */
    color: #fff !important; /* Texto claro para os cards */
  }

  .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--destaque) !important;
  }

  /* Estilos para a seção Sobre mim */
#sobre .skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

#sobre .skill-badge {
    background-color: var(--destaque);
    color: black;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--destaque);
    transition: all 0.3s ease;
}

#sobre .skill-badge:hover {
    background-color: transparent;
    color: var(--destaque);
    border-color: var(--destaque);
}

#sobre ul li {
    color: var(--texto-escuro);
    margin-bottom: 8px;
}

#sobre ul li strong {
    color: var(--destaque);
}

@media (max-width: 768px) {
    #sobre .col-md-6 {
        margin-bottom: 30px;
    }
}

/* Estilos para a seção de serviços */
.service-card {
  background-color: #0a4a1a;
  border: 2px solid #2d5a3d;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card:hover {
  border-color: var(--destaque);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(167, 242, 5, 0.2);
}

.service-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
    padding: 25px 15px;
  }
}

/* Estilos para a seção Portfolio */
.portfolio-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #333;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(167, 242, 5, 0.3);
    border-color: var(--destaque);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
}

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

.portfolio-overlay h5 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.portfolio-overlay .btn {
    background-color: var(--destaque);
    color: var(--primaria);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.portfolio-content {
    padding: 20px;
}

.portfolio-tech {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.tech-icon {
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tech-icon.react {
    background: #61dafb;
    color: #000;
}

.tech-icon.html {
    background: #e34f26;
}

.tech-icon.css {
    background: #1572b6;
}

.tech-icon.js {
    background: #f7df1e;
    color: #000;
}

.portfolio-content h5 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.portfolio-meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.portfolio-tags .tag {
    background: var(--destaque);
    color: var(--primaria);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .portfolio-card {
        margin-bottom: 20px;
    }
    
    .portfolio-image {
        height: 150px;
    }
    
    .portfolio-content {
        padding: 15px;
    }
}

/* ===== RESPONSIVIDADE GERAL ===== */

/* Mobile First - Base styles para mobile */
@media (max-width: 576px) {
  /* Hero Section */
  .hero {
    padding: 40px 0 !important;
    margin-top: 60px !important;
  }
  
  .hero h1 {
    font-size: 2rem !important;
  }
  
  .hero h2 {
    font-size: 1.25rem !important;
  }
  
  .hero .lead {
    font-size: 1rem !important;
  }
  
  /* Navbar */
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  /* Sections padding */
  section {
    padding: 40px 0 !important;
  }
  
  /* Títulos */
  h2 {
    font-size: 1.75rem !important;
  }
  
  h4 {
    font-size: 1.25rem !important;
  }
  
  h5 {
    font-size: 1.1rem !important;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  /* Sobre mim */
  #sobre .col-md-6 {
    margin-bottom: 30px;
  }
  
  #sobre .skills-container {
    justify-content: center;
    gap: 6px;
  }
  
  #sobre .skill-badge {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  
  /* Experiências e Educação */
  #experiencias .col-md-6:first-child,
  #education .col-md-6:first-child {
    margin-bottom: 40px;
  }
  
  .timeline-item {
    margin-bottom: 25px;
    padding: 15px;
  }
  
  .timeline-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .timeline-content h5 {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .timeline-content ul {
    padding-left: 1rem;
  }
  
  .timeline-content ul li {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  .badges .badge {
    font-size: 0.7rem;
    padding: 3px 6px;
    margin: 3px 3px 0 0;
  }
  
  /* Serviços */
  .service-card {
    margin-bottom: 20px;
    padding: 20px 15px;
  }
  
  .service-card h5 {
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
  
  /* Portfolio */
  .portfolio-card {
    margin-bottom: 20px;
  }
  
  .portfolio-image {
    height: 150px;
  }
  
  .portfolio-content {
    padding: 15px;
  }
  
  .portfolio-tech {
    flex-wrap: wrap;
    gap: 4px;
  }
  
  .tech-icon {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  
  .portfolio-tags {
    gap: 4px;
  }
  
  .portfolio-tags .tag {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  
  /* Grid ajustments */
  .row.g-4 {
    gap: 1rem !important;
  }
}

/* Tablet Landscape */
@media (max-width: 992px) {
  /* Portfolio - 2 colunas em tablet landscape */
  #portfolio .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  /* Serviços - 2 colunas em tablet landscape */
  #servicos .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .service-card {
    height: auto;
    min-height: 200px;
  }
}

/* Desktop Small */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .timeline-content {
    padding-right: 10px;
  }
}

/* Desktop Large */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .portfolio-image {
    height: 220px;
  }
  
  .service-card {
    padding: 35px 25px;
  }
}

/* ===== AJUSTES ESPECÍFICOS PARA COMPONENTES ===== */

/* Timeline responsivo */
@media (max-width: 768px) {
  .timeline {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }
  
  .timeline-item {
    padding-left: 0;
    margin-left: 0;
    box-shadow: none;
  }
  
  .timeline-icon {
    position: static;
    margin: 0 auto 15px auto;
    display: flex;
    justify-content: center;
    border: 1px solid #A7F205 !important;
  }
  
  .timeline-content {
    text-align: center;
  }
  
  .timeline-content h5,
  .timeline-content p,
  .timeline-content ul {
    text-align: left;
  }
  
  .timeline-content ul {
    padding-left: 1rem;
  }
}

/* Skills container responsivo */
@media (max-width: 576px) {
  #sobre .skills-container {
    flex-direction: column;
    align-items: center;
  }
  
  #sobre .skill-badge {
    margin: 3px 0;
    width: fit-content;
  }
}

/* Portfolio hover em dispositivos touch */
@media (hover: none) {
  .portfolio-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: auto;
  }
}

/* Ajustes para orientação landscape em mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 20px 0 !important;
    margin-top: 50px !important;
  }
  
  section {
    padding: 30px 0 !important;
  }
  
  .timeline-item {
    margin-bottom: 20px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .btn,
  .portfolio-overlay {
    display: none !important;
  }
  
  body {
    color: black !important;
    background: white !important;
  }
  
  .timeline-item {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

html {
  scroll-behavior: smooth;
}

/* Foco visível para acessibilidade */
a:focus, button:focus, .btn:focus {
  outline: 2px solid var(--destaque);
  outline-offset: 2px;
}

/* Lazy loading para imagens */
img.lazy {
  filter: blur(6px);
  transition: filter 0.3s;
}
img:not(.lazy) {
  filter: none;
}

/* Ajuste para overlay do portfólio em dispositivos touch */
@media (hover: none) and (pointer: coarse) {
  .portfolio-overlay {
    opacity: 1 !important;
    background: rgba(0,0,0,0.7);
  }
}

/* Atualize todos os elementos que usavam var(--destaque) (verde) para usar o azul neon da nova paleta (var(--destaque)) */

/* Badges, skills, botões, bordas, ícones, etc */
.badges .badge,
#sobre .skill-badge,
.portfolio-tags .tag,
.portfolio-overlay .btn,
.service-card:hover,
.timeline-item:hover,
.timeline-icon,
.swiper-pagination-bullet-active,
.bi,
.bi:hover {
    color: var(--primaria) !important;
    border-color: var(--destaque) !important;
    /* Para ícones, sobrescreva a cor */
}

#sobre .skill-badge {
    background: transparent;
    color: var(--destaque);
    border: 2px solid var(--destaque);
}
#sobre .skill-badge:hover {
    background: var(--destaque);
    color: var(--primaria);
}

.badges .badge {
    background-color: var(--destaque) !important;
    color: var(--primaria) !important;
    border: 1.5px solid var(--destaque) !important;
}

.portfolio-tags .tag {
    background: var(--destaque);
    color: var(--primaria);
}

.portfolio-overlay .btn {
    background-color: var(--destaque);
    color: var(--primaria);
}

.service-card:hover {
    border-color: var(--destaque);
    /* ...existing code... */
}

.timeline-item:hover {
    border-left-color: var(--destaque);
}

.timeline-icon {
    border: 2px solid var(--destaque);
    /* ...existing code... */
}

.swiper-pagination-bullet-active {
    background: var(--destaque) !important;
}

.bi {
    color: var(--destaque) !important;
}
.bi:hover {
    color: var(--destaque-hover) !important;
}

/* Ajuste para links e botões */
a, .btn-link {
    color: var(--destaque);
}
a:hover, .btn-link:hover {
    color: var(--destaque-hover);
}

/* Ajuste da borda da foto do Sobre para azul neon */
#sobre .img-fluid,
#sobre img.rounded-circle.img-fluid {
    background: linear-gradient(to right, var(--destaque), var(--destaque-hover));
    border-radius: 50% !important;
    padding: 6px;
    border: 3px solid var(--destaque);
    box-shadow: 0 0 0 4px var(--primaria);
    max-width: 260px;
    margin-bottom: 18px;
}

/* Ajuste do fundo dos ícones (timeline, social, etc) para azul tech */
.timeline-icon {
    background: var(--primaria);
    border: 2px solid var(--destaque);
    /* ...existing code... */
}

.timeline-icon img {
    background: transparent !important;
    /* ...existing code... */
}

/* Social icons: sem fundo e sem borda */
.d-flex.gap-3.mt-3 a,
.social-icons a {
    background: none !important;
    border: none !important;
    color: var(--destaque) !important;
    border-radius: 0;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: color 0.2s;
    box-shadow: none !important;
    padding: 0;
}

.d-flex.gap-3.mt-3 a:hover,
.social-icons a:hover {
    background: none !important;
    color: var(--destaque-hover) !important;
    border: none !important;
    box-shadow: none !important;
}

/* Hero/Início estilizado */
#inicio.hero {
  background: linear-gradient(135deg, var(--primaria) 60%, var(--secundaria) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

#inicio .display-3, #inicio .display-4 {
  color: var(--destaque);
  letter-spacing: 2px;
  text-shadow: 0 4px 32px rgba(100,255,218,0.12);
  animation: fadeInDown 1.2s cubic-bezier(.77,0,.18,1) both;
}

#inicio h2 {
  color: #8892b0;
  font-weight: 400;
  animation: fadeInUp 1.2s 0.2s both;
}

#inicio .lead {
  color: var(--texto-escuro);
  font-size: 1.3rem;
  animation: fadeInUp 1.2s 0.4s both;
}

#inicio .btn-outline-light {
  border-color: var(--destaque);
  color: var(--destaque);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
#inicio .btn-outline-light:hover {
  background: var(--destaque);
  color: var(--primaria);
}

#inicio .fs-2 i {
  color: var(--destaque);
  transition: color 0.2s;
}
#inicio .fs-2 i:hover {
  color: var(--destaque-hover);
}

/* Animações */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

/* JARVIS HERO EFFECT + ANIMATED BACKGROUND */
.jarvis-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, #112240 0%, #0a192f 80%);
  box-shadow: 0 0 80px 0 #00bfae33 inset;
}

/* Animated circuit lines background */
.jarvis-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 40%, rgba(100,255,218,0.10) 0%, transparent 70%);
  animation: none;
}

.jarvis-glow {
  color: var(--destaque);
  letter-spacing: 2px;
  text-shadow:
    0 0 12px #64ffda,
    0 0 32px #00bfae,
    0 0 2px #fff;
  animation: jarvis-glow 2.5s ease-in-out infinite alternate;
}

@keyframes jarvis-glow {
  from { text-shadow: 0 0 12px #64ffda, 0 0 32px #00bfae, 0 0 2px #fff; }
  to   { text-shadow: 0 0 32px #64ffda, 0 0 64px #00bfae, 0 0 8px #fff; }
}

.jarvis-sub {
  color: #7ee7e7;
  text-shadow: 0 0 8px #00bfae44;
  letter-spacing: 1px;
}

.jarvis-lead {
  color: #e6f1ff;
  text-shadow: 0 0 6px #00bfae22;
}

.jarvis-btn {
  border-color: var(--destaque);
  color: var(--destaque);
  font-weight: 600;
  background: rgba(10,25,47,0.2);
  box-shadow: 0 0 16px 0 #00bfae44;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.jarvis-btn:hover {
  background: var(--destaque);
  color: var(--primaria);
  box-shadow: 0 0 32px 0 #64ffda99;
}

.jarvis-icons a i {
  color: var(--destaque);
  text-shadow: 0 0 8px #00bfae66;
  transition: color 0.2s, text-shadow 0.2s;
}
.jarvis-icons a i:hover {
  color: var(--destaque-hover);
  text-shadow: 0 0 16px #00bfae;
}

/* Remover círculos e losangos decorativos */
.jarvis-circles,
.jarvis-circle,
.jarvis-circle1,
.jarvis-circle2,
.jarvis-circle3 {
  display: none !important;
}

/* Remover linhas de circuito do fundo animado */
.jarvis-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 40%, rgba(100,255,218,0.10) 0%, transparent 70%);
  animation: none;
}

/* Responsivo para hero */
@media (max-width: 768px) {
  .jarvis-hero {
    min-height: 60vh;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .jarvis-circle1 { width: 180px; height: 180px; left: -90px; top: -90px;}
  .jarvis-circle2 { width: 260px; height: 260px; left: -130px; top: -130px;}
  .jarvis-circle3 { width: 340px; height: 340px; left: -170px; top: -170px;}
}

/* Remover o core pulsante */
.jarvis-pulse-core { display: none !important; }

/* Matrix/cascata de números estilo algoritmo */
.jarvis-matrix {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.jarvis-matrix-canvas {
  width: 100vw;
  height: 100vh;
  display: block;
  position: absolute;
  top: 0; left: 0;
  opacity: 0.18;
  filter: blur(0.5px);
  pointer-events: none;
}

/* Card effects for valores-cards-container */
.valores-cards-container .valor-card {
  background: linear-gradient(145deg, #243b55, #141e30);
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9) translateY(50px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
  cursor: pointer;
}
.valores-cards-container .valor-card:hover {
  transform: scale(1.07) !important;
  box-shadow: 0 24px 48px rgba(0,255,195,0.14), 0 4px 12px rgba(0,0,0,0.20);
  background: linear-gradient(145deg, #00ffc3 10%, #243b55 90%);
  z-index: 2;
}
.valores-cards-container .valor-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
  transform: rotate(25deg);
  z-index: 0;
}
.valores-cards-container .card-content {
  position: relative;
  z-index: 1;
}
.valores-cards-container .valor-card .card-content h3 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #00ffc3;
  transition: color 0.3s;
}
.valores-cards-container .valor-card:hover .card-content h3 {
  color: #141e30;
}
.valores-cards-container .valor-card .card-content p {
  font-size: 0.95rem;
  color: #cfd8dc;
  line-height: 1.5;
  transition: color 0.3s;
}
.valores-cards-container .valor-card:hover .card-content p {
  color: #fff;
}

/* === SKILLS BADGE GLOW EFFECT === */
#sobre .skills-container {
  /* ...existing code... */
  position: relative;
  z-index: 1;
}

#sobre .skill-badge {
  position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 8px 18px;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: #00ffc3;
  border: 2px solid #00ffc3;
  box-shadow: 0 10px 40px rgba(0,255,195,0.08);
  overflow: hidden;
  cursor: pointer;
  transition: 
    color 0.2s,
    border 0.2s,
    background 0.2s,
    box-shadow 0.2s,
    transform 0.1s;
  z-index: 1;
}

#sobre .skill-badge .glow {
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(0,255,200,0.18), transparent 80%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: top 0.1s, left 0.1s, opacity 0.3s;
  z-index: 0;
}

#sobre .skill-badge:hover .glow {
  opacity: 1;
}

#sobre .skill-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
  background-image: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.07;
}

#sobre .skill-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(var(--angle, 135deg), rgba(255,255,255,0.12), rgba(255,255,255,0));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition: background 0.2s;
}

#sobre .skill-badge:active {
  transform: scale(0.97);
}

/* ===== NAVBAR HOVER EFFECT ===== */
.navbar-nav .nav-link {
  position: relative;
  color: var(--texto-escuro);
  transition: color 0.18s;
  z-index: 1;
  background: none;
  font-weight: 500;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--destaque);
}
.navbar-nav .nav-link::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--destaque), var(--destaque-hover));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.22s cubic-bezier(.77,0,.18,1);
  z-index: 0;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  transform: scaleX(1);
}

/* ===== NAVBAR ACTIVE SECTION INDICATOR ===== */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.active:focus {
  color: var(--destaque) !important;
  font-weight: 700;
}
.navbar-nav .nav-link.active::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--destaque), var(--destaque-hover));
  border-radius: 2px;
  transform: scaleX(1) !important;
  opacity: 1 !important;
  transition: none !important;
  z-index: 1;
  pointer-events: none;
}

/* Garante que apenas o ativo mostra a linha, mesmo se hover sair */
.navbar-nav .nav-link:not(.active)::after {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

/* === Estilo individual para cada card de cliente na sessão de depoimentos === */
.testimonials .row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  animation: testimonials-slide 24s linear infinite;
  width: max-content;
}
.testimonials .row:hover {
  animation-play-state: paused;
}
@keyframes testimonials-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials .col .testimonial {
  border-radius: 28px !important;
  box-shadow: 0 10px 40px -7px rgba(0,0,0,0.18), 0 2px 16px 0 rgba(100,255,218,0.10);
  padding: 38px 28px 32px 28px;
  margin: 0 8px;
  transition: 
    box-shadow 0.25s,
    border 0.25s,
    background 0.25s,
    transform 0.18s;
  border-width: 2.5px;
  border-style: solid;
  background-clip: padding-box;
  position: relative;
  overflow: visible;
}
.testimonials .col .testimonial:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 18px 56px -7px rgba(0,0,0,0.22), 0 4px 24px 0 rgba(100,255,218,0.18);
  z-index: 2;
}

.testimonials .col .testimonial .name {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  margin-top: 1.1rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonials .col .testimonial .stars {
  margin-bottom: 1.1rem;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
}

.testimonials .col .testimonial p {
  font-size: 1.08rem;
  color: #fff;
  background: rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 1.1rem 1.2rem 0.9rem 1.2rem;
  margin-bottom: 0;
  min-height: 70px;
  line-height: 1.6;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(0,255,195,0.04);
}

/* Card 1 */
.testimonials .col:nth-child(1) .testimonial,
.testimonials .col:nth-child(5) .testimonial {
  border-color: #64ffda;
  background: linear-gradient(135deg, #0a192f 70%, #64ffda 100%);
  box-shadow: 0 8px 32px -7px #64ffda99;
}
.testimonials .col:nth-child(1) .testimonial .name,
.testimonials .col:nth-child(5) .testimonial .name {
  color: #64ffda;
}
.testimonials .col:nth-child(1) .testimonial .stars i,
.testimonials .col:nth-child(5) .testimonial .stars i {
  color: #64ffda;
}

/* Card 2 */
.testimonials .col:nth-child(2) .testimonial,
.testimonials .col:nth-child(6) .testimonial {
  border-color: #00bfae;
  background: linear-gradient(135deg, #112240 60%, #00bfae 100%);
  box-shadow: 0 8px 32px -7px #00bfae99;
}
.testimonials .col:nth-child(2) .testimonial .name,
.testimonials .col:nth-child(6) .testimonial .name {
  color: #00bfae;
}
.testimonials .col:nth-child(2) .testimonial .stars i,
.testimonials .col:nth-child(6) .testimonial .stars i {
  color: #00bfae;
}

/* Card 3 */
.testimonials .col:nth-child(3) .testimonial,
.testimonials .col:nth-child(7) .testimonial {
  border-color: #f0932b;
  background: linear-gradient(135deg, #243b55 60%, #f0932b 100%);
  box-shadow: 0 8px 32px -7px #f0932b99;
}
.testimonials .col:nth-child(3) .testimonial .name,
.testimonials .col:nth-child(7) .testimonial .name {
  color: #f0932b;
}
.testimonials .col:nth-child(3) .testimonial .stars i,
.testimonials .col:nth-child(7) .testimonial .stars i {
  color: #f0932b;
}

/* Card 4 */
.testimonials .col:nth-child(4) .testimonial,
.testimonials .col:nth-child(8) .testimonial {
  border-color: #01b0f8;
  background: linear-gradient(135deg, #141e30 60%, #01b0f8 100%);
  box-shadow: 0 8px 32px -7px #01b0f899;
}
.testimonials .col:nth-child(4) .testimonial .name,
.testimonials .col:nth-child(8) .testimonial .name {
  color: #01b0f8;
}
.testimonials .col:nth-child(4) .testimonial .stars i,
.testimonials .col:nth-child(8) .testimonial .stars i {
  color: #01b0f8;
}

/* Responsivo */
@media screen and (max-width: 600px) {
  .testimonials .col .testimonial {
    min-width: 220px;
    max-width: 98vw;
    padding: 18px 4px 14px 4px;
    border-radius: 18px !important;
  }
}

/* Remover borda de seleção padrão do navegador */
*::selection {
  background: var(--destaque);
  color: var(--primaria);
}
*:focus {
  outline: none !important;
  box-shadow: none !important;
}