@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0f;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
}

/* Logo com Gradiente Base */
.logo {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #00b3ff, #9b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  background-color: rgba(10, 10, 15, 0.5);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: #9b00ff;
  transition: width 0.3s ease-in-out;
}

.nav-menu a:hover {
  color: #fff;
  text-shadow: 0 0 5px #9b00ff;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #050a12, #162033 30%, #050a12);
  height: 100vh;
  padding: 6rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.4;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, #00b3ff, #9b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #ccc;
  line-height: 1.6;
}

/* BOTÕES RETANGULARES COM PONTAS ARREDONDADAS */
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 1px; /* ← alterado aqui */
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn.filled {
  background: linear-gradient(135deg, #00b3ff, #9b00ff);
  color: #fff;
  border: none;
  box-shadow: 0 0 10px #9b00ff88;
}

.btn.filled:hover {
  transform: scale(1.05);
}

.btn.outlined {
  border: 2px solid;
  border-image: linear-gradient(135deg, #00b3ff, #9b00ff) 1;
  color: #fff;
  background: transparent;
}

.btn.outlined:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.05);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #888;
  animation: bounce 2s infinite;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}


/* Seção de serviços */
.services {
  background: linear-gradient(135deg, #050a12 0%, #0d111a 40%, #0d111a 60%, #050a12 100%);
  padding: 6rem 2rem;
  text-align: center;
}

.services-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #bbb;
  margin-top: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid de cards */
.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}


.service-card {
  background-color: #0c0c12;
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #00b3ff, #9b00ff) 1;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  color: #bbb;
  width: 250px; /* largura fixa que permite layout horizontal */
  box-shadow: 0 0 20px rgba(155, 0, 255, 0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}



.about-section {
  background: linear-gradient(135deg, #050a12 0%, #0d111a 40%, #0d111a 60%, #050a12 100%);
  padding: 6rem 2rem;
  color: #fff;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Título à esquerda */

.about-title img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  filter: invert(1);
}

.about-title {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* centraliza horizontalmente */
  justify-content: center;
  text-align: center;
}

.about-title h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #00b3ff, #9b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-emphasis-color: transparent;
  margin-bottom: 1rem;
}

/* Card com conteúdo */
.Sobre-card {
  flex: 2;
  background-color: #0c0c12;
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #00b3ff, #9b00ff) 1;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  color: #fff;
  height: 350px;
  box-shadow: 0 0 20px rgba(155, 0, 255, 0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-align: center;
width: 100%;
}

.Sobre-card p {
  margin: 0;
  padding: 0 2rem;
  color: #ccc;
  line-height: 1.6;
}



.service-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #9b00ff;
}

.service-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.2);
}


.service-card p {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.4;
  margin-top: 0.3rem;
}

/* PORTFÓLIO COMPLETO */

