body { font-family: 'Montserrat', sans-serif; background-color: #000000; }
h1, h2, h3, .font-display { font-family: 'Inter', sans-serif; }

.glass-card {
    background: rgba(10, 10, 10, 0.4); /* subtle glass */
    backdrop-filter: blur(16px);
    border: 1px solid rgba(254, 5, 110, 0.1); /* subtle border */
    position: relative;
    overflow: hidden;
}

.text-silver-gradient {
    background: linear-gradient(90deg, #F2F2F2 0%, #A2A2A2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Base button glow - softer ambient */
.neon-border {
    border: 1px solid rgba(254, 5, 110, 0.3);
    box-shadow: 0 0 10px rgba(254, 5, 110, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Specific interaction hover for buttons/links */
button.neon-border:hover, a.neon-border:hover {
    box-shadow: 0 0 25px rgba(254, 5, 110, 0.4);
    transform: scale(1.02);
    filter: brightness(1.1);
    border-color: rgba(254, 5, 110, 0.6);
}

.glow-halo {
    background: radial-gradient(circle at center, rgba(254, 5, 110, 0.15) 0%, transparent 70%);
    position: absolute;
    pointer-events: none;
    filter: blur(50px);
}

.text-glow {
    text-shadow: 0 0 15px rgba(254, 5, 110, 0.3);
}

.selection-pink::selection {
    background-color: #FE056E;
    color: white;
}

.nav-glass {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* very subtle white border instead of pink for a premium feel */
}

/* For main pricing plan highlight */
.plan-highlight {
    border-color: rgba(254, 5, 110, 0.5);
    box-shadow: 0 0 40px rgba(254, 5, 110, 0.1);
    overflow: visible !important;
}

/* "Mais Vendido" badge — solid and legible */
.plan-highlight .badge-popular {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #FE056E;
    color: #fff;
    padding: 6px 22px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    z-index: 30;
    box-shadow: 0 0 20px rgba(254, 5, 110, 0.5), 0 4px 12px rgba(0,0,0,0.5);
}

/* Price value — always one line */
.price-value-nowrap {
    white-space: nowrap;
}

/* Global content container — 1140px max like Elementor */
.content-container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Ayres signature in footer */
.ayres-signature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.25);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.ayres-signature:hover {
    color: rgba(255,255,255,0.5);
}
.ayres-signature img {
    height: 14px;
    width: auto;
    opacity: 0.3;
    filter: grayscale(1) brightness(2);
    transition: opacity 0.3s ease;
}
.ayres-signature:hover img {
    opacity: 0.6;
}

/* --- Scroll Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.2, 0, 0, 1);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.2, 0, 0, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.2, 0, 0, 1);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.2, 0, 0, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Hide scrollbar for carousels */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
