/* --- SETA FLUTUANTE (EFEITO SOLTO NA TELA) --- */
html { scroll-behavior: smooth; }

.scroll-arrow {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
    opacity: 1;
}

.smooth-bounce {
    display: inline-block !important;
    animation: floatUpDown 2.5s ease-in-out infinite !important;
}

@keyframes floatUpDown {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(15px); } /* Desce 15px de forma macia */
    100% { transform: translateY(0); }
}

/* --- MODERN PAGE HEADER (HERO) --- */
.page-header-modern { 
    background: 
        linear-gradient(to right, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.45) 100%),
        url('https://images.unsplash.com/photo-1523966211575-eb4a01e7dd51?q=80&w=1470&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 120px;
    min-height: 70vh; 
    display: flex;
    align-items: center;
    position: relative;
}

/* Glassmorphism Panel */
.hero-glass-content {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.modern-title { font-weight: 800; font-size: 3.8rem; color: white; line-height: 1.1; letter-spacing: -2px; }
.modern-subtitle { color: rgba(255,255,255,0.7); font-size: 1.25rem; max-width: 600px; margin-top: 20px; font-weight: 300; line-height: 1.6; }

.breadcrumb-modern {
    background: rgba(255, 106, 0, 0.2);
    color: var(--qstiaf0dcf39_qsti-orange);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.contact-card { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); height: 100%; border: 1px solid rgba(0,0,0,0.05); }
.info-card-dark { background: var(--qstiaf0dcf39_qsti-dark); color: white; padding: 40px; border-radius: 16px; height: 100%; position: relative; overflow: hidden; }
.info-card-dark::after { content: ''; position: absolute; top: -20%; right: -20%; width: 200px; height: 200px; background: rgba(255, 106, 0, 0.1); border-radius: 50%; }
.form-control { padding: 12px; border-radius: 8px; border: 1px solid #e2e8f0; background-color: #f8fafc; }
.form-control:focus { border-color: var(--qstiaf0dcf39_qsti-orange); box-shadow: none; background-color: white; }