/* ===== IMPORTS ===== */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap");

/* ===== VARIABLES ===== */
:root {
  /* Colors - APENAS AZUL CIANO */
  --primary-color: #00b0d0; /* Slightly less vibrant cyan */
  --secondary-color: #0050e0; /* Slightly less vibrant blue */
  --accent-color: #00b0d0; /* Matches primary */
  --bg-color: #0a0a0a;
  --bg-secondary: #111111;
  --bg_tertiary: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --border-color: #333333;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-secondary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --shadow-primary: 0 0 20px rgba(0, 176, 208, 0.3);
  --shadow-secondary: 0 0 20px rgba(0, 80, 224, 0.3);
  --shadow-accent: 0 0 20px rgba(0, 176, 208, 0.3);

  /* Typography */
  --font-primary: "Orbitron", monospace;
  --font-secondary: "Rajdhani", sans-serif;

  /* Sizes */
  --header-height: 80px;
  --container-width: 1200px;
  --border-radius: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 100%;
}

/* ===== PARTICLES BACKGROUND ===== */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* ===== LOADING SCREEN ===== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
}

.cyber-loader {
  width: 80px;
  height: 80px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  position: relative;
  margin: 0 auto 2rem;
  animation: rotate 2s linear infinite;
}

.cyber-loader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 2px solid var(--primary-color);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: rotate 1s linear infinite reverse;
}

.loader-text {
  font-family: var(--font-primary);
  color: var(--primary-color);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  transition: width 0.1s ease;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__title {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 1rem auto 0;
  text-align: center;
}

.section__line {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.section__line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-color);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 176, 208, 0.4);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--text-primary);
  box-shadow: var(--shadow-accent);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 0, 107, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent; /* Inicialmente transparente */
  backdrop-filter: blur(5px); /* Leve blur */
  border-bottom: none; /* Sem borda inicial */
  z-index: 1000;
  transition: background 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.9); /* Fundo semi-transparente ao rolar */
  border-bottom: 1px solid rgba(0, 176, 208, 0.2); /* Borda sutil ao rolar */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5); /* Sombra para destacar ao rolar */
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Alinha logo à esquerda e toggle à direita */
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.nav__logo {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 900;
  white-space: nowrap;
  position: relative;
  color: var(--text-primary);
}

/* Removendo as animações de glitch do logo */
.logo-glitch::before,
.logo-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: none; /* Garantir que não há animação */
  opacity: 0; /* Torna os pseudo-elementos invisíveis */
}

.logo-glitch::before {
  color: var(--secondary-color);
  z-index: -1;
}

.logo-glitch::after {
  color: var(--secondary-color);
  z-index: -2;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__toggle {
  display: none; /* Escondido por padrão em desktop */
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001; /* Garante que o toggle esteja acima do menu */
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav__close {
  display: none; /* Escondido por padrão em desktop */
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 1001; /* Garante que o close esteja acima do menu */
}

/* ===== HOME ===== */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.home__container {
  width: 100%;
}

.home__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
}

.home__data {
  animation: slideInLeft 1s ease;
}

.home__name {
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: white;
  background-clip: text;
  line-height: 1.2;
}

.name-part {
  display: block;
  animation: fadeInUp 1s ease 0.2s both;
}

.home__profession {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cursor {
  animation: blink 1s infinite;
  color: var(--primary-color);
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.home__description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 500px;
}

.home__buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.home__social {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.social__link {
  width: 50px;
  height: 50px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social__link:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.home__tech-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tech-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}

.tech-icon:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.home__image {
  display: flex;
  justify-content: center;
  animation: slideInRight 1s ease;
}

.image-container {
  position: relative;
  width: 450px;
  height: 490px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 176, 208, 0.2);
  box-shadow: 0 0 30px rgba(0, 176, 208, 0.2);
}

.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
  border-radius: 20px 0 0 20px;
  z-index: 1;
}

.home__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-element:nth-child(1) {
  top: 20%;
  right: -20px;
}

.floating-element:nth-child(2) {
  top: 50%;
  left: -20px;
}

.floating-element:nth-child(3) {
  bottom: 20%;
  right: -20px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ===== ABOUT/MINHA MARCA - MELHORADA ===== */
.about__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.about__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text {
  text-align: left;
}

.brand__header {
  margin-bottom: 2rem;
}

.about__subtitle {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.brand__tagline {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}

.brand__tagline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
}

.about__description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.highlight__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.highlight__item:hover {
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.highlight__item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.highlight__item span {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 176, 208, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.about__image {
  display: flex;
  justify-content: center;
}

.image-frame {
  position: relative;
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 176, 208, 0.2);
  box-shadow: 0 0 20px rgba(0, 176, 208, 0.1);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
  border-radius: 20px 0 0 20px;
  z-index: 1;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.brand__elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.brand__element {
  position: absolute;
  width: 35px;
  height: 35px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  animation: float 4s ease-in-out infinite;
}

.brand__element:nth-child(1) {
  top: 15%;
  right: -15px;
  animation-delay: 0s;
}

.brand__element:nth-child(2) {
  top: 45%;
  left: -15px;
  animation-delay: 1s;
}

.brand__element:nth-child(3) {
  bottom: 15%;
  right: -15px;
  animation-delay: 2s;
}

/* ===== SERVICES ===== */
.services__intro {
  text-align: center;
  margin-bottom: 4rem;
}

.services__description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.services__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service__card {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service__card.featured {
  position: relative;
  border: 2px solid var(--primary-color);
  transform: scale(1.02);
}

.service__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 176, 208, 0.1), transparent);
  transition: left 0.5s ease;
}

.service__card:hover::before {
  left: 100%;
}

.service__card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
}

.service__badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--bg-color);
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service__card:hover .service__icon {
  transform: scale(1.1) rotate(5deg);
}

