/* css/style.css - Desenvolvido por Roka Digital: https://rokadigital.com.br/contato/ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --gold: #D4AF37;
    --gold-dark: #B5952F;
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --text-light: #F9F9F9;
    --text-muted: #A3A3A3;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Premium Animations */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-bg-animate {
    animation: slowZoom 25s linear infinite alternate;
    will-change: transform;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animate {
    animation: float 6s ease-in-out infinite;
}

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

.text-shine {
    background: linear-gradient(90deg, #D4AF37 0%, #FFF 50%, #D4AF37 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 5s linear infinite;
}

/* Overlay for Hero */
.hero-gradient {
    background: linear-gradient(to right, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.7) 50%, rgba(5,5,5,0.4) 100%);
}

@media (max-width: 768px) {
    .hero-gradient {
        background: linear-gradient(to bottom, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.95) 100%);
    }
}

/* Specialty Cards */
.card-specialty {
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-specialty::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.card-specialty:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.card-specialty:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.card-specialty .icon-wrapper {
    color: var(--gold);
    transition: transform 0.5s ease;
}

.card-specialty:hover .icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

/* Stats Section */
.stat-box {
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-box:last-child {
    border-right: none;
}
@media (max-width: 768px) {
    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    .stat-box:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}
