/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  line-height: 1.7;
}

/* ===== LINKS E BOTÕES ===== */
a, button {
  transition: all 0.3s ease;
}

a:hover, button:hover {
  opacity: 0.85;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 10%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0d0d0d;
}

header img {
  height: 85px;
}

.lang-switch button {
  background-color: transparent;
  border: 1px solid #ff6600;
  color: #ff6600;
  padding: 6px 14px;
  margin-left: 8px;
  border-radius: 6px;
  cursor: pointer;
}

.lang-switch button:hover {
  background-color: #ff6600;
  color: #000;
}

/* ===== SEÇÕES ===== */
section {
  padding: 90px 10%;
}

h1, h2, h3 {
  margin-bottom: 20px;
  font-weight: bold;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.4rem;
  color: #ff6600;
}

h3 {
  font-size: 1.5rem;
  color: #ff6600;
}

p {
  font-size: 1.15rem;
  max-width: 800px;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  flex: 1;
}

.hero .highlight {
  color: #ff6600;
}

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

.hero-image img {
  max-width: 650px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ===== SOBRE MIM ===== */
.about-card {
  display: flex; /* layout lado a lado (imagem + conteúdo) */
  flex-wrap: wrap; /* permite quebrar em telas menores */
  background-color: #121212; /* fundo mais claro para destacar */
  border-radius: 12px; /* cantos arredondados */
  overflow: hidden;
  margin: 60px auto; /* margem vertical menor */
  padding: 40px; /* espaço interno geral */
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.08); /* leve sombra laranja */
  max-width: 1300px; /* largura total reduzida */
  min-height: 300px; /* altura mínima reduzida */
  border: 1px solid #222; /* borda leve */
  align-items: center; /* centraliza verticalmente */
}

/* Coluna da imagem */
.about-card-image {
  flex: 1; /* ocupa menos espaço que o texto */
  max-width: 400px; /* largura máxima da imagem */
  min-width: 400px; /* evita que fique muito pequena */
  background-color: #111; /* fundo mais escuro atrás da imagem */
}

.about-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Coluna do conteúdo (texto) */
.about-card-content {
  flex: 2.5; /* ocupa mais espaço que a imagem */
  padding: 50px; /* espaçamento interno maior */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card-content .status {
  color: #ff6600;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* Nome grande */
.about-card-content h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

/* Subtítulo maior */
.about-card-content h4 {
  font-size: 1.5rem;
  color: #ccc;
  margin-bottom: 25px;
}

/* Parágrafo maior e mais espaçado */
.about-card-content p {
  font-size: 1.15rem;
  color: #bbb;
  margin-bottom: 35px;
  line-height: 1.8;
  max-width: 100%; /* ocupa mais espaço */
}

/* Botões */
.about-card-buttons {
  display: flex;
  gap: 18px;
}

.about-card-buttons a {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: #ff6600;
  color: white;
}

.btn-primary:hover {
  background-color: #ff8533;
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: transparent;
  color: #ff6600;
  border: 2px solid #ff6600;
}

.btn-secondary:hover {
  background-color: #ff6600;
  color: white;
  transform: translateY(-3px);
}

/* ===== HABILIDADES ===== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.skill-item {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid transparent;
}

.skill-item:hover {
  border-color: #ff6600;
}

@media (max-width: 768px) {
  .skills-section {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%; /* reduz padding lateral */
    gap: 30px; /* menor espaço entre texto e ícones */
  }

  .skills-text h2 {
    font-size: 2rem; /* título menor no mobile */
  }

  .skills-text p {
    font-size: 0.95rem; /* descrição menor */
    max-width: 90%;
    margin: 0 auto;
  }

  .skills-icons {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
  }

  .skill-icon {
    padding: 15px;
  }

  .skill-icon img {
    max-width: 100px; /* aumenta tamanho do ícone */
  }
}
/* ===== SERVIÇOS ===== */
.services {
  padding: 90px 10%;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid transparent;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-left: 4px solid #ff6600;
  transform: translateY(-5px);
}

.service-icon {
  max-width: 60px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

.service-card p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
  }
}

@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr; /* 1 coluna no mobile */
  }
}

