body{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.strip-toggle{
  background: transparent;
  border: none;
}

.logo-Subpages{
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 auto 3rem
}

.text-Border{
  border-left: 2px solid gold;
  padding-left: 1rem;
}

.pagetop-Logo{
  display: none;
}

.display-None{
  display: none;
}

.budget-Container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.budget-Container__mobile{
  display: none;
}

.budget-Tatica{
  width: 100%;
  margin: 8rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.subtext-Tatica__adjust{
  display: none;
}

.text-Tatica__adjust{
  display: none;
}


.budget-Packages{
  max-width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;  justify-content: center; /* centraliza no eixo horizontal */
  margin: 5vh auto;
  padding-bottom: .5vh;
  justify-content: center;
  gap: 2vw;
}

.budget-strips{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: transparent;  /* as faixas entre blocos serão brancas */
    gap: 2vw;
  }

/* Substitua a regra .strip existente por esta */
.strip{
    width: 30vw;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    border-radius: 2rem;
    text-decoration: none;
    /* transição mais suave e preparada para transform + sombra */
    transition: transform .25s cubic-bezier(.2,.9,.3,1), box-shadow .25s cubic-bezier(.2,.9,.3,1);
    /* sombra base mais visível */
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    overflow: hidden;
    will-change: transform, box-shadow;
  }

  .strip-Custom{
    height: 1030px;
  }
  
  /* Substitua a regra .strip:hover por esta (aumenta o lift + escala + sombra) */
  .strip:hover,
  .strip:focus-visible{
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,.22);
    outline: none;
  }
  
  /* cores aplicadas diretamente */
  .strip--yellow{ background: #FFFF00; color: #000000; }
  .strip--black { background: #000000;  color: #ffffff; }
  .strip--graphite{ background: linear-gradient(270deg, #111, #121212, #141414, #121212, #111);
    background-size: 600% 600%;
    animation: animate-gradient 10s linear infinite;
    position: relative; color: gold;}

    @keyframes animate-gradient {
      to {
        background-position: 200%;
      }
    }

  .strip__content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 1.25;
  }

  .strip__content p{
    margin: .3rem;
  }

.budget-background__yellow-box{
    background: rgb(255, 217, 0);
    min-height: 15%;
    display: flex;              /* ativa flexbox */
    align-items: center;        /* centraliza verticalmente */
    justify-content: center;    /* centraliza horizontalmente */
    text-align: center;         /* caso tenha mais de uma linha */
    box-sizing: border-box;
}

.budget-background__black-box{
    background: rgb(41, 41, 41);
    min-height: 15%;
    display: flex;              /* ativa flexbox */
    align-items: center;        /* centraliza verticalmente */
    justify-content: center;    /* centraliza horizontalmente */
    text-align: center;         /* caso tenha mais de uma linha */
    box-sizing: border-box;
}

.budget-background__custom-box{
  background: rgb(41, 41, 41);
  min-height: 8%;
  display: flex;              /* ativa flexbox */
  align-items: center;        /* centraliza verticalmente */
  justify-content: center;    /* centraliza horizontalmente */
  text-align: center;         /* caso tenha mais de uma linha */
  box-sizing: border-box;
}

.budget-Text{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing: .6px;
}

.budget-Description{
    flex: 1;
    max-height: 50%;
    min-height: 50%;
    display: flex;
    align-items: center;
    margin: auto;
}

.budget-Price__yellow-box{
    background: rgb(255, 217, 0);
    min-height: 35%;
    display: flex;              /* ativa flexbox */
    align-items: start;        /* centraliza verticalmente */
    justify-content: center;    /* centraliza horizontalmente */
    text-align: left;
    box-sizing: border-box;
}

.budget-Price__black-box{
    background: rgb(41, 41, 41);
    min-height: 35%;
    display: flex;              /* ativa flexbox */
    align-items: start;        /* centraliza verticalmente */
    justify-content: center;    /* centraliza horizontalmente */
    text-align: left;
    box-sizing: border-box;
}

.poppins-regular{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  font-size: 1.5rem;
  padding-bottom: 1rem;
  margin: 0;
}

.poppins-regular__Budget {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  font-size: 1rem;
  padding: .2rem;
}

.color-Marker__goldenrod{
  background: goldenrod;
  color: #000;
}

.color-Marker__platinum{
  background: #acafac;
  color: black;
}

.btn-contato {
  width: 70vw;
  max-width: 1000px;
  display: inline-block;
  text-align: center;
  padding: 2rem 0;
  background: linear-gradient(270deg, #000000, #222222, #444444, #222222, #000000);
  background-size: 600% 600%;
  animation: gradientBG 10s ease infinite;
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 1rem;
  margin-bottom: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-contato:hover {
  background: #ffffff; /* azul mais claro no hover */
  color: #000000;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  cursor: pointer;
}

.poppins-semibold{
  padding: 0;
  margin: 1rem 2rem;
  text-align: center;
  font-size: 2rem;
}


@media (max-width: 480px){

.budget-Container{
  display: none;
}

.budget-Tatica{
  margin: 6rem auto 0;
}

.budget-Container__mobile{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.strip:hover,
.strip:focus-visible {
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
}

  .logo-Subpages{
    display: none;
  }

.display-None{
  display: block;
}

.pagetop-Logo{
  display: flex;
}

.pagetop-Logo__thirdc{
  padding-bottom: 1rem;
}
.budget-Packages{
  display: flex;
  flex-direction: column;
  max-width: 100%;
  align-items: center;
  margin: 0 auto;
  padding-bottom: 1rem;
}

.budget-strips{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.color-Marker__black{
  background: #000;
  color: #fff;
}

.strip{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: none;
  box-shadow: none;
  overflow: hidden;
  will-change: none;
}


.budget-Description{
  flex: 1;
  max-height: 40%;
  min-height: 40%;
  display: flex;
  align-items: center;
  margin: auto;
}

.budget-Price__yellow-box{
  background: rgb(255, 255, 115);
  min-height: 45%;
  display: flex;              /* ativa flexbox */
  align-items: start;        /* centraliza verticalmente */
  justify-content: center;    /* centraliza horizontalmente */
  text-align: left;
  box-sizing: border-box;
}

.budget-Price__black-box{
  background: rgb(204, 204, 204);
  min-height: 45%;
  display: flex;              /* ativa flexbox */
  align-items: start;        /* centraliza verticalmente */
  justify-content: center;    /* centraliza horizontalmente */
  text-align: left;
  box-sizing: border-box;
}

.tatica-Custom{
  width: 100%;
  padding-bottom: 2rem;
}

.strip-Custom{
  width: 100%;
}

.size-Text__mobile{
  background: linear-gradient(to right, #000000, #1d1d1d, #000);
  background-size: 600% 600%;
  animation: gradientorc 10s ease infinite;
  min-height: 15%;
}

@keyframes gradientorc {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.size-Description__mobile{
  min-height: 55%;
  max-height: 55%;
}

.size-Price__mobile{
  min-height: 30%;
  background: #111;
  display: flex;              /* ativa flexbox */
  align-items: start;        /* centraliza verticalmente */
  justify-content: center;    /* centraliza horizontalmente */
  text-align: left;
  box-sizing: border-box;
}

.budget-background__black-box{
  background: linear-gradient(to right, #1a1a1a, #303030, #000000);
  background-size: 600% 600%;
  animation: gradientorc 10s ease infinite;
  color: #fff;
}

.budget-background__yellow-box{
  background: linear-gradient(to right, yellow, gold, rgb(255, 115, 0));
  background-size: 600% 600%;
  animation: gradientorc 10s ease infinite;
}

.strip--yellow{ background: white; color: #000000;}
.strip--black { background: white;  color: black;}
.strip--graphite{ background: black;}

.color-Marker__yellow{
  background: yellow;
  color: #000;
}

/* --- ACORDEÃO MOBILE --- */
/* O botão de título só aparece como botão no mobile, no desktop o layout original persiste */
.strip-toggle{
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

.strip-icon{
  font-weight: 800;
  margin-left: 12px;
  transform: rotate(0deg);
  transition: transform .25s ease;
  background: transparent;
}

/* Wrapper do conteúdo que será animado (descrição + price) */
.acc-panel{
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .38s ease, opacity .28s ease, transform .28s ease;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Quando aberto (JS adiciona .is-open na .strip) */
.strip.is-open .acc-panel{
  opacity: 1;
  transform: translateY(0);
  /* max-height será definido dinamicamente via JS para animação suave */
}

.strip.is-open .strip-icon{
  transform: rotate(90deg); /* + vira X */
}



/* Remover alturas fixas dos strips no mobile para permitir colapso */
.strip {
  height: auto; /* remove a altura fixa que tinha antes */
  overflow: visible;
  border-radius: 0;
}

/* Garante que o painel interno tenha espaçamento vertical entre descrição e preço */
.acc-panel > .budget-Description,
.acc-panel > .budget-Price__yellow-box,
.acc-panel > .budget-Price__black-box {
  margin: 12px 0;
}

/* opcional: largura do botão de contato - mantive seu valor */
.btn-contato{
  font-size: 1.5rem;
  width: 80vw;
}

/* se quiser reduzir gap entre os blocos em mobile */
.budget-strips{
  gap: 1rem; /* menor que antes */
}

/* respeitar redução de movimento */
@media (prefers-reduced-motion: reduce) {
  .acc-panel { transition: none; }
  .strip-icon { transition: none; }
}

.poppins-semibold{
  line-height: 1.1;
  font-size: 1.5rem;
}

.commonlogo-Mobile{
  display: flex;
  flex-direction: row;
  align-items: center;
  max-height: 200px;
  max-width: 350px;
  margin: 0 auto;
}

.toptext{
  border-left: 2px solid gold;
  padding-left: 1rem;
  margin-left: 1rem;
}

.toptext-Title{
  font-size: 3rem;
}

.toptext-Subtitle{
  font-size: .8rem;
}


}