:root{
    --verde-mata: #1f9c99;
    --verde-escuro: #0d6e6b;
    --kraft: #fce8ef;
    --kraft-escuro: #f7d3e0;
    --vinho: #e0447e;
    --dourado: #f0a6c2;
    --texto: #5a2740;
  }
 
  * { 
    margin: 0;
    padding: 0;
    box-sizing: border-box; }
 
   
  .cestas-secao {
    background: var(--kraft);
    background-image:
      radial-gradient(circle at 1px 1px, rgba(224,68,126,0.06) 1px, transparent 0);
    background-size: 1.8rem 1.8rem;
    padding: 3.4rem 0vw 2rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--texto);
  }
 
  .cestas-logo {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    display: block;
    box-shadow: 0 0.6rem 0.18rem rgba(224, 68, 126, 0.25);
  }
 
  .cestas-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
  }
 
  .cestas-eyebrow {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--vinho);
    border-top: 1px solid var(--vinho);
    border-bottom: 1px solid var(--vinho);
    padding: 0.25rem 0;
    margin-bottom: 1.15rem;
  }
 
  .cestas-titulo {
    font-size: clamp(2rem, 4vw, 2.85rem);
    margin: 0 0 0.75rem;
    color: var(--verde-escuro);
    font-weight: 700;
  }
 
  .cestas-sub {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    color: #7a3f5a;
    line-height: 1.5;
  }
 
  .cestas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(14.5rem, 1fr));
    gap: 5rem 1.5rem;
    max-width: 100%;
        padding: 2rem 2rem;
  }
 

 
  .cesta-card {
    position: relative;
    perspective: 100rem;
  }
 
  .cesta-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 14px;
    background: var(--vinho);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
    z-index: 3;
  }
 
  .cesta-flip {
    position: relative;
    width: 100%;
    height: 33rem;
    transition: transform .6s cubic-bezier(.4,.2,.2,1);
    transform-style: preserve-3d;
  }
 
  .cesta-card.is-flipped .cesta-flip {
    transform: rotateY(180deg);
  }
 
  .cesta-face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: #fffdf8;
    border: 1px solid rgba(224,68,126,0.15);
    border-radius: 0.25rem;
    box-shadow: 0 2px 0 rgba(43,36,26,0.05);
    backface-visibility: hidden;
    overflow: hidden;
  }
 
  .cesta-card:hover .cesta-face {
    box-shadow: 0 0.85rem 1,5rem -0.75rem rgba(31,156,153,0.3);
  }
 
  .cesta-face-verso {
    transform: rotateY(180deg);
  }
 
  .cesta-imagem-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--kraft-escuro);
    overflow: hidden;
    border-bottom: 1px solid rgba(224,68,126,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .cesta-imagem-wrap img {
    width: 75%;
    height: 100%;
    object-fit: cover;
    display: block;
        border-radius: 0.3rem;
  }
 
  .cesta-imagem-wrap .cesta-placeholder-texto {
        display: flex;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    color: #b2698f;
    text-align: center;
    padding: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
 
  .cesta-info {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
  }
 
  .cesta-nome {
    font-size: 17px;
    font-weight: 700;
    color: var(--verde-escuro);
    margin: 0 0 6px;
  }
 
  .cesta-tagline {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #7a3f5a;
    margin: 0 0 0.25rem;
    flex-grow: 1;
  }
 
  
  .cesta-rodape {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed rgba(224,68,126,0.25);
    padding-top: 0.75rem;
    flex-shrink: 0;
  }
 
  .cesta-valor {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--vinho);
  }
 
  .cesta-valor small {
    font-weight: 400;
    font-size: 0.75rem;
    color: #b2698f;
    margin-right: 0.15rem;
  }
 
  .cesta-botao {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--verde-mata);
    color: #fff;
    border: none;
    border-radius: 0.15rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background .2s ease;
  }
 
  .cesta-botao:hover {
    background: var(--verde-escuro);
  }
 
  .cesta-botao-verso {
    background: transparent;
    color: var(--vinho);
    border: 1px solid var(--vinho);
  }
 
  .cesta-botao-verso:hover {
    background: var(--vinho);
    color: #fff;
  }

  .cesta-lista-itens {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12.5px;
    line-height: 1.6;
    color: #7a3f5a;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
    flex-grow: 1;
    overflow-y: auto;
  }
 
  .cesta-lista-itens li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 4px;
  }
 
  .cesta-lista-itens li::before {
    content: "♥";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9rem;
    color: var(--vinho);
  }
  .bi-whatsapp{
      position: fixed;
    right: 0.2rem;
    top: 5rem;
    width: 1.5rem;
    height: 2rem;
    transition: ease-in-out 200ms;
    color:#5a2740
  }
  .bi-instagram{
       position: fixed;
    right: 0.2rem;
    top: 3rem;
    width: 1.5rem;
    height: 2rem;
    transition: ease-in-out 200ms;
        color:#5a2740


  }
  .bi-instagram:hover,
  .bi-whatsapp:hover{
    transform: scale(1.2);
    color: #0d6e6b;
  }

  .contain-frase{
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1rem;
    .box-frase{
      display: flex;
    }
  }