.service__title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service__description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service__features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.service__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 176, 208, 0.1);
}

.service__features li:last-child {
  border-bottom: none;
}

.service__features i {
  color: var(--primary-color);
  font-size: 0.9rem;
  width: 16px;
}

.services__guarantee {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.services__guarantee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.guarantee__content {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
}

.guarantee__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.guarantee__text h3 {
  font-family: var(--font-primary);
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.guarantee__text p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== EDUCATION ===== */
.education__container {
  max-width: 900px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 2rem;
}

.timeline__item.active .timeline__marker {
  background: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-color);
  animation: pulse 2s infinite;
}

.timeline__item.completed .timeline__marker {
  background: #00ff88;
  box-shadow: 0 0 15px #00ff88;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.timeline__marker {
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 25px;
  height: 25px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 4px solid var(--bg-color);
  box-shadow: var(--shadow-primary);
  transition: transform 0.3s ease;
  z-index: 2;
}

.marker__pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 33px;
  height: 33px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.timeline__item:hover .timeline__marker {
  transform: scale(1.2);
}

.timeline__content {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.timeline__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 176, 208, 0.05), transparent);
  transition: left 0.5s ease;
}

.timeline__content:hover::before {
  left: 100%;
}

.timeline__content:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
  transform: translateX(10px);
}

.timeline__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.timeline__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bg-color);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 176, 208, 0.4);
}

.timeline__info {
  flex: 1;
}

.timeline__date {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.timeline__status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.timeline__status:not(.completed) {
  background: rgba(255, 170, 0, 0.1);
  color: #ffaa00;
  border: 1px solid #ffaa00;
}

.timeline__status.completed {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  border: 1px solid #00ff88;
}

.timeline__title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  color: var(--text-primary);
}

.timeline__company {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.timeline__description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.timeline__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.skill-tag {
  padding: 0.4rem 1rem;
  background: rgba(0, 176, 208, 0.1);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: var(--font-primary);
  transition: var(--transition);
}

.skill-tag:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  transform: translateY(-2px);
}

.timeline__achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-tertiary);
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.achievement i {
  color: #ffd700;
  font-size: 0.9rem;
}

.achievement span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ===== SKILLS ===== */
.skills__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
}

.skills__category {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.skills__category:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
}

.category__title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category__title i {
  font-size: 2rem;
}

.skills__grid {
  display: grid;
  gap: 1.5rem;
}

.skill__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.skill__item:hover {
  transform: translateX(10px);
  background: rgba(0, 176, 208, 0.1);
}

.skill__icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--bg-color);
  flex-shrink: 0;
}

.skill__info {
  flex: 1;
}

.skill__info h4 {
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.skill__bar {
  width: 100%;
  margin-bottom: 0.5rem;
}

/* Substituindo barras de progresso por níveis de habilidade */
.skill__level {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

.skill__level.expert {
  background: linear-gradient(135deg, #00d4ff, #0066ff);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.skill__level.advanced {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.skill__level.intermediate {
  background: linear-gradient(135deg, #ffaa00, #ff8800);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
}

.skill__level.beginner {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* ===== TOOLS AND WORKFLOW ===== */
.tools-workflow__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
}

.workflow__category {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.workflow__category:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
}

.tools__grid {
  display: grid;
  gap: 1.5rem;
}

.tool__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-tertiary);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.tool__item:hover {
  transform: translateY(-5px);
  background: rgba(0, 176, 208, 0.1);
}

.tool__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--bg-color);
  flex-shrink: 0;
}

.tool__info h4 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.tool__info p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS - MELHORADA ===== */
.testimonials__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial__card {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 176, 208, 0.05), transparent);
  transition: left 0.5s ease;
}

.testimonial__card:hover::before {
  left: 100%;
}

.testimonial__card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial__avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.testimonial__info {
  flex: 1;
}

