@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Oswald:wght@300;500;700&display=swap');

:root {
    --corAzul: #2698F3;
    --corCinzaClaro: #888888;
    --corBranca: #ffffff;
    --corCinzaFundo: #333333;
    --corGelo: #fefefe;
    --corPreta: #202124;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--corGelo);
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=2083&auto=format&fit=crop') !important;
    background-size: cover;
    background-attachment: fixed;
    color: var(--corPreta);
    overflow-x: hidden;
}

.page-overlay {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    min-height: 100vh;
}

.font-oswald {
    font-family: 'Oswald', sans-serif;
}

.glass-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 3px solid var(--corAzul);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.logo-container {
    width: 50px;
    height: 50px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(38, 152, 243, 0.2);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .logo-container:hover {
        transform: scale(1.05);
    }

.logo-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.btn-mecanica {
    background: linear-gradient(135deg, var(--corAzul) 0%, #1C486F 100%);
    color: var(--corBranca);
    transition: all 0.3s ease;
    border-radius: 8px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn-mecanica:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(38, 152, 243, 0.4);
    }

.btn-outline-google {
    border: 2px solid #e2e8f0;
    color: #475569;
    background: white;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn-outline-google:hover {
        border-color: var(--corAzul);
        color: var(--corAzul);
        background: rgba(38, 152, 243, 0.05);
    }

.card-expertise {
    background: var(--corBranca);
    border-bottom: 4px solid transparent;
    transition: all 0.4s ease;
}

    .card-expertise:hover {
        border-bottom-color: var(--corAzul);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

    .section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 40px;
        height: 3px;
        background: var(--corAzul);
    }

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

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

.google-review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
}

