/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Timer de Urgência */
#timer-bar {
    font-size: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
    flex-wrap: wrap;
}
#timer {
    font-size: 1.35rem;
    margin: 0 0.5rem;
    letter-spacing: 0.1em;
    padding: 0.1em 0.5em;
    border-radius: 0.5em;
    background: rgba(34,197,94,0.08);
    box-shadow: 0 2px 8px 0 rgba(34,197,94,0.10);
}
@media (max-width: 640px) {
    #timer-bar {
        font-size: 0.95rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    #timer {
        font-size: 1.5rem;
        margin: 0.2rem 0;
        padding: 0.15em 0.7em;
    }
}

/* Vibrant Gradient for Buttons */
.cta-button {
    background: linear-gradient(to right, #FF6B6B, #FFD700);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px 0 rgba(255, 107, 107, 0.15);
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 100%;
}
@media (min-width: 640px) {
    .cta-button {
        width: auto;
        max-width: none;
    }
}
.cta-button:hover {
    transform: scale(1.07) translateY(-2px);
    box-shadow: 0 8px 24px 0 rgba(255, 107, 107, 0.25);
}

/* Section backgrounds with organic shapes */
section {
    position: relative;
    z-index: 1;
}

/* Animations for cards and sections */
@media (hover: hover) {
    .hover\:scale-105:hover {
        transform: scale(1.05);
    }
    .hover\:shadow-2xl:hover {
        box-shadow: 0 12px 32px 0 rgba(80, 0, 120, 0.12);
    }
}

/* FAQ accordion (future expansion) */
.faq-question {
    cursor: pointer;
    transition: color 0.2s;
}
.faq-question:hover {
    color: #a78bfa;
}

/* Footer social icons */
footer svg {
    transition: color 0.2s, transform 0.2s;
}
footer a:hover svg {
    color: #FFD700;
    transform: scale(1.15);
}

/* General spacing improvements */
.container {
    max-width: 1200px;
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
}

/* Responsive image tweaks */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reduce padding on small screens for sections */
@media (max-width: 640px) {
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
} 