@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
             background-color: #111827;
             color: #f3f4f6;
              max-width: 100%;
             overflow-x: hidden;
        }

        .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #10b981);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .skill-badge {
            transition: all 0.3s ease;
        }

        .skill-badge:hover {
            transform: scale(1.05);
        }

        #menu-toggle:checked + #menu {
            display: block;
        }
.custom-header {
  position: fixed;
  width: 100%;
  background-color: rgba(17, 24, 39, 0.9); /* bg-gray-900/90 */
  backdrop-filter: blur(4px); /* backdrop-blur-sm */
  z-index: 50;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-menu-button {
  display: none;
}

.mobile-menu-button button {
  color: #d1d5db;
  font-size: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.desktop-nav a,
.mobile-nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: #60a5fa; /* text-blue-400 */
}

.mobile-nav {
  display: none;
  padding-bottom: 1rem;
  margin-top: 1rem;
}

.mobile-nav a {
  display: block;
  padding: 0.5rem 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }
}
.hero-section {
  padding: 8rem 1.5rem 5rem;
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-size: 1.75rem;
  color: #60a5fa;
  margin-bottom: 1.5rem;
}

.hero-text p {
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 40rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #1e40af;
}

.btn-secondary {
  border: 1px solid #60a5fa;
  color: #60a5fa;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: rgba(96, 165, 250, 0.1);
}

.hero-image-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

.outer-circle {
  width: 20rem;
  height: 20rem;
  background: linear-gradient(to bottom right, #2563eb, #10b981);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-circle {
  width: 18rem;
  height: 18rem;
  background-color: #1f2937;
  border-radius: 9999px;
  overflow: hidden;
  border: 4px solid #374151;
  display: flex;
  align-items: center;
  justify-content: center;
}

.availability-tag {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  background-color: #1f2937;
  border: 1px solid #374151;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  font-size: 0.875rem;
  font-weight: 500;
}
.about-section {
  background-color: rgba(31, 41, 55, 0.5);
  padding: 5rem 1.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.about-text {
  flex: 1;
  padding-right: 2rem;
}

.about-text h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.about-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #f3f4f6;
  font-size: 0.95rem;
}

.about-icons i {
  color: #60a5fa;
  margin-right: 0.5rem;
}

.about-icons a {
  color: #60a5fa;
  text-decoration: none;
}

.about-icons a:hover {
  text-decoration: underline;
}

.about-card {
  flex: 1;
  background-color: #1f2937;
  border: 1px solid #374151;
  padding: 2rem;
  border-radius: 1rem;
}

.about-card h4 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}

.card-item {
  display: flex;
  margin-bottom: 2rem;

}

.icon {
  width: 3rem;
  height: 3rem;

  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;

}
@media (max-width: 480px) {
  .icon {
    width: 2.25rem;
    height: 2.25rem;
    margin-right: 0.75rem;
  }
}


.icon.blue {
  background-color: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
}

.icon.green {
    background-color: rgba(5, 150, 105, 0.2);
    color: #34d399;

}

.card-item h5 {
  font-weight: 500;


}

.card-item p {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-top: 0.25rem;

}
.skills-section {
  padding: 5rem 1.5rem;
}
.skills-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;

}
  .skills-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.skills-grid {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollCarousel 30s linear infinite;
}



.skill-card {
 min-width: 200px;
  flex: 0 0 auto;
  background-color: #1f2937;
  border: 1px solid #374151;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  color: #f3f4f6;
}
@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.icon-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.icon-circle.orange {
  background-color: rgba(234, 88, 12, 0.2);
  color: #f97316;
}

.bar {
  background-color: #374151;
  border-radius: 999px;
  height: 0.5rem;
  margin-top: 1rem;
  width: 100%;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
}

.orange-fill {
  background-color: #f97316;
}
.icon-circle.blue {
  background-color: rgba(37, 99, 235, 0.2); /* #2563eb */
  color: #3b82f6;
}
.bar-fill.blue-fill {
  background-color: #3b82f6;
}
.icon-circle.yellow {
  background-color: rgba(202, 138, 4, 0.2); /* #ca8a04 */
  color: #facc15;
}
.bar-fill.yellow-fill {
  background-color: #facc15;
}
.icon-circle.light-blue {
  background-color: rgba(96, 165, 250, 0.2); /* #60a5fa */
  color: #60a5fa;
}
.bar-fill.light-blue-fill {
  background-color: #60a5fa;
}
.icon-circle.mid-blue {
  background-color: rgba(59, 130, 246, 0.2); /* #3b82f6 */
  color: #3b82f6;
}
.bar-fill.mid-blue-fill {
  background-color: #3b82f6;
}
.icon-circle.deep-blue {
  background-color: rgba(30, 64, 175, 0.2); /* #1e40af */
  color: #2563eb;
}
.bar-fill.deep-blue-fill {
  background-color: #2563eb;
}
.icon-circle.dark-orange {
  background-color: rgba(234, 88, 12, 0.2); /* mesmo do HTML */
  color: #ea580c;
}
.bar-fill.dark-orange-fill {
  background-color: #ea580c;
}
.icon-circle.cyan {
  background-color: rgba(34, 211, 238, 0.2); /* #22d3ee */
  color: #22d3ee;
}
.bar-fill.cyan-fill {
  background-color: #22d3ee;
}
.icon-circle.node {
  background-color: rgba(139, 195, 74, 0.2); /* verde claro semitransparente */
  color: #8bc34a; /* verde principal do Node.js */
}

