/* Página de Preços - CSS */
/* Modernizado 2026 - Facelift corporativo profissional */

/* Reutiliza variáveis da paleta de gestão de documentos */
:root {
  --precos-primary: #05372D;
  --precos-accent: #00DF82;
  --precos-accent-hover: #00FF92;
  --precos-bg-light: #E5E5E5;
  --precos-bg-lighter: #CBD1D8;
  --precos-text-primary: #05372D;
  --precos-text-secondary: #54585D;
  --precos-white: #FFFFFF;
  --precos-black: #000000;
  /* Novas variáveis para transições suaves */
  --precos-transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --precos-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --precos-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --precos-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
#precos .hero {
  margin-top: var(--navbar-height);
  padding: 7rem 0 6rem;
  background: var(--precos-primary);
  position: relative;
  overflow: hidden;
  transition: 0s;
}

/* Grid sutil no fundo do hero */
#precos .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.6;
}

/* Gradiente sutil no hero */
#precos .hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 223, 130, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

#precos .hero__content {
  display: block;
  justify-content: space-between;
  padding: 3rem 0 3rem;
  max-width: 100%;
  width:100%;
  margin: 0 auto;
  position: relative;
}

#precos .hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
  z-index: 10;
}

#precos .hero__text h1 {
  font-size: 4.6rem;
  font-weight: 600;
  font-family: 'bornasemibold', sans-serif;
  margin-bottom: 1.6rem;
  color: var(--precos-white);
  line-height: 1.12;
  text-align: center;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

#precos .hero__text h1 span {
  color: var(--precos-accent);
  position: relative;
}

#precos .hero__text .text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  text-align:center;
  max-width: 60rem;
}

#precos .hero__text .text strong {
  color: var(--precos-accent);
  font-weight: 600;
}

#precos .hero .cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* CTA Hero Button - Destaque especial */
#precos .wmbr-btn__cta-hero {
  background: var(--precos-accent) !important;
  color: var(--precos-primary) !important;
  padding: 1.8rem 3.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0, 223, 130, 0.4);
  animation: pulse-cta 2s ease-in-out infinite;
}

#precos .wmbr-btn__cta-hero:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 223, 130, 0.5);
  background: var(--precos-accent-hover) !important;
}

#precos .wmbr-btn__cta-hero svg {
  transition: transform 0.3s ease;
}

#precos .wmbr-btn__cta-hero:hover svg {
  transform: translate(4px, -4px);
}

@keyframes pulse-cta {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0, 223, 130, 0.4);
  }
  50% {
    box-shadow: 0 8px 48px rgba(0, 223, 130, 0.6);
  }
}

/* Hero Badges */
#precos .hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

#precos .hero__badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
}

#precos .hero__badge svg {
  color: var(--precos-accent);
  flex-shrink: 0;
}

/* Hero Secondary Button */
#precos .hero .wmbr-btn__secondary {
  background: transparent !important;
  color: var(--precos-white) !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1.6rem 3rem;
}

#precos .hero .wmbr-btn__secondary:hover {
  background: var(--precos-white) !important;
  color: var(--precos-primary) !important;
  border-color: var(--precos-white);
}

#precos .hero__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(50vw - 10rem);
  max-width: 80rem;
  height: 100%;
}

#precos .hero__image img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 60rem;
  width: auto;
  object-fit: contain;
  object-position: right bottom;
}

/* Products Cards Section */
.products-cards {
  padding: 7rem 2rem 5rem;
  margin-top: 0;
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
  position: relative;
}

.products-cards_hero {
  background: #F0FFEB;
  padding: 4rem 2rem 5rem;
  margin-bottom: 50px;
}

.products-header {
  text-align: center;
  margin-bottom: 0rem;
  margin-top: 4rem;
}

.products-header .title {
  font-size: 4.4rem;
  color: var(--precos-text-primary);
  margin-bottom: 1.6rem;
  line-height: 1.2;
  font-family: "bornabold";
  font-weight: normal;
}

.products-header .title span {
  color: var(--primary-green);
}

.products-header .text {
  font-size: 1.8rem;
  color: var(--precos-text-secondary);
  max-width: 60rem;
  margin: 0 auto;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(34rem, 1fr));
  gap: 2.4rem;
  max-width: 120rem;
  margin: 0 auto 4rem;
}