.testimonial__name {
  font-family: var(--font-primary);
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.testimonial__role {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.testimonial__rating {
  display: flex;
  gap: 0.2rem;
  color: #ffd700;
  font-size: 0.9rem;
}

.testimonial__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding-left: 1rem;
}

.testimonial__quote::before {
  content: """;
  font-family: var(--font-primary);
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  left: -0.5rem;
  top: -1rem;
  opacity: 0.3;
}

.testimonial__project {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.testimonial__project i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.testimonial__project span {
  color: var(--text-secondary);
}

/* ===== PROJECTS - MELHORADA COM 10 PROJETOS ===== */
.projects__filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter__btn {
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 25px;
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filter__btn:hover,
.filter__btn.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.projects__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project__card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  perspective: 1000px;
}

.project__card:hover {
  transform: translateY(-10px) rotateY(2deg);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
}

.project__image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.project__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.project__card:hover .project__overlay {
  opacity: 1;
}

.project__card:hover .project__image img {
  transform: scale(1.1);
}

.project__links {
  display: flex;
  gap: 1rem;
}

.project__link {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.project__link:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 176, 208, 0.4);
}

.project__content {
  padding: 2rem;
}

.project__category {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.project__title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.project__description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  padding: 0.3rem 0.8rem;
  background: rgba(0, 176, 208, 0.1);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: var(--font-primary);
  transition: var(--transition);
}

.tech-tag:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  transform: translateY(-2px);
}

.project__features,
.project__stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.feature,
.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.feature i,
.stat i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.feature span,
.stat span {
  color: var(--text-secondary);
}

.project__date {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

.projects__button {
  text-align: center;
}

/* ===== CONTACT ===== */
.contact__intro {
  text-align: center;
  margin-bottom: 4rem;
}

.contact__intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info {
  display: grid;
  gap: 2rem;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact__card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
  transform: translateX(10px);
}

.contact__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bg-color);
}

.contact__details h3 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact__details p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact__link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact__link:hover {
  color: var(--accent-color);
}

.copy-email-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.copy-email-btn:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  box-shadow: var(--shadow-primary);
}

.contact__social {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  text-align: center;
}

.contact__social h3 {
  font-family: var(--font-primary);
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.social__links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social__link {
  width: 50px;
  height: 50px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social__link:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.contact__form {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.form__group {
  position: relative;
  margin-bottom: 2rem;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-secondary);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
  border-bottom-color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 176, 208, 0.2);
}

.form__group label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  letter-spacing: 1px;
  pointer-events: none;
  transition: var(--transition);
}

.form__group input:focus ~ label,
.form__group textarea:focus ~ label,
.form__group input:not(:placeholder-shown):valid ~ label,
.form__group textarea:not(:placeholder-shown):valid ~ label {
  top: -0.5rem;
  font-size: 0.75rem;
  color: var(--primary-color);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
}

.footer__content {
  text-align: center;
  margin-bottom: 2rem;
}

.footer__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer__section h3 {
  font-family: var(--font-primary);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer__section p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__logo {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--primary-color);
}

.footer__text {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer__link {
  width: 50px;
  height: 50px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer__link:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

/* ===== VLIBRAS CUSTOMIZATION ===== */
[vw] {
  z-index: 9998 !important;
}

[vw-access-button] {
  background: var(--gradient-primary) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-primary) !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section__title {
    font-size: 2.5rem;
  }

  .home__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    min-height: auto;
    padding-top: 2rem;
  }

  .home__data {
    order: 2;
  }

  .home__image {
    order: 1;
    margin-bottom: 2rem;
  }

  .home__name {
    font-size: 3rem;
  }

  .home__profession {
    font-size: 1.3rem;
  }

  .home__buttons,
  .home__social,
  .home__tech-icons {
    justify-content: center;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__text {
    text-align: center;
  }

  .about__image {
    order: -1;
    margin-bottom: 2rem;
  }

  .about__stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-content: center;
  }

  .about__highlights {
    grid-template-columns: 1fr;
  }

  .services__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .guarantee__content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .skills__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .tools-workflow__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .contact__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testimonials__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .projects__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 90%;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 2.5rem;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__close {
    display: block;
  }

  .section {
    padding: 4rem 0;
  }

  .section__title {
    font-size: 2rem;
  }

  .home__name {
    font-size: 2.8rem;
  }

  .home__profession {
    font-size: 1.2rem;
  }

  .home__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .image-container {
    width: 280px;
    height: 350px;
  }

  .floating-elements {
    display: none;
  }

  .about__stats {
    grid-template-columns: 1fr;
  }

  .timeline__header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .timeline__icon {
    margin-bottom: 0.5rem;
  }

  .skills__container {
    grid-template-columns: 1fr;
  }

  .tools-workflow__container {
    grid-template-columns: 1fr;
  }

  .testimonials__container {
    grid-template-columns: 1fr;
  }

  .projects__container {
    grid-template-columns: 1fr;
  }

  .projects__filters {
    gap: 0.5rem;
  }

  .filter__btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .home__name {
    font-size: 2.2rem;
  }

  .home__profession {
    font-size: 1rem;
  }

  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }

  .image-container {
    width: 250px;
    height: 320px;
  }

  .service__card,
  .testimonial__card,
  .project__card {
    padding: 1.5rem;
  }

  .timeline__content {
    padding: 1.5rem;
  }
}