.bar-fill.node-fill {
  background-color: #8bc34a;
}
.icon-circle.ts {
  background-color: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.bar-fill.ts-fill {
  background-color: #3b82f6;
}

.icon-circle.mongo {
  background-color: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.bar-fill.mongo-fill {
  background-color: #22c55e;
}

.icon-circle.github {
  background-color: rgba(107, 114, 128, 0.2);
  color: #9ca3af;
}

.bar-fill.github-fill {
  background-color: #9ca3af;
}

.icon-circle.git {
  background-color: rgba(239, 68, 68, 0.2); /* vermelho claro */
  color: #ef4444;
}

.bar-fill.git-fill {
  background-color: #ef4444;
}
.icon-circle.green {
  background-color: rgba(16, 185, 129, 0.2); /* verde esmeralda */
  color: #10b981;
}
.bar-fill.green-fill {
  background-color: #10b981;
}
.icon-circle.java {
  background-color: rgba(176, 114, 25, 0.2); /* marrom claro translúcido */
  color: #b07219; /* marrom escuro */
}

.bar-fill.java-fill {
  background-color: #b07219;
}
.icon-circle.github {
  background-color: rgba(107, 114, 128, 0.2);
  color: #c9d1d9;
}

.bar-fill.github-fill {
  background-color: #6e7681;
}

/* Repita .icon-circle.blue, .green, etc. e suas .bar-fill conforme cada habilidade */
.projects-section {
  background-color: rgba(31, 41, 55, 0.5);
  padding: 5rem 1.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s;
 margin-bottom: 1.5rem;
}

.project-card:hover {
  transform: translateY(-5px);
}
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.253);
  color: #fff;
  display: flex;
  align-items: start;
  padding-top: 60px;
  justify-content: center;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* evita bloquear o clique */
  z-index: 10;
  font-size: 25px;
}

.project-card:hover .hover-overlay {
  opacity: 1;
}
.project-banner {
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}
.project-card img {
  border-radius: 1rem 1rem 0 0;
  width: 95%;
  height: 95%; /* ou height: auto; dependendo do layout */
  object-fit: cover; /* cobre todo o container, cortando se necessário */
  display: block; /* remove espaçamento indesejado */
}
.gradient-CodeConnect {
  background: linear-gradient(to top, #132E35, #81FE88);
}

.gradient-blue-green {
  background: linear-gradient(to right, #2563eb, #10b981);
}

.gradient-Fokus {
  background: linear-gradient(to bottom, #8B1FF8, #041832);
}
.gradient-helia {
  background: linear-gradient(to right, #10b981, #0797bb);
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.project-content p {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.tag-blue {
  background-color: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
}

.tag-blue-light {
  background-color: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
}

.tag-green {
  background-color: rgba(5, 150, 105, 0.2);
  color: #34d399;
}

.tag-purple {
  background-color: rgba(147, 51, 234, 0.2);
  color: #c084fc;
}

.tag-red {
  background-color: rgba(220, 38, 38, 0.2);
  color: #f87171;
}
.tag-yellow {
  background-color: rgba(234, 179, 8, 0.2);
  color: #facc15;
}
.tag-ts {
  background-color: rgba(59, 130, 246, 0.2); /* azul tipo TypeScript */
  color: #3b82f6; /* azul principal do TS */
}
.tag-java {
  background-color: rgba(255, 87, 34, 0.2); /* Laranja queimado */
  color: #ff5722;
}
.tag-postgres {
  background-color: rgba(37, 99, 235, 0.2); /* Azul escuro */
  color: #2563eb;
}
.tag-jdbc {
  background-color: rgba(16, 185, 129, 0.2); /* Verde suave */
  color: #10b981;
}




.repo-link {
  display: inline-flex;
  align-items: center;
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s;
}

.repo-link:hover {
  color: #93c5fd;
}

.repo-link i {
  margin-right: 0.5rem;
}

.repo-link.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.more-projects {
  text-align: center;
  margin-top: 3rem;
}

.more-projects p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.btn-github {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: #374151;
  border-radius: 0.5rem;
  color: #f3f4f6;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-github:hover {

  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}


.btn-github i {
  margin-right: 0.5rem;
}
.contact-section {
  padding: 5rem 1.5rem;
  width: 100%;
  overflow-x: hidden;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
}

.contact-box {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .contact-box {
    padding: 3rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-box,
.contact-info,
.contact-form {
  min-width: 0;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}


.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  word-break: break-word;
}

.icon {
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.icon.blue {
  color: #60a5fa;
}

.contact-item h4 {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item p {
  color: #9ca3af;
  text-decoration: none;
}

.contact-item a:hover {
  color: #60a5fa;
}

.resume {
  padding-top: 1.5rem;
}

.resume-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-secondary {
  background-color: #374151;
  color: #f3f4f6;
}

.btn-secondary:hover {

  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}


.btn-primary i,
.btn-secondary i {
  margin-right: 0.5rem;
}

/* Formulário */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  color: #f9fafb;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px #2563eb40;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
  width: 100%;
}

.btn-submit i {
  margin-right: 0.5rem;
}

.btn-submit:hover {
  background-color: #1d4ed8;
}
.footer {
  background-color: rgba(31, 41, 55, 0.8); /* bg-gray-800/80 */
  padding: 2rem 1.5rem;
  border-top: 1px solid #374151; /* border-gray-700 */
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-copy p {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #9ca3af;
  font-size: 1.25rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }

  .footer-copy {
    margin-bottom: 0;
  }
}
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: #2563eb; /* azul */
  color: white;
  border: none;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s, opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top:hover {
  background-color: #1d4ed8;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
