@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

:root {
    --texto-primario:#2d2d2d;
    --texto-secundario:#666666;
}
* {
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}

.cabecalho {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
}



.img-logo {
    position: relative;
    margin: 0;
    width: 60px;
}

.cabecalho::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .1);    
    backdrop-filter: blur(35px); 
    z-index: -1;
    transition: .5s;
}

.cabecalho::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .5s;
}

.cabecalho:hover::after {
    left: 100%;
}

@media (max-width: 768px) {
  .esconder {
    display: none;
  }

  .img-logo {
    width: 50px;

  }

  .cabecalho {
    padding: 0;
  }
}



.logo{
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.menu a{
    margin-left: 2.5rem;
    font-size: 1.15rem;
    color: white;
    font-weight: 500;
    text-decoration: none;
}

#check:checked ~ .icons #icon-fechar {
    display: inline-flex;
}

#descricao {
    color:black;
}

#check:checked ~ .icons #icon-menu {
    display: none;
}

#check {
    display: none;
}

.icon-carrinho-perfil{
    position: relative;
    margin-right: 1.5rem;
}
.icon-carrinho-perfil button, a {
    border: none;
    background: transparent;
    cursor: pointer;
}
#icon-carrinho-perfil {
    font-size: 1.75rem;
}



.carrinho {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 500px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);

    /* Invisível e fora da tela */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;

    /* Transição suave */
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.carrinho.ativo {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); 
    backdrop-filter: blur(5px); 
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 900; 
}

.overlay.ativo {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width:550px) {
    .carrinho {
        width: 100vw;
    }

   
}


.carrinho-produtos {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.item-carrinho {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: .7rem;
}

.img-carrinho {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

.info-carrinho {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #000071;
    gap: .2rem;
}

.nome-carrinho {
    font-weight: 500;
    /* color: #fff; */
}

.quantidade-carrinho,
.preco-carrinho {
    font-size: .98rem;
    /* color: #eaeaea; */
}

.carrinho-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    padding-top: .7rem;
    border-top: 1px solid rgba(255,255,255,.18);
}



.botao-finalizar-carrinho {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #916cf1, #5a2ff4);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 3rem;
}

.botao-finalizar-carrinho:hover {
    background: linear-gradient(90deg, #916cf1, #7a55ff);
}

.icons {
    position: absolute;
    right: 5%;
    cursor: pointer;
    color: white;
    font-size: 2.8rem;
    display: none;
}

.icons #icon-fechar {
    display: none;
}

@media (max-width:992px) {
    .cabecalho {
        padding: 0.44rem 5%;
    }
}

@media (max-width:768px) {
    

    .icons {
        display: inline-flex;
    }


    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        border-bottom-left-radius: 3%;
        border-bottom-right-radius: 3%;
        background-color: rgba(0, 0, 0, .1);
        backdrop-filter: blur(100px);
        box-shadow: inset 0px 20px 16px 3px rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: .5s ease-in-out;
    }

    #check:checked ~ .menu {
        height: 20.6rem;

    }
    .menu a {
        display: block;
        margin: 1.5rem 0;
        text-align: center;
        font-size: 1.2rem;
        transform: translateY(-100px);
        opacity: 0;
        transition: .5s ease-in-out;

    }

    #check:checked ~ .menu a  {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.10s * var(--i));

    }
}


.apresentacao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 5rem 0;
    margin-bottom: 100px ;
    background-image: linear-gradient(to left,#000071, #5a2ff4, #916cf1, #8a0c8a,#d263ce );
    background-size: 300% 100%;
    animation: degrade-animado 5s  infinite alternate;
}

.apresentacao > div:nth-of-type(1),
.apresentacao > div:nth-of-type(2) {
    z-index: 1;
}


@keyframes degrade-animado {
    0% {
        background-position-x: 0%;
    }
    100% {
        background-position-x: 100%;
    }
        
}

 .texto-apresentacao {
    max-width: 600px;
    color: white;
 }

