body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0f172a;
  color: #fff;
  text-align: center;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #020617;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo span {
  font-size: 18px;
  font-weight: bold;
}

.nav a {
  margin-left: 15px;
  color: #fff;
  text-decoration: none;
}
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px 8%;
  gap: 80px;
  text-align: left;
}
.img-logo-item-pp{
    width: 100px;
    height: 100px;
}

.hero-content {
  max-width: 560px;
  flex: 1;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0px 0px 18px 0;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.tag {
  display: inline-block;
  color: #CAF403;
  margin-bottom: 16px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.hero-image img {
  width: 720px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 255, 120, 0.25);
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #7A23CD;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}

.section {
  padding: 80px 20px;
}

.about-image {
  width: 1000px;
  max-width: 95%;
  border-radius: 20px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
}

.projects {
  padding: 90px 8%;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.45) 100%);
}

.projects-header {
  max-width: 800px;
  margin: 0 auto 44px;
}

.projects-header h2 {
  font-size: 36px;
  margin: 16px 0 12px;
}

.projects-header p {
  opacity: 0.85;
  line-height: 1.6;
}

.projects-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.projects-viewport {
  overflow: hidden;
  width: 100%;
  padding: 0px 12px 0px 0px;
}

.projects-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
  will-change: transform;
}


.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.project-tags span {
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 999px;
}


.chip-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;  
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.chip-purple {
  background: rgba(156, 59, 246, 0.15);
  color: #a693fd;  
  border: 1px solid rgba(156, 59, 246, 0.25);
}

.chip-green {
  background: rgba(59, 246, 90, 0.15);
  color: #93fda1;  
  border: 1px solid rgba(59, 246, 115, 0.25);
}




.project-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid rgba(168, 85, 247, 0.3);
  
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}





.project-image {
  height: 200px;
  overflow: hidden;
}
.project-card img {
  width: 100%;
  height: 200px; /* controla o tamanho visual */
  object-fit: cover; /* preenche tudo bonito */
  display: block;
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  margin: 0 0 10px;
}

.project-content p {
  margin: 0 0 14px;
  opacity: 0.88;
}

.project-content ul {
  margin: 0;
  padding-left: 18px;
  opacity: 0.86;
}

.carousel-btn {
  border: 1px solid rgba(168, 85, 247, 0.5);
  background: rgba(30, 41, 59, 0.9);
  color: #e2e8f0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  background: rgba(51, 65, 85, 0.95);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.gif-container {
  margin-top: 60px;
}

.gif-container img {
  width: 63vw;
  max-width: 90%;
  border-radius: 10px;
}

.footer {
  padding: 30px 20px;
  background: #020617;
}
.about {
  padding: 100px 8%;
}

.about-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-header h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 16px 0;
}

.about-header p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  align-items: center;
  gap: 40px;
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-item {
  background: rgba(30, 41, 59, 0.55);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 18px;
  padding: 24px;
  text-align: left;
}

.about-item h3 {
  color: #a3ff12;
}

.about-item p {
  margin: 0;
  line-height: 1.5;
  opacity: 0.85;
}

.about-center {
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 760px;
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(168, 85, 247, 0.25);
}
.about-icon {
  width: 40px;
  height: 40px;
  padding: 5px;
  background: rgba(168, 85, 247, 0.15);
  border-radius: 12px;
}
.about-item {
  transition: 0.3s;
}

.zoomable-image {
  cursor: zoom-in;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.zoomable-image:hover {
  transform: scale(1.03);
  filter: brightness(0.95);
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.image-modal.active {
  display: flex;
}

.image-modal-content {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 16px;
  object-fit: contain;
  cursor: zoom-out;
  animation: zoomIn 0.25s ease;
}

.image-modal-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: white;
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 980px) {
  .project-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 680px) {
  .projects-carousel {
    gap: 8px;
  }

  .project-card {
    flex-basis: 100%;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.corporate-experience {
  padding: 80px 20px;
  text-align: center;
}

.corporate-experience .container {
  max-width: 1100px;
  margin: 0 auto;
}

.corporate-experience h2 {
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
}

.corporate-experience p {
  max-width: 620px;
  margin: 0 auto 36px;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.7;
}

.corporate-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.corporate-logos img {
  max-width: 250px;
  max-height: 100px;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.corporate-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-4px);
}


.section-about-icon-title{
    display: flex; align-items: center; gap:12px; margin:5px 0;
    
}

.about-item:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.6);
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form {
  width: 100%;
  min-width: 280px;
  max-width: 600px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  transition: 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7c3aed;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  margin-top: 10px;
  align-self: flex-start;
  padding: 12px 28px;
  border-radius: 8px;
  align-self: stretch;

}
.contact-image {
  margin-top: 30px;
  width: 100%;
  max-width: 250px;
  border-radius: 20px;

  
}

.form-feedback {
  margin-top: 16px;
  font-size: 14px;
  display: none;
}

.form-feedback.success {
  color: #22c55e;
}

.form-feedback.error {
  color: #ef4444;
}

@media (max-width: 1000px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-item {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }
}