.botao-topo {
    position: fixed;
        right: 0.2rem;
    bottom: 5.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--verde-mata);
    color: #fff;
    border: none;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 0.3rem 1rem rgba(31,156,153,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition: opacity .25s ease, transform .25s ease, background .2s ease;
    z-index: 999;
  }
 
  .botao-topo.mostrar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
 
  .botao-topo:hover {
    background: var(--verde-escuro);
  }
.d-block.w-100.ativa{
  display: none !important;
}
  .carousel-control-next,
  .carousel-control-prev{
    height: 100%;
  }

.carousel.pointer-event{
  height: 30rem;
}
 .carousel-item-next, .carousel-item-prev, .carousel-item.active{
  height: 30rem;
 }

 @media(max-width: 1000px){
   .carousel-item-next, .carousel-item-prev, .carousel-item.active{
  height: 27rem;
 }
 }
 @media(max-width: 850px){
   .carousel-item-next, .carousel-item-prev, .carousel-item.active{
  height: 23rem;
 }
 .carousel.pointer-event{
  height: 24rem;
}

.carousel-control-next,
  .carousel-control-prev{
    height: 75%;
  }
 }
 @media(max-width: 760px){
   .carousel-item-next, .carousel-item-prev, .carousel-item.active{
  height: 20rem;
 }
 }
 @media(max-width: 610px){
   .carousel-item-next, .carousel-item-prev, .carousel-item.active{
  height: 15rem;
 }
 }



  @media (max-width: 600px) {
    .cestas-secao { padding: 2.5rem 0vw 3.5rem; }
    .cestas-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem 0.85rem; }
    .cesta-flip { height: 28.5rem; }
    .cesta-nome { font-size: 0.95rem }
    .cesta-tagline { font-size: 0.75rem; }
    .cesta-valor { font-size: 1rem; }
    .cesta-botao { padding: 0.4rem 0.5rem; font-size: 0.65rem; }
    .carousel.pointer-event{
  height: 15rem;
}
  }
 
  @media (max-width: 480px) {
    .cestas-secao { padding: 3rem 0vw 0.75rem; }
    .cestas-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }
    .cesta-flip { height: 28.35rem; }
    .cesta-nome { font-size: 0.9rem; }
    .cesta-valor { font-size: 1rem; }
    .carousel-item-next, .carousel-item-prev, .carousel-item.active{
  height: 35rem;}
  .carousel.pointer-event{
  height: 35rem;
}
  .d-block.w-100.ativa{
  display: block !important
}
.d-block.w-100{
  display: none !important
}

  .carousel-control-next,
  .carousel-control-prev{
    height: 100%;
  }

  }
  @media (max-width: 430px) {
    .cestas-secao { padding: 3rem 0vw 3.75rem; }
    .cestas-grid { grid-template-columns: repeat(1, 1fr); gap: 1rem; }
    .cesta-placeholder-texto{ display: flex;justify-content: center;align-items: center}
     .cesta-card{
      display: flex;
      justify-content: center;
          width: 100%;

     }
    
    .carousel-control-next,
  .carousel-control-prev{
    height: 90%;
  }
   
    .cesta-imagem-wrap{
      height: 55%;
    }
    .cesta-imagem-wrap img{
      width: 80%;
      border-radius: 0.3rem;
    }
    .cesta-flip { height: 32.35rem;width: 17rem; }
    .cesta-nome { font-size: 0.9rem; }
    .cesta-valor { font-size: 1rem; }

      .carousel.pointer-event{
  height: 30rem;
}
    .carousel-item-next, .carousel-item-prev, .carousel-item.active{
  height: 30rem;}
  
  .botao-topo {
     width: 2.5rem;
    height: 2.5rem;
    font-size: 1.7rem;
  
  }
  
  }