/* ============================================================
   Áurion Capital — index.css
   Estilos extraídos e organizados do index.html
   ============================================================ */

/* --- Seleção de texto --- */
::selection {
    background-color: #D4AF37;
    color: #111315;
}

/* --- Gradiente dourado animado --- */
.gold-text-gradient {
    background: linear-gradient(to right, #D4AF37, #F3E5AB, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* --- Reveal on scroll --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Ticker financeiro --- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ticker;
    animation-duration: 40s;
}

.ticker__item {
    display: inline-block;
    padding: 0 2rem;
    color: rgba(255,255,255,0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.ticker__item span {
    color: #D4AF37;
    font-weight: 500;
}

@keyframes ticker {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --- Botão CTA flutuante WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse-wpp 2s infinite;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

@keyframes pulse-wpp {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Card CTA WhatsApp (seção contato) --- */
.cta-whatsapp-card {
    background: linear-gradient(135deg, #1a1c20 0%, #111315 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, #D4AF37, #F3E5AB, #D4AF37);
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

.cta-whatsapp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-whatsapp-card p {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}

/* --- Active state na navbar --- */
nav a.active {
    color: #D4AF37 !important;
}