.portfolio {
  background: linear-gradient(135deg, #050a12 0%, #0d111a 40%, #0d111a 60%, #050a12 100%);
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
}

.portfolio-header {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title.gradient-text {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #00b3ff, #9b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-emphasis-color: transparent;
}

.section-subtitle {
  color: #ccc;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Carrossel e estrutura */

.portfolio-carousel-wrapper {
  display: flex;
  justify-content: center;
  align-items: center; /* Ensure vertical centering if needed */
  margin-top: 3rem;
  position: relative;
  width: 100%;
  padding: 0 1rem; /* Add some padding for smaller screens */
  box-sizing: border-box;
}

.portfolio-carousel-3d {
  position: relative;
  width: 100%;
  max-width: 100%; /* or whatever fits your layout */
  min-height: 400px;
  margin: 0 auto;
  perspective: 1000px;
}

/* Cartões */

.portfolio-card {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}




.portfolio-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  background-color: #111;
  object-fit: contain;
}

.portfolio-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Tags */

.portfolio-tags {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portfolio-tags span {
  background: #9b00ff22;
  color: #c46dff;
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Estados do carrossel */

.portfolio-card.left-blur {
  transform: translateX(-200%) scale(0.9);
  opacity: 0.5;
  z-index: 0;
}

.portfolio-card.right-blur {
  transform: translateX(-100%) scale(0.9);
  opacity: 0.5;
  z-index: 0;
}

.portfolio-card.active {
  transform: translateX(100%) scale(1);
  opacity: 1;
  z-index: 1;
}

/* SECTION: Contato */

.contact-section {
  background: linear-gradient(to bottom, #030b1c, #000000);
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
}

.contact-header {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title.gradient-text {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #00b3ff, #9b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-emphasis-color: transparent;
}

.section-subtitle {
  color: #ccc;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Card Container */

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
  background: #0c0c12;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(155, 0, 255, 0.1);
}

/* Informações de Contato */

.contact-info {
  flex: 1;
  min-width: 260px;
  max-width: 300px;
  text-align: left;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-info li {
  margin-bottom: 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-info i {
  color: #9b00ff;
  font-size: 1.2rem;
}

/* Botões de Contato */

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-btn {
  display: inline-block;
  text-align: center;
  background: linear-gradient(to right, #00b3ff, #9b00ff);
  color: #fff;
  padding: 0.6rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: 500;
}

.contact-btn:hover {
  filter: brightness(1.1);
}

/* Formulário */

.contact-form {
  flex: 2;
  min-width: 300px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-form label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ccc;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  background: #12121a;
  border: 1px solid #2a2a3d;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.submit-btn {
  background: linear-gradient(to right, #00b3ff, #9b00ff);
  color: white;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  filter: brightness(1.1);
}

.footer {
  background: linear-gradient(to right, #0b0b13, #08080d);
  padding: 3rem 2rem 2rem;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-bottom{
  justify-content: center;
  text-align: center;
  margin-top: 10px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  border-bottom: 1px solid #1e1e28;
  padding-bottom: 2rem;
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #aaa;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-dashboard .dashboard-btn {
  display: inline-block;
  padding: 0.75rem 1.2rem;
  background: linear-gradient(135deg, #00b3ff, #9b00ff);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.footer-dashboard .dashboard-btn:hover {
  transform: scale(1.05);
}

.footer-dashboard i {
  margin-right: 0.5rem;
}


.portfolio-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  /* resto igual */
}

.portfolio-carousel-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  position: relative;
  width: 100%;
  overflow: hidden; /* importante para não vazar cards fora da tela */
}

.portfolio-carousel-3d {
  position: relative;
  width: 100%; /* ocupa a largura total da tela */
  max-width: 1200px; /* opcional para não ficar exagerado */
  height: auto;
  perspective: 1000px;
  min-height: 400px;
}

.portfolio-card {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) scale(0.8);
  width: 320px; /* largura real do card */
  background-color: #0c0c12;
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #00b3ff, #9b00ff) 1;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 0 12px rgba(155, 0, 255, 0.08);
  text-align: center;
  opacity: 0;
  filter: blur(4px);
  transition: all 0.6s ease;
  z-index: 0;
}

/* ==== IMPORTS E RESET ==== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0f;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==== HEADER ==== */
.logo {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #00b3ff, #9b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  background-color: rgba(10, 10, 15, 0.5);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: #9b00ff;
  transition: width 0.3s ease-in-out;
}

.nav-menu a:hover {
  color: #fff;
  text-shadow: 0 0 5px #9b00ff;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ==== HERO ==== */
.hero {
  background: linear-gradient(135deg, #050a12, #162033 30%, #050a12);
  height: 100vh;
  padding: 6rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.4;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, #00b3ff, #9b00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #ccc;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 0px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn.filled {
  background: linear-gradient(135deg, #00b3ff, #9b00ff);
  color: #fff;
  border: none;
  box-shadow: 0 0 10px #9b00ff88;
}

.btn.filled:hover,
.btn.outlined:hover {
  transform: scale(1.05);
}

.btn.outlined {
  border: 2px solid;
  border-image: linear-gradient(135deg, #00b3ff, #9b00ff) 1;
  color: #fff;
  background: transparent;
}

.btn.outlined:hover {
  background: rgba(255, 255, 255, 0.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #888;
  animation: bounce 2s infinite;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ==== SERVICES E PORTFOLIO ==== */
.portfolio-carousel-wrapper {
  position: relative; /* para posicionar os cards absolutos dentro */
  width: 100%;
  max-width: 1200px;
  height: 360px; /* altura fixa para evitar que o container colapse */
  margin: 3rem auto 0;
  overflow: visible; /* se quiser evitar cortes */
}

.portfolio-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(250px, 25vw, 320px); /* mínimo 250px, máximo 320px, escala com a tela */
  transform-origin: center center;
  opacity: 0;
  filter: blur(4px);
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
  /* centralizar vertical e horizontalmente */
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 0;
}

.portfolio-card.active {
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
}

.portfolio-card.left-blur {
  transform: translate(calc(-50% - 120%), -50%) scale(0.8);
  opacity: 0.5;
  z-index: 2;
}

.portfolio-card.right-blur {
  transform: translate(calc(-50% + 120%), -50%) scale(0.8);
  opacity: 0.5;
  z-index: 1;
}

/* ==== CONTATO ==== */
.contact-section {
  background: linear-gradient(to bottom, #030b1c, #000000);
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
  background: #0c0c12;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(155, 0, 255, 0.1);
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 260px;
  max-width: 480px;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  background: #12121a;
  border: 1px solid #2a2a3d;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.submit-btn {
  background: linear-gradient(to right, #00b3ff, #9b00ff);
  color: white;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  filter: brightness(1.1);
}

/* ==== FOOTER ==== */
.footer {
  background: linear-gradient(to right, #0b0b13, #08080d);
  padding: 3rem 2rem 2rem;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  border-bottom: 1px solid #1e1e28;
  padding-bottom: 2rem;
}

/* ==== RESPONSIVO ==== */
@media (max-width: 768px) {
  html {
    font-size: 90%;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #0c0c12;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .service-card,
  .portfolio-card {
    width: 100%;
    max-width: 90vw;
  }

  .contact-card {
    flex-direction: column;
    padding: 1.5rem;
  }

  .contact-form,
  .contact-info {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 85%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

.contact-success {
  text-align: center;
  padding: 2rem;
}

.success-title {
  color: #00ffcc;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.success-message {
  color: #ccc;
  font-size: 1rem;
}

.about-section {
  background: linear-gradient(135deg, #050a12 0%, #0d111a 40%, #0d111a 60%, #050a12 100%);
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  
}

.about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 320px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(155, 0, 255, 0.2);
}

.about-card h3 {
  color: #00b3ff;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.about-card p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
}

