﻿
.menuInfo {
    visibility: visible !important;
}


.div-container {
    visibility: visible !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 69vh;
    margin-top: 2rem;
    padding: 0 1rem;
    box-sizing: border-box;
}

.new-home-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    background-color: #FAFAFA;
    width: 100%;
}

.div-alfaparts-centered-logo {
    margin-bottom: 20px;
}

.alfaparts-centered-logo {
    /*    max-width: 280px;
    width: 80%;*/
    height: auto;
}

.search-container {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-bar {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background-color: white;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

    .search-bar:hover,
    .search-bar:focus-within {
        box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
        border-color: rgba(223,225,229,0);
    }

.search-icon {
    color: #9aa0a6;
    font-size: 16px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 16px;
    background-color: transparent;
}

    .search-input:focus {
        outline: none;
    }

.search-buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    .search-buttons .btn {
        background-color: #dfe1e5;
        border: 1px solid #dfe1e5;
        border-radius: 24px;
        color: #3c4043;
        font-family: arial, sans-serif;
        font-size: 14px;
        margin: 6px 4px;
        padding: 0 16px;
        line-height: 27px;
        height: 36px;
        min-width: 100px;
        text-align: center;
        cursor: pointer;
        user-select: none;
        transition: all 0.2s ease;
    }

        .search-buttons .btn:hover {
            box-shadow: 0 1px 1px rgb(0 0 0 / 10%);
            background-color: #f8f9fa;
            border: 1px solid #dadce0;
            color: #202124;
        }

/* --- Responsividade --- */
@media (max-width: 768px) {
    .alfaparts-centered-logo {
        max-width: 220px;
    }

    .search-input {
        font-size: 15px;
    }

    .search-bar {
        padding: 0 10px;
    }

    .div-container {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .alfaparts-centered-logo {
        max-width: 180px;
    }

    .search-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
}


/* TERMOS DE USO */

.terms-card {
    background: white;
    border-radius: 16px;
    /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
    max-width: 500px;
    width: 100%;
    /*padding: 32px;*/
    margin: 0 auto;
}

.terms-title {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    text-align: center;
}

.terms-subtitle {
    font-size: 14px;
    color: #718096;
    text-align: center;
    margin-bottom: 32px;
}

.document-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

    .document-link:hover {
        background: #edf2f7;
        border-color: #cbd5e0;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

.document-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: white;
    font-size: 18px;
}

.icon-mecanizou {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.icon-alfatest {
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
}

.document-info {
    flex: 1;
}

.document-name {
    font-weight: 600;
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 2px;
}

.document-description {
    font-size: 13px;
    color: #718096;
}

.document-arrow {
    color: #a0aec0;
    font-size: 18px;
}

.agreement-box {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
}

    .custom-checkbox input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        margin-top: 2px;
        cursor: pointer;
        accent-color: #667eea;
    }

.checkbox-label {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

    .checkbox-label strong {
        color: #2d3748;
        font-weight: 600;
    }

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 24px 0;
}
