:root {
  --primary: #050816;
  --secondary: #0f172a;
  --third: #111827;
  --card: rgba(30, 41, 59, 0.88);
  --accent: #38bdf8;
  --text: #ffffff;
  --muted: #cbd5e1;
  --light-bg: #e5e7eb;
  --blue: #2563eb;
  --green: #22c55e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--primary);
  color: var(--text);
}

section {
  min-height: 100vh;
  padding: 90px 8% 45px;
  display: flex;
  flex-direction: column;
}

h2 {
  color: var(--accent);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 40px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 68px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  z-index: 999;
  background: transparent;
  transition: 0.3s;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
  width: 58px;
  height: auto;
  transition: 0.3s;
}

.navbar.scrolled .logo {
  filter: invert(1);
}

.menu {
  display: flex;
  align-items: center;
  gap: 52px;
  margin-left: 80px;
}

.menu a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.3s;
}

.navbar.scrolled .menu a {
  color: #000;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent);
  left: 0;
  bottom: -7px;
  transition: 0.3s;
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.menu a:hover,
.menu a.active {
  color: var(--accent);
}

#home {
  position: relative;
  justify-content: center;
  overflow: hidden;
}

.home-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/bg-home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 8, 22, 0.88),
    rgba(5, 8, 22, 0.62),
    rgba(5, 8, 22, 0.84)
  );
  z-index: 1;
}

.home-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.home-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin-bottom: 8px;
}

.home-content h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  margin-bottom: 18px;
  color: var(--text);
}

.home-content h2 span {
  color: var(--accent);
}

#typing-text::after {
  content: "|";
  margin-left: 4px;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.home-content p {
  max-width: 560px;
  font-size: 1rem;
  margin-bottom: 28px;
}

.home-buttons {
  display: flex;
  gap: 24px;
  margin-bottom: 25px;
}

.home-buttons a {
  width: 240px;
  padding: 14px;
  border-radius: 30px;
  text-align: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.home-buttons a:first-child {
  background: var(--accent);
  color: #020617;
}

.home-buttons a:hover {
  transform: translateY(-5px);
  filter: brightness(1.1);
}

.socials a {
  width: 52px;
  height: 52px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: var(--accent);
  font-size: 1.45rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.socials a:hover {
  background: var(--accent);
  color: #020617;
  transform: translateY(-7px);
}

#sobre {
  background: #ffffff;
  color: #000;
  align-items: center;
  text-align: center;
  padding-top: 90px;
}

.section-title {
  color: #000;
  text-align: center;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title span {
  color: var(--blue);
}

.section-subtitle {
  color: #374151;
  text-align: center;
  max-width: 760px;
  margin-bottom: 45px;
  font-size: 0.95rem;
}

.about-layout {
  width: 100%;
  max-width: 1160px;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 56px;
  align-items: center;
  justify-content: center;
}

.about-card {
  width: 390px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
  justify-self: start;
}

.about-card-image {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #0f172a, #38bdf8);
  overflow: hidden;
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  display: block;
}

.about-card-content {
  background: #ffffff;
  padding: 24px;
}

.about-card-content h3 {
  color: #000;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.about-card-content span {
  display: block;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 18px;
}

.about-card-content p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.45;
  font-family: Arial, Helvetica, sans-serif;
}

.about-card-content p + p {
  margin-top: 14px;
}

.experiencia-card {
  width: 100%;
  min-height: 462px;
  background: #ffffff;
  border-left: 8px solid var(--blue);
  border-right: 8px solid var(--blue);
  border-radius: 10px;
  padding: 34px 36px;
  text-align: left;
  justify-self: end;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
}

.experiencia-card h3 {
  color: #000;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.experiencia-card p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.62;
}

.experiencia-card p + p {
  margin-top: 16px;
}

#ferramentas {
  min-height: 620px;

  background-image: url("../assets/fundo1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;

  position: relative;
}

#ferramentas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

#ferramentas > * {
  position: relative;
  z-index: 2;
}

#ferramentas h2 {
  color: #ffffff;
  margin-bottom: 18px;
}

.tools-subtitle {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 36px;
  max-width: 760px;
}

.rewrite {
  display: inline-block;
  white-space: pre-wrap;
}

.rewrite::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: currentColor;
  vertical-align: -0.12em;
  opacity: 0;
}

