  @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
  /* ===== RESET & BASE ===== */
  *{box-sizing:border-box;margin:0;padding:0}
  html,body{height:100%}
  body{
    font-family: "Inter", system-ui, -apple-system, "Poppins", Arial;
    color:#222;
    background: #d8d0f375;
    overflow-x:hidden; /* evita falha lateral do background */
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }
  .container{max-width:1300px;margin:0 auto;padding:0 20px;}


  /* ===== HAMBURGUER (discreto - glass) ===== */
  .hamburger {
    position:fixed;
    top:20px;
    right:20px;
    width:42px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(255, 255, 255, 0.007);
    backdrop-filter: blur(5px);
    border-radius:5px;
    z-index:1100;
    cursor:pointer;
  }
  .hamburger i{color:#071422; font-size:20px;}

  /* ===== SIDEBAR GLASS ===== */
  .sidebar {
    position:fixed;
    top:0;
    right:-400px;
    width:300px;
    height:100vh;
    padding:34px 28px;
    background: #071422f6;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left:1px solid rgba(255,255,255,0.35);
    transition: right .38s ease;
    z-index:1200;
  }
  .sidebar.open { right:0;}
  .sidebar .close {
    position:absolute; top:18px; right:18px;
    font-size:28px; cursor:pointer;
    color: #b2a2fc;
  }
  .sidebar .profile {
    display:flex; flex-direction: column; gap:14px; align-items:center; margin-bottom:18px; text-align: center;
  }
  .sidebar .profile img {
    height:90px; border-radius:12px; object-fit:cover;
    border:1px solid rgba(0,0,0,0.06);
  }
  .sidebar h3{font-size:18px;margin-bottom:6px;color:#b2a2fc;}
  .sidebar p{font-size:14px;color:#e7e7e7;line-height:1.4;margin-bottom:10px;}
  .sidebar strong {color: #d0c7f7;}
  .sidebar a.linkedin{
    display:inline-block;margin-top:8px;padding:8px 12px;border-radius:10px;
    background:#b2a2fc49;color:#e7e7e7;font-weight:700;text-decoration:none;
  }

  .my-name {
    margin-bottom: .5rem!important;
  }

  /* ===== HERO (layout anterior) ===== */
.hero {
  position: relative;
  background: radial-gradient(circle at 20% 18%, rgba(78, 70, 94, 0.438)0 rgba(76, 71, 90, 0.534)19)35 rgba(65, 59, 73, 0.486)53 100%;
  overflow: hidden;
  animation: bgPulse 10s ease-in-out infinite alternate; /* fundo pulsando */
}

/* blobs abstratos */
.hero::before {
  content: "";
  position: absolute;
  left: -12%;
  top: -20%;
  width: 500px;
  height: 500px;
  background: #bcb4daa6;        /* mais vivo */
  border-radius: 100%;

  filter: blur(2px);
  pointer-events: none;
  animation: floatBlob1 12s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -10%;
  width: 500px;
  height: 500px;
  background: #957cf0a6;        /* mais vivo */

  border-radius: 100%;
  filter: blur(2px);
  pointer-events: none;
  animation: floatBlob2 15s ease-in-out infinite alternate;
}

/* ANIMAÇÕES */
@keyframes floatBlob1 {
  0%   { transform: translate(0,0) scale(1); opacity:0.18; }
  50%  { transform: translate(40px,60px) scale(1.15); opacity:0.26; }
  100% { transform: translate(-20px,-30px) scale(1.05); opacity:0.21; }
}

@keyframes floatBlob2 {
  0%   { transform: translate(0,0) scale(1); opacity:0.14; }
  50%  { transform: translate(-50px,-40px) scale(1.22); opacity:0.22; }
  100% { transform: translate(30px,40px) scale(1.08); opacity:0.18; }
}

@keyframes bgPulse {
  0%   { filter: brightness(1) saturate(1); }
  50%  { filter: brightness(1.12) saturate(1.25); }
  100% { filter: brightness(1) saturate(1); }
}

/* hero section */
.hero{
  min-height: 100vh; /* sempre ocupa 100% da tela */
  display: flex;
  align-items: center; /* centraliza tudo verticalmente */
  background-color: #e7d5f8;
}

/* hero grid (texto + imagem) */
.hero .hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 20px 110px 20px;
  background-repeat: no-repeat;
}

/* textos */
.hero .content h1{
  font-size: 46px;
  color: #071422;
  margin-bottom: 1rem;
  line-height: 1.03;
}
.hero .content p{
  font-size: 20px;
  color: #093044;
  margin-bottom: 24px;
  max-width: 550px;
}

.hero .content .cta{
  display: inline-block;
  padding: 1rem 4rem;
  border-radius: 50px;
  background: #b2a2fc; /* cor atual */
  color: #071422;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-size: 18px;

  /* efeitos sutis */
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 0 0 rgba(178,162,252,0.45);
}

/* Hover com roxo mais quente */
.hero .content .cta:hover{
  background: #c87bff;           /* tom mais quente e vibrante */
  transform: translateY(-3px);   /* leve elevação */
  box-shadow: 0 8px 22px rgba(200,123,255,0.35);
}

/* Efeito pulsar suave contínuo */
.hero .content .cta:active{
  transform: scale(0.96);
}
/* imagem */
.hero .hero-image{
  width: 100%;
  height: 100%;
  min-height: 490px; /* altura mínima */
  border-radius: 180px 180px 180px 0;
  background: linear-gradient(180deg, rgba(64, 32, 122, 0.123), rgba(60, 48, 126, 0.137)),
              url('../assets/images/perfil-hero.png') center/cover;
  /*box-shadow: 0 10px 30px rgba(7,10,25,0.06);*/
}

  /* small spacing under hero */
  .spacer { height:3px; background-color: #c87bff1f;}

.projects {
  max-width:1300px;
  margin:0 auto;
  padding: 5.5rem 0 4rem 0;
}

/* Título das sessões */
.projects-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #071422;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

/* animação do h2 */
.projects h2 {
  text-align: left;
  font-size: 32px;
  color: #071422;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.projects h2.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* grid principal (uma coluna) */
.projects-grid.principal {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
}

/* grid secundário (3 colunas) */
.projects-grid.secundario {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 3rem;
  /*padding-bottom: 3rem;
  border-bottom: 1px solid #b2a2fc56;*/
}

/* cards */
.case {
  border-radius:14px;
  overflow:hidden;
  height: 425px;
  cursor:pointer;
  /*background:#111;*/
  position:relative;
  transition: transform .28s, box-shadow .28s;
}

.principal {
  background: #F3F5FD;
  padding: 2.25rem;
  border-radius: 6px;
  
}

.case-principal {
  height:350px;
}

.case img {
  width:100%;
 /* height:100%;*/
  object-fit:cover;
  display:block;
  transition: transform .45s;
}

.case:hover {
  transform: translateY(-8px);
  box-shadow: 0 5px 15px rgba(7, 10, 25, 0.212);
}

.case:hover img {
  transform: scale(1.06);
}

.case .label {
  position:absolute;
  left:18px;
  bottom:18px;
  color:#fff;
  font-weight:700;
  background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0, 0, 0, 0.411));
  padding:10px 14px;
  border-radius:5px;
}

.texto-case-principal {
  height: 100%;
}

.texto-case-principal h4 {
  color: #6e5fb2bb;
  font-size: 20px;
  margin-top: 1rem;
  font-weight: 600;
}

.texto-case-principal p {
  font-size: 1rem;
  line-height: 1.65rem;
  margin: 1.5rem 0 2rem 0;
  color: #093044;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  color: #071422;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin: 1.5rem 0 2rem;
}


/* LINHA SOMENTE À DIREITA */
.section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #b2a2fc42;
  margin-left: 15px;
}

/* Ícone */
.section-title i {
  font-size: 20px;
  color: #071422;
}

.dev {
  background: linear-gradient(135deg,#cdddf318, #d8d0f356);
  padding: 4rem;
}

  /* ===== SKILLS (fundo preto, antes do footer) ===== */
  .skills {
    background:#071422; color:#fff; padding: 6rem 0 9rem ;
  }
  .skills .inner {
    max-width:1300px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:30px;
  }
  .skills h3 { color:#b2a2fc; margin-bottom:12px; font-size:18px; }
  .skills p { opacity:0.92; line-height:1.6; font-size:15px; }

  .infos {
    padding: 1.5rem 0;
  }

  .infos a.linkedin {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .infos a.linkedin .bi-linkedin {
    margin-right: .5rem;
  }

  .infos p {
    font-size: 16px;
  }

  /* ===== BOTÃO FLUTUANTE ===== */
.float-cv {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 1300;
  background: #b2a2fc;
  color: #071422;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;

  /* sombra base */
  box-shadow: 0 12px 40px rgba(178,162,252,0.28);

  /* animação pulsar */
   animation: pulseGlow 8s infinite;
}


/* Hover */
.float-cv:hover {
  background: #c87bff; /* tom mais quente como o CTA */
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(200,123,255,0.40);
}

/* Ao clicar */
.float-cv:active {
  transform: scale(0.94);
}



.skills ul {
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    color: #e7e7e7;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    border: .02rem solid #b2a2fc;
    border-radius: 20px 20px 20px 0;
}

.skills ul li {
    padding-bottom: .5rem;
    list-style-image: url('../assets/images/seta-roxa.svg');
}

@keyframes pulseGlow {

  0%{
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(200,123,255,0.6),
      0 0 20px rgba(200,123,255,0.4);
  }

  50%{
    transform: scale(1);
    box-shadow:
      0 0 0 14px rgba(200,123,255,0),
      0 0 35px rgba(200,123,255,0.7);
  }

  100%{
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(200,123,255,0),
      0 0 20px rgba(200,123,255,0.4);
  }

}

/* brilho suave */
@keyframes pulseGray {
  0%, 100% { box-shadow: 0 0 0 rgba(200,123,255,0.0); }
  50% { box-shadow: 0 0 18px rgba(200,123,255,0.25); }
}

.container .fa-desktop{
 margin-right: .5rem ;
 background-color: #b2a2fc42;
 padding: 1.2rem 1rem;
 border-radius: 15px 15px 15px 0;
}
  /* ===== FOOTER ===== */
  footer {
    padding: 2.5rem 0; text-align:center; color:#fff; background:#071422f6;
  }

  footer a {
    color: #ccc;
    text-decoration: none;
  }

.fa-pen-nib,
.fa-bezier-curve,
.fa-layer-group {
    font-size: 22px;
    padding-right: .75rem;
}

  /* ===== RESPONSIVE ===== */
  @media (max-width:1024px){
    .projects-grid { grid-template-columns:1fr 1fr; }
    .skills .inner { grid-template-columns:1fr 1fr; }
  }
  @media (max-width:680px){
    .hamburger{ top:14px; right:12px; width:40px; height:36px;}
    .sidebar{ width:90vw; right:-100vw; }
    .sidebar.open{ right:0; }
    .projects-grid{ grid-template-columns:1fr; }
    .skills .inner{ grid-template-columns:1fr; text-align:left; padding: 1rem}
    .skills ul {
        width: 100%;
    }
    .projects-grid.secundario {
      gap: 0;
    }
    .case {
      border-radius: 15px;
      height: 225px;
    }

    .hero .hero-image {
      min-height: 20rem;
       border-radius: 80px 80px 80px 0;
    }

    .container .fa-desktop, .section-title i, .section-title::after  {
      display: none;
    }

    .projects {
      padding: 2rem 0;
    }

    .hero .content h1 {
      font-size: 1.95rem;
    }
    

    .projects h2 {
      font-size: 1.5rem;
      margin-top: 1rem;
    }

    .section-title {
      font-size: 1.2rem;
      margin: 1.5rem 0 .7rem;
    }

    .skills {
      padding-top: 22px;
    }

    footer {
      padding: 2rem 0 6.5rem 0;
    }
  }

  .banner-rodape img {
    width: 100%;
    margin-bottom: -3.5rem;
  }

  .infos .fa-pen-nib {
    padding-right: 0;
  }

  @media(max-width: 768px){
  .hero .hero-grid{
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 50px;
    gap: 60px;
  }

  .card-content h2 {
    margin-top: 0!important;
  }

  .card-image {
    height: 200px !important;
  }

  .hero .content p{
    margin: 0 auto 22px auto;
    font-size: .9rem;
  }

  .portfolio-box {
    margin: 1.5rem 0!important;
  }

  .scroll-mouse {
    display: none;
  }

  .footer-container {
  max-width: 100%;
  padding: 1rem;
}

.skills ul {
  padding: 1rem 1rem 1rem 2.5rem;
}

.skills {
  padding: 2.5rem 1rem;
}

.hamburger i {
  color: #b2a2fc;
}

.card-cta {
  width: 100%;
  text-align: center;
}

.hero .content .cta {
  font-size: 1rem;
}
.principal {
  padding: 1rem;
}

.card-content p {
  font-size: 1.1rem!important;
}

.projects {
  padding: 1.5rem 0 .5rem 0;
}

.projects-grid.principal{
   grid-template-columns: 1fr;
}

.projects-grid.secundario {
  grid-template-columns: 1fr;
  gap: 15px;
}

.footer-container .box a {
  padding-bottom: 1rem;
  font-size: 1.15rem;
}

.footer-container .box p {
  font-size: .85rem;
  padding: 2rem;
  text-align: left;
}

}

/* container do mouse */
.scroll-mouse {
  position: absolute;
  left: 50%;
  bottom: 1.5rem; /* ajuste se quiser */
  transform: translateX(-50%);
  width: 18px;
  height: 28px;
  border: 1px solid #071422;
  border-radius: 20px;
  opacity: 0.75;
  cursor: pointer;
  transition: opacity .2s;
}

.scroll-mouse:hover {
  opacity: 1;
}

/* a bolinha interna */
.scroll-mouse .wheel {
  position: absolute;
  left: 50%;
  top: 5px;
  width: 2px;
  height: 6px;
  background: #071422;
  border-radius: 4px;
  transform: translateX(-50%);
  animation: wheelMove 1.5s infinite ease-in-out;
}

/* animação da bolinha descendo */
@keyframes wheelMove {
  0%   { opacity: 0; transform: translate(-50%,0); }
  40%  { opacity: 1; }
  80%  { opacity: 1; transform: translate(-50%,10px); }
  100% { opacity: 0; transform: translate(-50%,14px); }
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-container p {
  color: #ffffff93;
}

.footer-container a {
  font-size: 1.5rem;
   margin-bottom: 2rem;
   color: #fff;
}

.footer-container .box a {
  padding-bottom: 1rem;
}

footer a:hover {
  color: #c87bff;
}

.saiba-mais-wrapper {
  margin-top: 4rem;
}


.info-case {
  padding: 0 2rem;
}

.info-case p {
  font-size: 1rem;
}

.link-saber-mais {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 1.2rem;
  color: #6e5fb2bb; /*paleta */
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.link-saber-mais .arrow {
  transition: transform 0.25s ease;
}

.link-saber-mais:hover {
  gap: 10px;
  color: #c87bff;
}

.link-saber-mais:hover .arrow {
  transform: translateX(4px);
}

/* Container */
.portfolio-box {
 /* max-width: 1140px;*/
  margin: 3rem auto;
  padding: 0;
}

/* Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Card */
.card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* Imagem */
.card-image {
  position: relative;
  height: 425px;
  background-size: cover;
  background-position: center;
}

/* Exemplos de imagem (substitua pelas suas) */
.ui-design {
  background-image: url('../assets/images/case-mockup-roxo.webp');
}

.front-end {
  background-image: url('../assets/images/front-end.png');
}

/* Tag */
.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Conteúdo */
.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-content h2 {
  color: #3a2c6b;
  font-size: 1.65rem;
  opacity: 1 !important;
  transform: none !important;
}

.card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a5d73;
}

/* CTA */
.card-cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  border: none;
  background: transparent;
  color: #b2a2fc;
  border: 1px solid #b2a2fc;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.card-cta:hover {
  background: linear-gradient(135deg,#cdddf3, #d8d0f3);
  color: #3a2c6b;
}

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

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-link:focus-visible {
  outline: 2px solid #b2a2fc;
  outline-offset: 4px;
}

.hero .hero-image{
  position: relative;
  overflow: visible;
}

.tech{
  position:absolute;

  width:55px;
  height:55px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50px;

  /* GLASS */
  background: rgba(219, 166, 226, 0.377);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(10px);



  /* cor do ícone */
  color:#f0defaef;
  font-size:1.65rem;

  /* sombra elegante */


  animation: floatIcon 6s ease-in-out infinite;
  transition: transform .3s ease, box-shadow .3s ease;
}


.tech.css{
  top:35%;
  left:-40px;
  animation-delay:1s;
}

.tech.js{
  top: 5px;
  right:30px;
  animation-delay:1.8s;
}

.tech.react{
  bottom:40px;
  right:-5px;
  animation-delay:2.4s;
}

.tech.figma{
  bottom:-20px;
  left:40px;
  animation-delay:1.3s;
}
@keyframes floatIcon{
  0%{
    transform: translateY(0px);
  }
  50%{
    transform: translateY(-12px);
  }
  100%{
    transform: translateY(0px);
  }
}




@media (max-width:768px){

  .tech {
    font-size:1.08rem;
  }

  .tech.css{
  top:35%;
  left:-15px;
  animation-delay:1s;
}

.tech.js{
  top: 5px;
  right:30px;
  animation-delay:1.8s;
}
  }