.divBotoes {
    display: flex;
    gap: 1.7rem;
    margin: 0 auto;
    border: none;
    margin-top: 2rem;
}
.botao-catalogo, .botao-entrega{
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 55px;
    box-shadow:2px 12px 20px 4px rgb(0 0 0 / 10%);

}
 .botao-catalogo {
    background-image: linear-gradient(90deg, #5bc54c, #7EA672  );
    border: none;
 }

.botao-entrega {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  backdrop-filter: blur(6px); 
  border: none;
  z-index: 0;  
}

.botao-entrega::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* espessura da borda */
  background: linear-gradient(90deg, #916cf1, #5a2ff4);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
   pointer-events: none; 
}

 .botao-catalogo a , .botao-entrega a {
    text-decoration: none;
    font-weight: 500;
    color: white;

 }
 .botao-entrega a {
    padding: 10px;
    animation: cor-fonte 5s  infinite alternate;
 }

 @keyframes cor-fonte {
    0% {
        color: #5a2ff4;
    }
    100% {
        color: white;
    }
        
}
/* Estilo do efeito máquina de escrever */
.texto-apresentacao {
    text-align: center; /* garante alinhamento à esquerda */

}
.texto-apresentacao > div {
    height: 7.5vh;
}
.texto-apresentacao h1 {
    overflow: hidden; /* esconde o texto que ainda não "apareceu" */
    white-space: nowrap; /* mantém o texto em uma única linha */
    border-right: 1px solid #fff; /* cursor */
    animation: typing 2s steps(20, end), blink 0.9s step-end infinite;
}

.texto-apresentacao p {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid transparent; /* sem cursor */
}

/* Animação de escrever */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

/* Piscar cursor */
@keyframes blink {
    50% { border-color: transparent }
}

#titulo-apresentacao {
    white-space: nowrap;
    border-right: 3px solid #fff; /* cursor */
    font-weight: bold;
    text-align: left;
    display: inline-block; /* importante para o border-right ficar colado */
    font-size: 2.5rem;
}
@media (max-width:700px) {
    #titulo-apresentacao {
    font-size: 2rem;

    }
}
@media (max-width:470px) {
    #titulo-apresentacao {
    font-size: 1.6rem;

    }
    
}
@media (max-width:400px) {
    #titulo-apresentacao {
        font-size: 1.5rem;
    }
    .texto-apresentacao h4 {
        font-size: 0.9rem;
    }
    
}
/* Cursor piscando */
@keyframes blink {
    50% { border-color: transparent; }
}
#titulo-apresentacao {
    animation: blink 0.7s step-end infinite;
}

.divVideo {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; 
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  opacity: 0.4;
}


/* Sessão Diferenciais */

.diferenciais {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 7rem 6rem;
}

@media (max-width:1240px) {
    .diferenciais {
    padding: 0 3rem 10rem;

    }
}
@media (max-width:1115px) {
    .diferenciais {
    padding: 0 0rem 10rem;
    margin: auto;    


    }
}
@media (max-width:817px) {
    .diferenciais {
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 1.5rem;
    
    }
}
.diferenciais > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 2rem;
    text-align: center;
}
.icon-diferenciais {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 2rem;
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
}


.icon1 {
    background-color: #a3e5a4;
}
.icon2 {
    background-color: #ffc0cb87;
}
.icon3 {
    background-color: #eb98006b;
}
.icon4 {
    background-color: #b10db142;
}

#icon-diferenciais {
    font-size: 2.8rem;
}

/* Sessão carousel */

.carrosel {
    position: relative;
    height: 50vh;
    margin:  0 auto;
}

.slides {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    overflow-x: hidden;
}

.slides > div {
    position: absolute;
    display: flex;
    height: 80%;
    border-radius: 20px;
    overflow-x: hidden;
    overflow-y: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;

} 

.slides > div img {
    width: 600px;
    height: 100%;
    object-fit: cover;
}

@media (max-width:700px) {
    .slides > div {
        width: 60vw;
} 
}

.controls {
    display: none;
}


.icon-diferenciais {
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 0 2rem;
   height: 5rem;
   width: 5rem;
   border-radius: 50%;
   transition: transform 0.3s ease-in-out;
}


.icon-diferenciais:hover {
   transform: scale(1.2); /* Aumenta o ícone ao passar o mouse */
}


/* Efeito de aumento celular */
.icon-diferenciais:active {
   transform: scale(1.2);
}

/* Sessão catalogo */

.catalogo {
    padding: 3rem 0;

}

.titulo-catalogo{
    text-align: center;
}

.titulo-catalogo h2 {
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--texto-primario);
}

.titulo-catalogo p {
    font-size: 1rem;
    color: var(--texto-secundario);
    margin: 10px;
}