.rewrite.is-typing::after {
  opacity: 1;
  animation: cursorBlink 0.75s steps(1) infinite;
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}

.skills-carousel {
  width: 100%;
  max-width: 1092px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.skills-window {
  width: 100%;
  max-width: 1092px;
  overflow: hidden;
  padding: 6px 0;
}

.skills-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transition: transform 0.75s ease-in-out;
}

.skill {
  flex: 0 0 352px;
  width: 352px;
  min-height: 200px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #111827;
  transition: 0.3s;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.skill i,
.skill img {
  width: 4.4rem;
  height: 4.4rem;
  font-size: 4.4rem;
  object-fit: contain;
  display: block;
}

.skill strong {
  color: #1f2937;
  font-size: 1.3rem;
  line-height: 1.2;
}

.skill:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

.skill-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.skill-dot {
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: 0.25s;
}

.skill-dot.active {
  background: #ffffff;
  transform: scale(1.35);
}

#projetos {
  background: #e5e7eb;
  color: #000;
  align-items: center;
}

#projetos h2 {
  color: #000;
  text-align: center;
  margin-bottom: 14px;
}

#projetos h2 span {
  color: var(--blue);
}

.project-heading-black {
  color: #000 !important;
}

.projects-subtitle {
  color: #374151;
  text-align: center;
  max-width: 620px;
  margin-bottom: 45px;
  font-size: 0.95rem;
}

.projects-grid {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-step-card {
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.project-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.project-image {
  height: 165px;
  background: linear-gradient(135deg, #0f172a, #38bdf8);
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.68), rgba(56, 189, 248, 0.45));
}

.project-image span {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.project-info {
  padding: 24px;
}

.project-info h3 {
  color: #000;
  margin-bottom: 14px;
}

.project-info p {
  color: #4b5563;
  font-size: 0.92rem;
}

.project-info a {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.project-budget-button {
  display: block !important;
  width: 100%;
  margin-top: 18px !important;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--blue);
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}

.project-budget-button:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
}

#contato {
  background: var(--light-bg);
  color: #000;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 45px;
  align-items: center;
}

.contact-left h2 {
  color: #000;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  margin-bottom: 35px;
}

.contact-left h2 span {
  color: var(--blue);
}

.contact-left p {
  color: #111827;
  max-width: 520px;
  margin-bottom: 20px;
}

.contact-line {
  width: 100%;
  max-width: 520px;
  height: 2px;
  background: var(--blue);
  margin: 20px 0 45px;
}

.contact-logo {
  width: 190px;
  display: block;
  margin: auto;
  filter: invert(1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  color: #000;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #000;
  font-size: 1rem;
  outline: none;
}

.contact-form textarea {
  height: 130px;
  resize: none;
}

.contact-form input.field-error,
.contact-form textarea.field-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

.field-star {
  color: #ef4444;
  opacity: 0;
  font-weight: 900;
}

.field-star.visible {
  opacity: 1;
}

.contact-form button,
.email-button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
}

.contact-form button:hover,
.email-button:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
}

footer {
  background: #0f172a;
  color: #fff;
}

.footer-content {
  padding: 55px 11%;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 55px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  width: 95px;
  margin-bottom: 28px;
}

.footer-brand p,
.footer-about p {
  color: #dbeafe;
  font-size: 0.95rem;
  max-width: 260px;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
}