.product-card {
  border-radius: 2.4rem;
  padding: 3.6rem 3rem;
  position: relative;
  transition: var(--precos-transition-base);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 105, 90, 0.1);
  background: #ffffff;
  box-shadow: var(--precos-shadow-sm);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--precos-shadow-lg);
  border-color: rgba(0, 105, 90, 0.25);
}

/* Card em destaque - Mais popular */
.product-card--featured {
  border: 2px solid #00695A;
  box-shadow: 0 8px 32px rgba(0, 105, 90, 0.15);
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}

.product-card--featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 105, 90, 0.2);
  border-color: #00695A;
}

.product-card--featured .product-card__badge {
  display: block;
}

.product-card__badge {
  position: absolute;
  top: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00695A 0%, #00897B 100%);
  color: var(--precos-white);
  padding: 0.8rem 2rem;
  border-radius: 10rem;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 16px rgba(0, 105, 90, 0.3);
  white-space: nowrap;
}

.product-card__icon {
  width: 7rem;
  height: 7rem;
  background: linear-gradient(135deg, var(--precos-primary) 0%, #064a3d 100%);
  border-radius: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.4rem;
  box-shadow: 0 8px 24px rgba(5, 55, 45, 0.2);
}

.product-card__icon svg {
  width: 3.6rem;
  height: 3.6rem;
}

.product-card__icon path,
.product-card__icon rect,
.product-card__icon circle:not([fill]) {
  stroke: var(--precos-white);
}

.product-card__icon circle[fill] {
  fill: var(--precos-accent);
}

.product-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--precos-text-primary);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.product-card__description {
  font-size: 1.5rem;
  color: var(--precos-text-secondary);
  line-height: 1.7;
  margin-bottom: 2.4rem;
}

.product-card__features {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.product-card__features h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--precos-text-primary);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-card__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-card__features li {
  font-size: 1.4rem;
  color: var(--precos-text-secondary);
  padding: 0.7rem 0;
  padding-left: 2.6rem;
  position: relative;
  line-height: 1.5;
}

.product-card__features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300DF82' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.product-card__pricing {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2.4rem;
  background: linear-gradient(180deg, rgba(0, 223, 130, 0.05) 0%, rgba(0, 223, 130, 0.02) 100%);
  border-radius: 1.2rem;
  margin-left: -1rem;
  margin-right: -1rem;
}

