/* Importação de fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* Estilos base para replicar o index.css original */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Animação de pulso para o badge de anúncio */
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

/* Animação de entrada para os popups */
.animate-in {
    animation: enter 0.5s ease-out;
}

@keyframes enter {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-link {
    display: block;
    border: 3px solid transparent;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-decoration: none; /* Remove underline from <a> tag */
    line-height: 0; /* Fix extra space under image */
}

.pricing-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.pricing-link.popular {
    /* Removido destaque de borda */
    position: relative;
}

.pricing-link.popular::before {
    /* Removido o pseudo-elemento "MOST POPULAR" */
    content: none;
}

.pricing-image {
    width: 100%;
    height: auto;
    display: block;
}

#countdown-timer {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444; /* Red color for urgency */
    display: inline-block;
    margin-left: 0.5rem;
}

/* ============================= */
/* EVITAR QUEBRA DE LINHA NOS BOTÕES CTA */
/* ============================= */
button,
.cta-button,
.btn,
a.cta,
a.button {
  white-space: nowrap !important;
}