.produtos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100vw;
    gap: 150px;

}
@media (max-width: 1200px) {
    .produtos {
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .produtos {
        gap: 20px;
    }
}

.container-produtos {
    margin-top: 3.5rem;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    box-shadow: 10px 11px 20px rgb(166 166 166 / 50%);
    width: 290px;
    overflow: hidden;
}

.img-produto{
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 100%;
    border: none;
}
.img-produto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-produtos {
    height: 100%;
    padding: 1rem;
    
}

.info-produtos h3 {
    font-weight: 600;
    color: var(--texto-primario);
    
}

.info-produtos p {
    color: var(--texto-secundario);
    font-size: 0.875rem;
    margin-bottom: 0.9rem;
}

.preco-produto {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #916cf1;

}

.botoes {
    display: flex;
    justify-content: space-around;

}

.btn-comprar :first-child {
   width: 200px;
   height: 40px;
   border-radius: 19px;
   font-size: 1.7rem;
}


#carrinho-produto{
    font-size: 1.5rem;
}

.btn-add-carrinho  {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.botoes button {
    border: none;
    padding: 7px;
    cursor: pointer;
    font-weight: 500;
    color: white;
    background: linear-gradient(90deg, #916cf1, #5a2ff4);
}

/* Scroll suave e compensação do header fixo */
html { scroll-behavior: smooth; }
.ancora { scroll-margin-top: 110px; } /* ajuste se seu header mudar de altura */

/* Rodapé */
.rodape {
  position: relative;
  margin-top: 4rem;
  background: linear-gradient(to left,#000071, #5a2ff4, #916cf1, #8a0c8a,#d263ce  100%);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 3rem 1.25rem 1rem;
  overflow: clip;
}

/* linha brilhante sutil no topo */
.rodape::before{
  content:"";
  position:absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(145,108,241,.2), rgba(90,47,244,.5), rgba(210,99,206,.2));
  top: 0;
}

.rodape-container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0rem 1rem 0rem 1rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.rodape h3{
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: .75rem;
  letter-spacing: .2px;
}

.rodape p{
  line-height: 1.7;
  color: #eaeaea;
}

/* “Sobre” ganha um cartão translúcido */
#sobre{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* Lista de contato */
.lista-contato{
  list-style: none;
  padding: 0;
  margin: .25rem 0 1rem;
  display: grid;
  gap: .5rem;
}
.lista-contato i{
  font-size: 1.1rem;
  margin-right: .5rem;
  vertical-align: -2px;
  opacity: .9;
}

/* Ações de contato (botões) */
.acoes-contato{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1rem 0 1.25rem;
}
.btn-whats,
.btn-email{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: transform .15s ease, box-shadow .25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.btn-whats{
  background: linear-gradient(90deg, #25d366, #1faa52);
}
.btn-email{
  background: linear-gradient(90deg, #916cf1, #5a2ff4);
}
.btn-whats:hover,
.btn-email:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.32);
}

/* Social */
.social{
  display: flex;
  gap: .75rem;
}
.social a{
  height: 40px; width: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.social a i{ font-size: 1.1rem; color: #fff; opacity: .9; }
.social a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}

/* Copyright */
.rodape-copy{
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2rem;
  padding-top: .75rem;
  text-align: center;
  color: #cfcfe6;
  font-size: .95rem;
}

/* Acessibilidade/teclado */
a:focus-visible, button:focus-visible{
  outline: 3px solid rgba(145,108,241,.8);
  outline-offset: 2px;
  border-radius: 10px;
}

/* Responsividade */
@media (max-width: 992px){
  .rodape-container{ grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 520px){
  .rodape{ padding: 2.25rem 1rem .75rem; }
  .acoes-contato{ flex-direction: column; }
  .btn-whats, .btn-email{ width: 100%; justify-content: center; }
  .social{ justify-content: center; }
}

/* Respeita usuários com redução de movimento */
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; }
}

.rodape {
  position: relative;
  margin-top: 4rem;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 3rem 1.25rem 1rem;
  overflow: clip;

  /* Gradiente animado */
  background-image: linear-gradient(to left, #5a2ff4, #694aa3);
  background-size: 300% 100%;
  animation: degrade-rodape 8s infinite alternate ease-in-out;
}

@keyframes degrade-rodape {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

.carrinho {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, white  /*, #a893f3, #ce8fcc*/);
    color: #000071;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.4);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;

    /* Invisível e fora da tela */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;

    /* Transição suave */
    transition: transform 0.4s ease, opacity 0.4s ease;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.carrinho.ativo {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

/* Título Carrinho */
.carrinho h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: #000071;
;
    border-bottom: 2px solid rgba(255,255,255,.2);
    padding-bottom: .5rem;
}

/* Botão fechar */
.carrinho .fechar {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    background: #eebbbb1a;
    padding: .3rem .6rem;
    border-radius: 8px;
    transition: all .3s ease;
}
.carrinho .fechar:hover {
    background: rgba(255,255,255,.25);
}

/* Produtos dentro do carrinho (exemplo genérico) */
.item-carrinho {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(100, 108, 216, 0.1);
    border-radius: 12px;
    padding: .75rem;
    margin-bottom: 1rem;
}
.item-carrinho img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}
.item-carrinho .info {
    flex: 1;
    margin-left: .8rem;
}
.item-carrinho .info h4 {
    font-size: 1rem;
    font-weight: 500;
}
.item-carrinho .info p {
    font-size: .9rem;
    opacity: .8;
}

/* Botão finalizar compra */
.btn-finalizar {
    margin-top: auto;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #d171ce, #916cf1, #7a55ff);
    transition: transform .2s ease, box-shadow .3s ease;
}
.btn-finalizar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

/* Estilo exclusivo para página de login */
.container-log-cad {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    padding: 5rem 0rem 5rem 0rem;
}

.logo-log-cad {
    top: 10vh;
    margin: 0 auto 1rem;
    width: 80px;
    
}

.logo-cad {
    top: 5vh;
}

.form-login {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(145,108,241,0.12);
    padding: 2.5rem 2rem;
    width: 350px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
}

.titulo-login {
    color: #916cf1;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.input-group {
    width: 100%;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 1rem;
    color: var(--texto-primario);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8f8f8;
    transition: border 0.2s;
}

.input-group input:focus {
    border: 1.5px solid #916cf1;
    outline: none;
}

.btn-login {
    width: 100%;
    background: linear-gradient(90deg, #916cf1 60%, #5a2ff4 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
}

.btn-login:hover {
    background: linear-gradient(90deg, #5a2ff4 60%, #916cf1 100%);
}

.link-cadastro {
    margin-top: 1.5rem;
    text-align: center;
    font-size: .9rem;
    color: var(--texto-secundario);
}

.link-cadastro a {
    color: #916cf1;
    font-weight: 600;
    text-decoration: none;
    margin-left: 6px;
    transition: color 0.2s;
}

.link-cadastro a:hover {
    color: #5a2ff4;
    text-decoration: underline;
}

.icon-voltar {
    font-size: 4rem;
    padding: 1.5rem;
}


.perfil-icon {
    display: flex;
    padding: 1rem;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
   
}

.main-perfil {
    position: relative;
    top:110px;
    margin: auto;
    width: 100%;
}

.perfil  {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.perfil h2 {
    padding-top: 3.5rem;
    font-weight: 600;
    color: var(--texto-primario);
    padding-bottom: 0.8rem
    
}

.dados-usuario {
    display: flex;
    padding-top: 2.5rem;
    flex-direction: column;
    padding: 2rem;
    border-radius: 5%;
    box-shadow: rgba(145, 108, 241, 0.12) 0px 8px 32px;

}

.dados-usuario label {
    font-size: 1rem;
    color: var(--texto-primario);
    margin-bottom: 0.3rem;
    font-weight: 500;


}

.campo {
    width: 300px;
    padding: 0.9rem 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8f8f8;
    

}

.body-perfil {
    background-color:  #f8f8f8;

}

.icon-editar {
    color: var(--texto-secundario);
    margin-left: 90%;
    font-size: 1.7rem;
    padding-right: 1.4rem ;
}

.produto {
    display: flex;
    justify-content: center;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    width: 630px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 100px;
}

.produto table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px; /* espaço entre linhas */

}


.produto th {
    background-color: #f8f8f8;
    text-align: left;
    padding: 10px 15px;
    border-bottom: 2px solid #ddd;
    font-weight: 600;
}


.produto td {
    background-color: #fff;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.produto tr:last-child td {
    border-bottom: none;
}



@media (max-width: 600px) {
    .produto {
        padding: 10px;
        border-radius: 6px;
        width: 370px;

    }   
   
    .produto th,
    .produto td {
        padding: 8px 10px;
        font-size: 10px;
    }

  
}

/* Estilo para o link do Instagram */
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #FF5733;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.instagram-link:hover {
  color: #FF4500;
  transform: scale(1.1);
}

.instagram-link i {
  font-size: 1.5rem;
}

/* Estilo para o botão do Instagram com degradê verde */
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #32CD32, #228B22);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-instagram:hover {
  background: linear-gradient(90deg, #228B22, #32CD32);
  transform: translateY(-2px);
}

.btn-instagram i {
  font-size: 1.5rem;
}