/* Página de Perfis (Motorista, Fornecedor, etc) */
.perfil-content {
    background-color: #ffffff;
    padding: 64px 0;
}

.perfil-main-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #084D2B;
    margin-bottom: 48px;
}

.perfil-navigation {
    margin-bottom: 64px;
}

.perfil-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #414341;
    margin-bottom: 24px;
}

.perfil-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.perfil-btn {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #084D2B;
    background-color: #ffffff;
    border: 1px solid #084D2B;
    border-radius: 8px;
    padding: 12px 32px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.perfil-btn:hover {
    background-color: #f4f9f7;
    color: #084D2B;
}

.perfil-btn.active {
    background-color: #084D2B;
    color: #ffffff;
    border-color: #084D2B;
}

.perfil-app-section {
    margin-top: 64px;
}

.perfil-app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.perfil-app-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup-wrapper {
    position: relative;
    width: 214px;
    height: 426px;
}

.app-phone-frame {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
}

.app-mockup-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 24px);
    height: calc(100% - 50px);
    background-color: #084D2B;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 1;
    margin-top: -5px;
}

.app-mockup-logo {
    max-width: 80%;
    height: auto;
    filter: brightness(0) invert(1);
}

.app-mockup {
    max-width: 214px;
    height: auto;
    display: block;
}

.perfil-app-text {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.perfil-app-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #084D2B;
    margin-bottom: 32px;
}

.perfil-app-button {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #ffffff;
    background-color: #084D2B;
    border: none;
    border-radius: 8px;
    padding: 16px 48px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.perfil-app-button:hover {
    background-color: #0B4626;
    color: #ffffff;
}

/* Responsividade para página de perfis */
@media (max-width: 768px) {
    .perfil-content {
        padding: 48px 0;
    }

    .perfil-main-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .perfil-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .perfil-buttons {
        gap: 12px;
    }

    .perfil-btn {
        font-size: 16px;
        padding: 10px 24px;
        flex: 1;
        min-width: 140px;
        text-align: center;
    }

    .perfil-app-content {
        gap: 24px;
    }

    .perfil-app-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .perfil-app-button {
        font-size: 18px;
        padding: 14px 40px;
    }
}

@media (max-width: 576px) {
    .perfil-content {
        padding: 32px 0;
    }

    .perfil-main-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .perfil-subtitle {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .perfil-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .perfil-btn {
        width: 100%;
        font-size: 15px;
        padding: 12px 20px;
    }

    .perfil-app-section {
        margin-top: 48px;
    }

    .perfil-app-content {
        flex-direction: column;
        gap: 24px;
    }

    .app-mockup-wrapper {
        width: 180px;
        height: 360px;
    }

    .app-mockup-screen {
        width: calc(100% - 16px);
        height: calc(100% - 32px);
        padding: 30px;
        margin-top: -8px;
    }

    .app-mockup-logo {
        max-width: 70%;
    }

    .app-mockup {
        max-width: 180px;
    }

    .perfil-app-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .perfil-app-button {
        font-size: 16px;
        padding: 12px 32px;
        width: 100%;
        max-width: 280px;
    }
}