/* ===== DEPOIMENTOS ===== */
.testimonials {
  padding: 80px 10%;
}

.testimonial-carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

.testimonial-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  min-width: 280px;
}

.testimonial-card:hover {
  border-color: #ff6600;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #ff6600;
}

.testimonial-card p {
  font-style: italic;
  color: #ccc;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  color: #ff6600;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #999;
}

.testimonial-controls {
  margin-top: 20px;
}

.testimonial-controls button {
  background-color: transparent;
  border: none;
  color: #ff6600;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.testimonial-controls button:hover {
  color: #ff8533;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}


/* ===== FOOTER ===== */
footer {
  background-color: #0d0d0d;
  padding-top: 50px;
  color: #ccc;
  border-top: 2px solid rgba(255, 102, 0, 0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  padding: 0 10% 50px;
  align-items: flex-start;
}

.footer-logo {
  max-width: 250px !important;
  width: 100% !important;
  height: auto !important;
  display: block;
}

.footer-col h3 {
  margin-bottom: 18px;
  color: #ff6600;
  font-size: 1.2rem;
  position: relative;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: #ff6600;
  margin-top: 5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #ff6600;
  transition: width 0.3s ease;
}

.footer-col a:hover {
  color: #ff6600;
}

.footer-col a:hover::after {
  width: 100%;
}

.footer-col img {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.footer-col a:hover img {
  transform: scale(1.15);
}

.footer-socials li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1f1f1f;
  padding: 20px 10%;
  font-size: 0.85rem;
  color: #aaa;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .about-card {
    padding-left: 30px;
    padding-right: 30px;
    min-height: auto;
  }
  .about-card-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero, .about-card {
    flex-direction: column;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-card-content {
    padding: 20px;
  }
  .about-card-buttons {
    justify-content: center;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto 15px;
  }
  .footer-col a {
    justify-content: center;
  }
  .footer-col h3::after {
    margin: 5px auto 0;
  }
}

/* ===== NOVA SEÇÃO DE HABILIDADES ===== */
.skills-section {
  display: flex;
  gap: 50px;
  padding: 80px 10%;
  flex-wrap: wrap;
  align-items: flex-start;
}

.skills-text {
  flex: 1;
  min-width: 280px;
}

.skills-text h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #ff6600;
}

.skills-text p {
  font-size: 1.05rem;
  color: #bbb;
  line-height: 1.6;
}

.skills-icons {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 20px;
}

.skill-icon {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.skill-icon img {
  max-width: 50px;
  height: auto;
}

.skill-icon:hover {
  border-color: #ff6600;
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .skills-section {
    flex-direction: column;
    text-align: center;
  }
  .skills-icons {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  }
}


.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0d0d0d;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background: linear-gradient(#0d0d0d, #0d0d0d) padding-box,
              linear-gradient(90deg, #ff6600, #ff00cc) border-box;
}

.testimonial-card h4 {
  margin: 0;
  color: #fff;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #ccc;
}


.testimonial-header {
  background: none !important;
}


/* === BARRA DE ROLAGEM LARANJA COM ESTILO MODERNO === */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0c0c0c;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6600, #ff8800);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff6600, #ff8800);
}


/* ===== CORREÇÃO DE SOBREPOSIÇÃO DOS DEPOIMENTOS ===== */
.testimonials,
.testimonial-carousel,
.testimonial-card {
  position: relative;
  z-index: 1;
}

/* ===== PÁGINA DE CONTATO ===== */
.contact-section {
  padding: 80px 10%;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header .contact-icon {
  width: 50px;
  margin-bottom: 15px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-form {
  flex: 1;
  background-color: #121212;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.1);
}

.contact-form label {
  color: #ff6600;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #333;
  border-radius: 6px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 1rem;
  margin-top: 6px;
  margin-bottom: 18px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6600;
  outline: none;
}

.contact-info {
  flex: 0.8;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.1);
}

.contact-info h3 {
  color: #ff6600;
  margin-bottom: 15px;
}

.contact-info ul {
  list-style: none;
  margin-bottom: 20px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bbb;
  margin-bottom: 12px;
}

.contact-socials {
  display: flex;
  gap: 12px;
}

.contact-socials img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.contact-socials img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}