.pricing-from {
  font-size: 1.3rem;
  color: var(--precos-text-secondary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-value {
  font-size: 1.6rem;
  color: var(--precos-text-primary);
  font-weight: 600;
  margin-bottom: 0;
}

.pricing-value span {
  font-size: 3.6rem;
  font-weight: 700;
  color: #00695A;
  letter-spacing: -0.02em;
}

.pricing-info {
  font-size: 1.4rem;
  color: var(--precos-text-secondary);
}

.product-card__cta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.product-card__cta .wmbr-btn__primary {
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  padding: 1.6rem 2.4rem;
}

.product-card__link {
  text-align: center;
  color: #00695A;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  padding: 0.8rem;
}

.product-card__link:hover {
  color: var(--precos-primary);
  transform: translateX(4px);
}

.products-note {
  text-align: center;
  max-width: 80rem;
  margin: 2rem auto 0;
  padding: 2rem;
  background: rgba(0, 223, 130, 0.06);
  border-radius: 1.2rem;
}

.products-note p {
  font-size: 1.5rem;
  color: var(--precos-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Comparison Table Section */
.comparison-table {
  padding: 8rem 2rem;
  background: #f5f9f7;
  margin-top: 70px;
  position: relative;
}

.comparison-header {
  text-align: center;
  margin-bottom: 6rem;
}

.comparison-header .title {
  font-size: 4.4rem;
  color: var(--precos-text-primary);
  margin-bottom: 1.6rem;
  line-height: 1.2;
  font-family: "bornabold";
  font-weight: normal;
}

.comparison-header .title span {
  color: #00695A;
}

.comparison-header .text {
  font-size: 1.8rem;
  color: var(--precos-text-secondary);
  line-height: 1.6;
}

.comparison-wrapper {
  overflow-x: auto;
  margin-bottom: 4rem;
}

.comparison {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--precos-white);
  box-shadow: var(--precos-shadow-md);
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(0, 105, 90, 0.08);
}

.comparison thead {
  background: linear-gradient(135deg, #00695A 0%, #00897B 100%);
  color: var(--precos-white);
}

.comparison th {
  padding: 2rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.6rem;
}

.comparison th.product-column {
  text-align: center;
  width: 25%;
}

.product-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.table-link {
  color: var(--precos-accent);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
}

.table-link:hover {
  color: var(--precos-accent-hover);
}

.comparison tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison tbody tr:hover {
  background: rgba(0, 223, 130, 0.05);
}

.comparison td {
  padding: 1.6rem 2rem;
  font-size: 1.5rem;
}

.comparison td:not(:first-child) {
  text-align: center;
}

.category-row td {
  background: var(--precos-bg-light);
  font-weight: 600;
  color: var(--precos-text-primary);
  padding: 1.2rem 2rem;
}

.check {
  color: var(--precos-accent);
  font-size: 2rem;
  font-weight: bold;
}

.dash {
  color: var(--precos-text-secondary);
  opacity: 0.5;
}

.info {
  color: var(--precos-text-primary);
  font-weight: 600;
}

.comparison-cta {
  text-align: center;
}

.comparison-cta p {
  font-size: 1.8rem;
  color: var(--precos-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* FAQ Section - Reutiliza estilos de gestão */
#precos .faq {
  padding: 8rem 2rem;
  background: #d4e7e3;
}

#precos .faq-text {
  text-align: center;
  margin-bottom: 4rem;
}

#precos .section-title span {
  display: block;
  font-size: 1.6rem;
  color: var(--precos-accent);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#precos .section-title .title {
  font-size: 4rem;
  color: var(--precos-text-primary);
  font-family: "bornabold";
  font-weight: normal;
}

#precos .faq__content {
  max-width: 90rem;
  margin: 0 auto 4rem;
}

#precos .faq__item {
  background: var(--precos-white);
  border-radius: 1.2rem;
  margin-bottom: 1.6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

#precos .faq__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

#precos .faq__question {
  padding: 2.4rem 3.2rem;
  cursor: pointer;
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--precos-text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

#precos .faq__question:after {
  content: '+';
  font-size: 2.4rem;
  color: var(--precos-accent);
  transition: transform 0.3s ease;
}

#precos .faq__item.active .faq__question:after {
  transform: rotate(45deg);
}

#precos .faq__answer {
  padding: 0 3.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

#precos .faq__item.active .faq__answer {
  padding: 0 3.2rem 2.4rem;
  max-height: 50rem;
}

#precos .faq__answer p {
  font-size: 1.6rem;
  color: var(--precos-text-secondary);
  line-height: 1.7;
}

#precos .faq-cta {
  text-align: center;
}

#precos .faq-cta p {
  font-size: 1.8rem;
  color: var(--precos-text-secondary);
  margin-bottom: 2rem;
}

/* Contact Section */
#precos .contact-section {
  background: #05372D;
  color: var(--precos-white);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Grid sutil na seção de contato */
#precos .contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0.5;
}

/* Gradiente sutil no contato */
#precos .contact-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at 10% 80%, rgba(0, 223, 130, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

#precos .contact-box {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#precos .contact-title {
  font-size: 4rem;
  color: var(--precos-white);
  margin-bottom: 2rem;
  font-family: "bornabold";
  font-weight: normal;
}

#precos .contact-title span {
  color: var(--precos-accent);
}

#precos .contact-box .text {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}

#precos .contact-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

#precos .contact-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--precos-white);
  font-size: 1.5rem;
}

#precos .contact-feature svg {
  color: var(--precos-accent);
}

#precos .contact-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

#precos .contact-buttons .wmbr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

#precos .contact-section .wmbr-btn__primary {
  background: var(--precos-accent) !important;
  color: var(--precos-primary) !important;
  border: 2px solid var(--precos-accent);
}

#precos .contact-section .wmbr-btn__primary:hover {
  background: var(--precos-accent-hover) !important;
  border-color: var(--precos-accent-hover);
}

#precos .contact-section .wmbr-btn__secondary {
  background: transparent !important;
  color: var(--precos-white) !important;
  border: 2px solid var(--precos-white);
}

#precos .contact-section .wmbr-btn__secondary:hover {
  background: var(--precos-white) !important;
  color: var(--precos-primary) !important;
}

#precos .contact-info {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Botões Globais */
#precos .wmbr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 3.2rem;
  font-weight: 600;
  border-radius: 12.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  font-size: 1.6rem;
}

