/* ===================================
    Bluefisa - Ativos Jurídicos
====================================== */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* Variables */
:root {
    --base-color: #0ca0aa;
    --base-color-dark: #00666c;
    --alt-font: 'Manrope', sans-serif;
    --primary-font: 'Manrope', sans-serif;
    --dark-gray: #1d1d1b;
    --medium-gray: #848587;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --golden-yellow: #ffd700;
}

/* General Styles */
body {
    font-family: var(--primary-font);
    font-size: 17px;
    line-height: 30px;
    color: var(--dark-gray);
}

/* Typography */
.fs-14 { font-size: 14px !important; }
.fs-15 { font-size: 15px !important; }
.fs-16 { font-size: 16px !important; }
.fs-17 { font-size: 17px !important; }
.fs-18 { font-size: 18px !important; }
.fs-20 { font-size: 20px !important; }
.fs-22 { font-size: 22px !important; }
.fs-24 { font-size: 24px !important; }
.fs-28 { font-size: 28px !important; }
.fs-40 { font-size: 40px !important; }
.fs-45 { font-size: 45px !important; }
.fs-55 { font-size: 55px !important; }
.fs-60 { font-size: 60px !important; }

.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }

/* Colors */
.bg-bluefisa-light {
    background-color: #f9f9f9;
}

.bg-bluefisa-dark {
    background-color: var(--dark-gray);
}

.text-bluefisa-dark {
    color: var(--dark-gray);
}

.text-base-color {
    color: var(--base-color);
}

.text-medium-gray {
    color: var(--medium-gray);
}

.bg-base-color {
    background-color: var(--base-color);
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.text-golden-yellow {
    color: var(--golden-yellow);
}

/* Hero Section */
.bg-hero {
    background: linear-gradient(180deg, #f9f9f9 85%, #1d1d1b 15%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-dynamic-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.campaign-overlay {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Gradient Backgrounds */
.bg-gradient-dark-to-light {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

/* Process Section */
.process-icon-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-style-02:hover .process-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(12, 160, 170, 0.3);
}

/* Image Gallery */
.image-gallery-wrapper {
    position: relative;
}

.image-label {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Testimonials */
.testimonials-clickable-area {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.testimonials-clickable-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

/* Buttons */
.btn {
    text-transform: none;
    font-weight: 700;
    letter-spacing: 0px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn.btn-base-color {
    background-color: var(--base-color);
    border-color: var(--base-color);
    color: var(--white);
}

.btn.btn-base-color:hover {
    background-color: var(--base-color-dark);
    border-color: var(--base-color-dark);
    transform: scale(1.05);
}

.btn.btn-large {
    font-size: 17px;
    padding: 18px 40px;
}

.btn.btn-medium {
    font-size: 16px;
    padding: 14px 32px;
}

.btn-round-edge {
    border-radius: 50px;
}

/* Floating Badge */
.floating-badge {
    animation: float 3s ease-in-out infinite;
}

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

/* Social Icons */
.social-icons a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--base-color-dark) !important;
}

/* Shadow Utilities */
.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

.box-shadow-quadruple-large {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Rounded Utilities */
.rounded-3 { border-radius: 0.5rem !important; }
.rounded-4 { border-radius: 1rem !important; }
.border-radius-10px { border-radius: 10px !important; }

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta-images-wrapper img {
    transition: transform 0.3s ease;
}

.cta-images-wrapper:hover img {
    transform: scale(1.02);
}

/* Footer */
.footer-logo {
    max-width: 200px;
    height: auto;
}

.verified-badge img {
    max-width: 150px;
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    .fs-60 { font-size: 50px !important; }
    .fs-55 { font-size: 45px !important; }
    .fs-45 { font-size: 38px !important; }
}

@media (max-width: 991px) {
    .bg-hero {
        min-height: auto;
        padding: 80px 0;
    }
    
    .process-icon-wrapper {
        width: 80px !important;
        height: 80px !important;
    }
    
    .fs-60 { font-size: 40px !important; }
    .fs-55 { font-size: 38px !important; }
    .fs-45 { font-size: 32px !important; }
    .fs-40 { font-size: 32px !important; }
}

@media (max-width: 767px) {
    .btn.btn-large {
        font-size: 15px;
        padding: 14px 28px;
    }
    
    .floating-badge {
        position: relative !important;
        margin-top: 20px;
    }
    
    .campaign-overlay {
        position: relative !important;
        margin-top: 20px;
    }
    
    .fs-60 { font-size: 32px !important; }
    .fs-55 { font-size: 30px !important; }
    .fs-45 { font-size: 26px !important; }
    .fs-22 { font-size: 18px !important; }
}

/* Animation Classes */
.appear {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* WhatsApp Button Pulse */
.fa-whatsapp {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Utility Classes */
.cursor-pointer { cursor: pointer; }
.object-fit-cover { object-fit: cover; }
.w-100px { width: 100px !important; }
.h-100px { height: 100px !important; }
.w-60px { width: 60px !important; }
.h-60px { height: 60px !important; }
.opacity-9 { opacity: 0.9 !important; }

/* Header Sticky */
header.sticky {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--base-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--base-color-dark);
}