/*
 Theme Name: Astra Child
 Theme URI: https://wpastra.com/
 Description: Child theme do Astra
 Author: Seu Nome
 Author URI: https://seusite.com.br
 Template: astra
 Version: 1.0.4
*/

/* Seus estilos customizados abaixo */
#page {
  background-image: url("https://moccasin-bee-756082.hostingersite.com/wp-content/uploads/2026/02/texture1.png") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Seleção de planos */
:root {
  --texto-claro: #EDC1A4;
  --texto-claro-alt: #FAF2E5;
  --pricing-card-border-radius: 20px;
  --plano-card-height: 570;
}

.pricing-section {
  font-family: 'Playfair Display', serif;
  background-size: cover;
  background-position: center;
  padding: 1.25rem 1.25rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0.3px;
  /* all: initial; */
  isolation: isolate;
}

.pricing-root * {
  box-sizing: border-box;
}

.pricing-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #EDC1A4;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.7),
    0 0 3px rgba(0, 0, 0, 0.5);

  margin: 0rem 0rem 2rem 0rem;
  text-align: center;
}

.pricing-container {
  max-width: 1145px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

@media (min-width: 768px) {
  .pricing-container {
    flex-direction: row;
  }
}

.pricing-card-outter {
  border-radius: var(--pricing-card-border-radius);
  padding: 6px 10px;

  position: relative;
  background: rgba(0, 0, 0, 0.1);
  background-size: contain;

  /* border: 2px solid transparent;
            background:
                linear-gradient(#111, #111) padding-box,
                linear-gradient(to bottom,
                    #ff0000,
                    #00ff00,
                    #0000ff) border-box; */
  transition: 0.1s ease;
}

.pricing-card-outter:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 0 35px rgba(229, 179, 92, 0.35); */
}