#precos .wmbr-btn__primary {
  background: #00695A;
  color: #FFFFFF;
  box-shadow: none !important;
}

#precos .wmbr-btn__primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 223, 130, 0.35);
  border: 1px solid #00695A;
  color: #00695A;
  background: none;
}

#precos .wmbr-btn__secondary {
  background: transparent;
  color: var(--precos-primary);
  border: 2px solid var(--precos-primary);
}

#precos .wmbr-btn__secondary:hover {
  background: var(--precos-primary);
  color: var(--precos-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(5, 55, 45, 0.25);
}

/* Responsividade */
@media (max-width: 1023px) {
  #precos .hero__image {
    display: none;
  }
  
  #precos .hero__content {
    padding: 4rem 2rem;
  }
  
  #precos .hero {
    padding: 9rem 0 5rem;
  }
  
  .products-cards {
    padding: 5rem 2rem 3rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 50rem;
    gap: 2.4rem;
  }
  
  .product-card {
    padding: 3rem 2.4rem;
  }
  
  .comparison-wrapper {
    overflow-x: scroll;
  }
  
  .comparison {
    min-width: 80rem;
  }
}


@media (max-width: 540px) {
  .products-header { 
    margin-top:0;
  }
  
  #precos .hero__badges {
    flex-direction: column;
    gap: 1rem;
  }
  
  .products-cards {
    padding: 4rem 1.6rem 3rem;
  }
  
  .product-card__badge {
    font-size: 1.1rem;
    padding: 0.6rem 1.6rem;
  }
}

@media (max-width: 768px) {
  #precos .hero {
    padding: 9rem 0 4rem;
  }
  
  #precos .hero__text h1 {
    font-size: 3.2rem;
  }

  #precos .hero__content {
    padding: 2rem 2rem 4rem;
  }
  
  #precos .hero__text .text {
    font-size: 1.6rem;
  }
  
  #precos .hero .cta-wrapper {
    flex-direction: column;
    width: 100%;
    gap: 1.2rem;
    margin-top: 2.4rem;
  }
  
  #precos .hero .cta-wrapper .wmbr-btn {
    width: 100%;
    justify-content: center;
  }
  
  #precos .wmbr-btn__cta-hero {
    padding: 1.6rem 2.8rem;
    font-size: 1.6rem;
  }
  
  #precos .hero__badges {
    margin-top: 2rem;
    gap: 0.8rem;
  }
  
  #precos .hero__badge {
    font-size: 1.3rem;
  }
  
  /* Card featured mobile */
  .product-card--featured {
    order: -1;
  }
  
  .product-card:hover,
  .product-card--featured:hover {
    transform: translateY(-8px);
  }
  
  .products-cards_hero {
    padding: 3rem 2rem 4rem;
  }
  
  .products-header {
    margin-top: 2rem;
  }
  
  .product-card h3 {
    font-size: 2rem;
  }
  
  .pricing-value span {
    font-size: 3rem;
  }
  
  .products-note {
    padding: 1.6rem;
  }
  
  .products-note p {
    font-size: 1.4rem;
  }
  
  .products-header .title,
  .comparison-header .title,
  #precos .section-title .title,
  #precos .contact-title {
    font-size: 3.2rem;
  }
  
  .product-card {
    padding: 3rem 2rem;
  }
  
  .comparison th,
  .comparison td {
    padding: 1.2rem 1rem;
    font-size: 1.4rem;
  }
  
  #precos .faq__question {
    padding: 2rem;
    font-size: 1.6rem;
  }
  
  #precos .faq__answer {
    padding: 0 2rem;
  }
  
  #precos .faq__item.active .faq__answer {
    padding: 0 2rem 2rem;
  }
  
  #precos .contact-features {
    flex-direction: column;
    gap: 1.6rem;
    align-items: center;
  }
  
  #precos .contact-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 2rem;
  }
  
  #precos .contact-buttons .wmbr-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  #precos .hero__text h1 {
    font-size: 3.6rem;
  }
  
  .products-header .title,
  .comparison-header .title,
  #precos .section-title .title,
  #precos .contact-title {
    font-size: 2.8rem;
  }
  
  .product-card__pricing {
    padding: 1.5rem 0;
  }
  
  .pricing-value span {
    font-size: 2.4rem;
  }
}