
.titulos {
    font-size: 30px;
    font-family: "Times New Roman", sans-serif, lft-etica-compressed;
    color: var(--heading-1-2-lp);
    text-align: start;
}
.section2 {
    background: #fcf9ff;
    padding-top: 4em;
    padding-bottom: 7.4em;
}


.elementor-button {
    box-shadow: 0 0 0 rgba(0, 0, 0, .342);
    overflow: hidden!important;
    transition-duration: .5s;
    margin-top: 5px;
    animation: 1.5s infinite pulse;
}
.elementor-button:hover {
    box-shadow: 0 0 5px #b8ec68, 0 0 10px #b8ec68, 0 0 30px #b8ec68;
    transition-duration: .7s;
    animation: none;
}
.elementor-button-text {
    z-index: 2;
    transition: .5s;
    position: relative;
}
.elementor-button:hover .elementor-button-text {
    color: #000!important;
}
.elementor-button-text::after {
    content: "Clique aqui";
    white-space: nowrap;
    transition-duration: .1s;
}
.elementor-button-text::before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: #b8ec68;
    border-radius: 50%;
    z-index: 0;
    transition-duration: .5s;
}
.elementor-button:hover .elementor-button-text::after {
    opacity: 1;
}
.elementor-button:hover .elementor-button-text::before {
    transform: scale(20);
    transform-origin: center;
    opacity: 1;
    transition-duration: .5s;
}
@keyframes pulse {
    0% {
    transform: scale(1);
    box-shadow: 0 0 10px -20px #5cb261;
}
50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 30px transparent;
}
100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 transparent;
}
}.scroll-gallery {
    margin-top: -55px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
}
.scroll-gallery img {
    border: 1.5px solid #e196ff;
    border-radius: 10px;
    flex-shrink: 0;
    scroll-snap-align: center;
}

  .countdown {
    display: flex;
    justify-content: center;
    gap: 28px;
    align-items: flex-end;
    background: transparent; /* ajuste conforme sua seção */
    font-family: Arial, Helvetica, sans-serif;
  }

  .countdown .time-box {
    text-align: center;
    background: #AC0303;
    padding: 6px;
    border-radius: 5px;
    min-width: 60px;
  }

  .countdown .num {
    display: block;
    font-size: 42px;     /* menor que 48px */
    line-height: 1;
    font-weight: 400;    /* normal, sem bold */
    color: #ffffff;      /* número branco */
  }

  .countdown .word {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.5px;
  }

  /* responsivo */
  @media (max-width: 480px) {
    .countdown .num { font-size: 28px; }
    .countdown { gap: 5px; margin-top: 20px; margin-bottom: 40px; }
  }