.pricing-card-outter.mensal::before {
  content: "";
  position: absolute;
  inset: 0;
  /* ocupa toda a área */
  border-radius: var(--pricing-card-border-radius);
  padding: 3.5px;
  /* largura da borda */
  background:
    radial-gradient(at 50.00% 40%,
      #9D4751 0%,
      #AD4152 56%,
      #713138 100%);

  /* truque para virar "borda" */
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  /* filter: blur(8px); */
}

.pricing-card-outter.mensal {
  aspect-ratio: 340 / var(--plano-card-height);
  width: min(90vw, 340px);
}

@media (min-width: 768px) {
  .pricing-card-outter.mensal {
    width: 340px;
  }
}

.pricing-card-outter.semestral::before {
  content: "";
  position: absolute;
  inset: 0;
  /* ocupa toda a área */
  border-radius: var(--pricing-card-border-radius);
  padding: 3.5px;
  /* largura da borda */
  background:
    radial-gradient(at 50.00% 30%,
      rgba(254, 254, 240, 1) 0%,
      rgba(254, 232, 166, 0.5) 56%,
      rgba(244, 179, 101, 0) 100%),
    linear-gradient(to bottom,
      #F4B365 0%,
      #FEE8A6 15%,
      #FEFEF0 30%,
      #FFFEEF 35%,
      #FDD893 60%,
      #FBB46F 90%,
      #FCB35F 100%);

  /* truque para virar "borda" */
  mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  /* filter: blur(8px); */
}

.pricing-card-outter.semestral {
  aspect-ratio: 376 / var(--plano-card-height);
  width: min(90vw, 376px);
  position: relative;
  border-radius: var(--pricing-card-border-radius);
  box-shadow:
    0 0 12px rgba(255, 200, 0, 0.45),
    0 0 32px rgba(255, 170, 40, 0.35),
    0 0 60px rgba(255, 140, 0, 0.25);
}

@media (min-width: 768px) {
  .pricing-card-outter.semestral {
    width: 376px;
  }
}

.pricing-card-outter.anual::before {
  content: "";
  position: absolute;
  inset: 0;
  /* ocupa toda a área */
  border-radius: var(--pricing-card-border-radius);
  padding: 3.5px;
  /* largura da borda */
  background:
    radial-gradient(at 50.00% 30%,
      rgba(254, 254, 240, 1) 0%,
      rgba(254, 232, 166, 0.5) 56%,
      rgba(244, 179, 101, 0) 100%),
    linear-gradient(to bottom,
      #F4B365 0%,
      #FEE8A6 15%,
      #FEFEF0 30%,
      #FFFEEF 35%,
      #FDD893 60%,
      #FBB46F 90%,
      #FCB35F 100%);

  /* truque para virar "borda" */
  mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  /* filter: blur(8px); */
}

.pricing-card-outter.anual {
  aspect-ratio: 357 / var(--plano-card-height);
  width: min(90vw, 357px);
  position: relative;
  border-radius: var(--pricing-card-border-radius);
  /* box-shadow:
                0 0 12px rgba(255, 200, 0, 0.45),
                0 0 32px rgba(255, 170, 40, 0.35),
                0 0 60px rgba(255, 140, 0, 0.25); */
}

@media (min-width: 768px) {
  .pricing-card-outter.anual {
    width: 357px;
  }
}

.pricing-card-inner {
  box-sizing: border-box;
  border-radius: var(--pricing-card-border-radius);
  padding: 8px;

  position: relative;
  /* background: rgba(94, 34, 44, 0.3); */

  display: flex;
  /* display: none; */
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.pricing-card-inner.mensal::before {
  content: "";
  position: absolute;
  inset: 0;
  /* ocupa toda a área */
  border-radius: var(--pricing-card-border-radius);
  padding: 2.5px;
  /* largura da borda */
  background:
    /* brilho superior central */
    radial-gradient(at 50.00% 40%,
      #9D4751 0%,
      #AD4152 56%,
      #713138 100%),

    /* escurecimento lateral */
    linear-gradient(to right,
      #61282F 0%,
      transparent 20%,
      transparent 80%,
      rgb(125, 54, 64) 100%);

  mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  filter: blur(8px);

}

.pricing-card-inner.mensal {
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/astra-child/assets/img/textura-plano-mensal.jpg");
  background-size: cover;
}

.pricing-card-inner.semestral::before {
  content: "";
  position: absolute;
  inset: 0;
  /* ocupa toda a área */
  border-radius: var(--pricing-card-border-radius);
  padding: 2.5px;

  /* truque para virar "borda" */
  mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  filter: blur(8px);

}

.pricing-card-inner.semestral {
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/astra-child/assets/img/textura-plano-semestral.jpg");
  background-size: cover;
}

.pricing-card-inner.anual::before {
  content: "";
  position: absolute;
  inset: 0;
  /* ocupa toda a área */
  border-radius: var(--pricing-card-border-radius);
  padding: 2.5px;

  /* truque para virar "borda" */
  mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  filter: blur(8px);

}

.pricing-card-inner.anual {
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/astra-child/assets/img/textura-plano-anual.jpg");
  background-size: cover;
}

.plano-semestral-bar {
  width: 75%;
  height: 45px;
  border-radius: 4px;
  background: linear-gradient(to right,
      #ff9d6e 0%,
      /* Salmão alaranjado (Extremo Esquerdo) */
      #ffb347 15%,
      /* Amarelo Ouro intenso */
      #ffcc70 35%,
      /* Transição quente */
      #fff3d4 50%,
      /* Brilho Máximo (Quase creme/branco) */
      #ffcc70 65%,
      /* Retorno ao dourado */
      #ffb347 80%,
      /* Sombra dourada (sem marrom) */
      #ff8c52 92%,
      /* Puxando para o Salmão novamente */
      #e67339 100%
      /* Finalização em Coral saturado (Extremo Direito) */
    );
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: -22px;
  letter-spacing: 1.3px;
  font-weight: 600;
  color: #4A1101;
  box-shadow:
    0 0 12px rgba(255, 200, 0, 0.45),
    0 0 32px rgba(255, 170, 40, 0.35),
    0 0 60px rgba(255, 140, 0, 0.25);
  border: 1px solid #FDCE74;
}

.plano-anual-bar-wrapper {
  /* Largura total incluindo as pontas */
  width: 75%;
  height: 45px;
  position: absolute;
  margin: -22px auto;
  /* box-shadow:
            0 0 12px rgba(255, 200, 0, 0.45),
            0 0 32px rgba(255, 170, 40, 0.35),
            0 0 60px rgba(255, 140, 0, 0.25); */

  filter: drop-shadow(0 0 6px rgba(255, 200, 0, 0.35)) drop-shadow(0 0 15px rgba(255, 170, 40, 0.20)) drop-shadow(0 0 30px rgba(255, 140, 0, 0.15));
}

.plano-anual-bar {
  --gold-vibrant: linear-gradient(to right, #ff9d6e, #ffb347, #fff3d4, #ffb347, #e67339);
  /* 2. O Gradiente: Simulando a dobra com sombras fixas nas posições 15% e 85% */
  background: linear-gradient(to right,
      #ff9d6e 0%,
      /* Salmão alaranjado (Extremo Esquerdo) */
      #ffb347 15%,
      /* Amarelo Ouro intenso */
      #ffcc70 35%,
      /* Transição quente */
      #fff3d4 50%,
      /* Brilho Máximo (Quase creme/branco) */
      #ffcc70 65%,
      /* Retorno ao dourado */
      #ffb347 80%,
      /* Sombra dourada (sem marrom) */
      #ff8c52 92%,
      /* Puxando para o Salmão novamente */
      #e67339 100%
      /* Finalização em Coral saturado (Extremo Direito) */
    );

  /* era relative */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  letter-spacing: 1.3px;
  font-weight: 600;
  color: #4A1101;

  height: inherit;
  border: 1px solid #FDCE74;
  clip-path: polygon(0% 0%, 100% 0%,

      96% 50%, 100% 100%, 0% 100%,

      4% 50%, 0% 0%);


  /* Estilo do Texto */
  /* text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3); */
}

.plano-titulo {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  /* ou 500 se quiser levemente mais firme */
  font-size: 1.8rem;
  /* pode variar 18–22 dependendo do layout */
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: var(--texto-claro);

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-shadow: 0 0 1px rgba(0, 0, 0, 0.7),
    0 0 3px rgba(0, 0, 0, 0.5);

  margin: 10px 0px 3px 0px;
  padding-top: 20px;
  text-align: center;
}

.plano-preço {
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--texto-claro);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.7),
    0 0 3px rgba(0, 0, 0, 0.5);
  padding: 12px 0px 10px 0px;
  text-align: center;
  font-size: 1.9rem;
  line-height: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-family: 'Times New Roman';
  gap: 2px;
}

.plano-moeda {
  font-size: 1.7rem;
  padding-top: 5px;
  vertical-align: top;
}

.plano-valor {
  font-size: 3.2rem;
  font-weight: 500;
}

.plano-periodo {
  font-size: 1.4rem;
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding-bottom: 6px;
}

.sep-discreto {
  width: 100%;
  height: 4px;
  background: radial-gradient(at 50.00% 50%, #B17071 0%, #76343E 31%, transparent 63%);
  filter: blur(0.6px);
}

.sep-super-glow {
  width: 79%;
  height: 4px;
  background: radial-gradient(at 50.00% 50%, #FCCBDC 7%, #fccb9f 20%, #e47f68 30%, #ac3e3f 53%, transparent 89%);
  filter: blur(0.4px);
}

.barra-preço-equivalente {
  /* Dimensões e Formato Capsular */
  width: 75%;
  height: 28px;
  box-sizing: border-box;
  min-height: 28px;
  flex: 0 0 28px;
  align-self: center;
  line-height: 28px;
  border-radius: 50px;
  /* Bordas totalmente arredondadas como na imagem */

  /* Gradiente com 8 pontos de ancoragem */
  background: linear-gradient(to right,
      #c98d54 0%,
      /* Bronze suave na borda esquerda */
      #dbae76 12%,
      /* Transição para ocre claro */
      #edc895 28%,
      /* Amarelo palha quente */
      #fce4b4 45%,
      /* Início da zona de iluminação central */
      #fce4b4 55%,
      /* Sustentação do brilho central (ponto de luz) */
      #edc895 72%,
      /* Retorno ao tom médio */
      #dbae76 88%,
      /* Ocre de transição final */
      #c48347 100%
      /* Bronze mais saturado na borda direita */
    );

  /* Efeito de profundidade e acabamento */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    /* Brilho na quina superior */
    0 2px 4px rgba(0, 0, 0, 0.2);
  /* Sombra projetada leve */

  /* Alinhamento de conteúdo (Flexbox como sugerido anteriormente) */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #000000;
}

ul.plano-beneficios {
  list-style: none;
  color: var(--texto-claro);
  font-size: 1.2rem;
  margin: 3px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 20px 10px 10px;
  letter-spacing: 1.1px;
  font-weight: 500;
}

ul.plano-beneficios li {
  position: relative;
  padding-left: 44px;
}

ul.plano-beneficios li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-80%);

  width: 32px;
  height: 32px;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23F7BD7C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
}

.plano-footer {
  color: #d9bab3;
  letter-spacing: 1;
  text-align: center;
  font-size: 1rem;
  padding: 0px 70px;
  margin: 15px 0px;
}

.plano-footer p {
  margin: 0;
  display: inline;
}

.plano-selecionar {
  font-family: Arial;
  background: linear-gradient(to right, #B6663D 0%, #D27D46 30%, #ED9653 60%, #EFA25D 90%);
  color: #FFF7ED;
  width: 82%;
  height: 46px;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1.2;
  /* margin-top: 0px; */
  padding: 7px;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.7),
    0 0 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  border: #350401;
  cursor: pointer;
}

.plano-selecionar:hover {
  /* 1. Iluminação Interna (Glossy effect) */
  /* Adicionamos uma camada de luz branca muito sutil no topo para simular reflexo no acabamento */
  background-image: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%,
      rgba(0, 0, 0, 0.1) 100%),
    /* Mantemos o gradiente original, mas levemente mais saturado */
    linear-gradient(to right, #C0744D 0%, #DB8A55 30%, #F5A565 60%, #F7B172 90%);

  /* 2. Profundidade e Presença */
  /* Um leve deslocamento e uma sombra que "aquece" o botão */
  /* transform: translateY(-1px); */
  box-shadow: 0 8px 15px -5px rgba(182, 102, 61, 0.5);

  /* 3. Refinamento de Borda */
  /* Deixamos a borda um pouco mais nítida para destacar o formato */
  border: 1px solid rgba(255, 247, 237, 0.2);

  /* 4. Feedback Visual do Texto */
  /* O texto ganha um brilho sutil para melhorar a leitura contra o gradiente */
  color: #FFFFFF;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8), 0 0 8px rgba(239, 162, 93, 0.4);

  transition: all 0.2s ease-in-out;
}

.plano-selecionar.ponto-de-luz {
  overflow: hidden;
  box-shadow: 0 20px 16px -18px rgba(255, 200, 0, 0.6), 0 18px 18px -4px hsl(29deg 100% 50% / 14%);
  background-image:
    /* sombreado nos cantos inferiores */
    radial-gradient(circle at 50% -545%, transparent 86%, rgba(156, 75, 43) 110%),
    /* garantir contraste no texto */
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, hsl(33deg 57% 49% / 50%) 25%, rgba(255, 255, 255, 0) 88%),
    /* brilho na parte inferior */
    radial-gradient(ellipse at 50% 219%, rgb(255 240 160) 30%, transparent 41%),
    /* fundo base */
    linear-gradient(to right, #b86b3e 0%,
      /* Bronze profundo inicial */
      #d18d56 12%,
      /* Transição para terracota suave */
      #e9b27a 28%,
      /* Ocre amarelado quente */
      hsl(33 85% 79% / 1) 45%,
      /* Início do brilho central */
      #f7d49e 55%,
      /* Sustentação do highlight */
      #e9b27a 72%,
      /* Retorno ao tom médio quente */
      #d18d56 88%,
      /* Bronze de transição */
      #a65a2d 100%
      /* Finalização em cobre saturado */
    );
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 240, 160, 0.3);
  text-shadow: 0 0 2px rgb(174 96 55), 0 0 3px rgb(67 18 23 / 77%);
}

.plano-selecionar.ponto-de-luz:hover {
  /* 1. Elevação e Brilho Externo: O botão parece flutuar e emitir luz */
  /* transform: translateY(-1px); */
  box-shadow:
    0 25px 20px -15px rgba(255, 200, 0, 0.5),
    0 0 15px rgba(255, 220, 100, 0.3);
  /* Aura dourada suave */

  /* 2. Intensificação da Borda: O "ouro" polido brilha mais nas quinas */
  border: 1px solid rgba(255, 240, 160, 0.8);

  /* 3. Ajuste de Gradientes: Vamos "limpar" um pouco as sombras e focar no brilho central */
  background-image:
    /* Reduzimos levemente a sombra inferior para parecer que a luz está mais forte */
    radial-gradient(circle at 50% -545%, transparent 86%, rgba(156, 75, 43, 0.8) 110%),
    /* Aumentamos a claridade central para destacar o texto */
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, hsl(33deg 100% 70% / 30%) 50%, rgba(255, 255, 255, 0) 100%),
    /* O "flash" inferior sobe levemente, dando volume 3D */
    radial-gradient(ellipse at 50% 180%, rgb(255 250 200) 20%, transparent 50%),
    /* Gradiente base mais vibrante e "aceso" */
    linear-gradient(to right,
      #c97e4e 0%,
      #e2a46d 15%,
      #f2c694 35%,
      #fff4e0 50%,
      /* Highlight central mais branco/luxuoso */
      #f2c694 65%,
      #e2a46d 85%,
      #bd6938 100%);

  /* 4. Brilho no Texto: Dá a impressão de letras gravadas em metal polido */
  text-shadow:
    0 0 8px rgba(125, 54, 64, 0.7),
    0 1px 2px rgba(0, 0, 0, 0.8);

  cursor: pointer;
}