.footer-content h3 {
  color: #22c55e;
  margin-bottom: 18px;
  font-size: 1rem;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-content a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-content i {
  width: 22px;
}

.footer-bottom {
  text-align: center;
  padding: 16px;
  font-size: 0.85rem;
  color: #94a3b8;
}

@media (max-width: 1100px) {
  .skills-window {
    max-width: 918px;
  }

  .skill {
    flex-basis: 294px;
    width: 294px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .about-card {
    justify-self: center;
  }

  .experiencia-card {
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .menu {
    gap: 16px;
    margin-left: 28px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .about-card {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
  }

  .experiencia-card {
    min-height: auto;
  }

  #contato,
  .form-row,
  .footer-content,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .contact-logo {
    margin: 30px 0;
  }

  .skills-window {
    max-width: 620px;
  }

  .skill {
    flex-basis: 301px;
    width: 301px;
  }
}

@media (max-width: 650px) {
  .navbar {
    padding: 0 4%;
  }

  .logo {
    width: 50px;
  }

  .menu a {
    font-size: 0.72rem;
  }

  .home-buttons {
    flex-direction: column;
  }

  .skills-window {
    max-width: calc(100vw - 70px);
  }

  .skill {
    flex-basis: calc(100vw - 70px);
    width: calc(100vw - 70px);
  }
}
.project-benefits {
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
}

.project-benefits li {
  color: #374151;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.project-benefits li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  margin-right: 8px;
}

#servicos {
  background: #ffffff;
  color: #000;
  align-items: center;
}

#servicos h2 {
  color: #000;
  text-align: center;
  margin-bottom: 14px;
}

.services-subtitle {
  color: #374151;
  text-align: center;
  max-width: 720px;
  margin-bottom: 45px;
  font-size: 0.98rem;
}

.services-grid {
  width: 100%;
  max-width: 1050px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #f8fafc;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.12);
}

.service-card i {
  color: var(--blue);
  font-size: 2rem;
  margin-bottom: 18px;
}

.service-card h3 {
  color: #111827;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.6;
}

.hire-card {
  width: 100%;
  max-width: 1050px;
  margin-top: 42px;
  padding: 34px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.hire-card h3 {
  color: #ffffff;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.hire-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.hire-list span {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hire-list span::before {
  content: "✓";
  color: #22c55e;
  font-weight: 900;
  margin-right: 6px;
}

.hire-list span::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.hire-list span:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 28px rgba(2, 6, 23, 0.24);
}

.hire-list span:hover::after {
  left: 130%;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hire-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .services-grid,
  .hire-list {
    grid-template-columns: 1fr;
  }

  .hire-card {
    padding: 26px 20px;
  }
}

/* Títulos principais sem efeito no hover */
.dev-title {
  position: relative;
  display: inline-block;
}

.dev-title::selection,
.dev-title span::selection {
  background: var(--blue);
  color: #ffffff;
}

/* Setas laterais do carrossel de tecnologias */
.skills-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.skill-arrow {
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.skill-arrow:hover {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(37, 99, 235, 0.75);
  transform: scale(1.12);
}

.skill-arrow:active {
  transform: scale(0.92);
}

.skill-arrow:focus-visible,
.skill-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 650px) {
  .dev-title::before,
  .dev-title::after {
    display: none;
  }

  .skills-navigation {
    gap: 12px;
  }

  .skill-arrow {
    font-size: 1.15rem;
    padding: 2px;
  }

  .skill-dots {
    gap: 12px;
  }
}

/* === Ajuste visual da seção Sobre Mim - versão revisada === */
#sobre {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding-top: 86px;
  padding-bottom: 80px;
}

#sobre .section-title {
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

#sobre .section-subtitle {
  margin-bottom: 38px;
}

.about-layout {
  max-width: 1080px;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.about-card {
  width: 300px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.about-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #e5e7eb;
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-card-content {
  padding: 22px;
}

.about-card-content .profile-label {
  display: inline-flex;
  width: auto;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-card-content h3 {
  font-size: 1.45rem;
  margin-bottom: 4px;
  color: #0f172a;
}

.about-card-content strong {
  display: block;
  color: var(--blue);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.about-card-content p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.62;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.about-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 0.78rem;
  font-weight: 700;
}

.experiencia-card {
  min-height: auto;
  border: 1px solid #dbeafe;
  border-left: 0;
  border-right: 0;
  border-radius: 24px;
  padding: 42px 46px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 32%),
    #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.experiencia-card h3 {
  color: #0f172a;
  font-size: 1.55rem;
  margin-bottom: 20px;
}

.experiencia-card h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 99px;
  background: var(--blue);
  margin-top: 12px;
}

.experiencia-card p {
  color: #334155;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 720px;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .about-card {
    width: 100%;
    max-width: 340px;
    justify-self: center;
  }

  .experiencia-card {
    padding: 30px 24px;
  }
}

/* === Refinos solicitados - Sobre Mim === */
.about-card-content .profile-label {
  display: none !important;
}

.about-card-content h3 {
  margin-top: 0;
}

.about-tags {
  display: none !important;
}

.about-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.about-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0b0b0b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.15rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.about-socials a:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.experiencia-card {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}
